aws-sdk-quicksight 1.74.0 → 1.76.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +37 -6
- data/lib/aws-sdk-quicksight/client_api.rb +102 -2
- data/lib/aws-sdk-quicksight/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-quicksight/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-quicksight/types.rb +426 -4
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 235c2032b1b289879d4c3eee4e624bc04f5535a598e014909f0dafb753f75b69
|
4
|
+
data.tar.gz: 3f6f857c42b2a2b6ab87cb9322d850ed158b928fb2c1fbbef63c4423897a36d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 600c7340719aa8f0820935880f17159a108f8ab2f9a4f85b7038127d0af7d9fcbd36a689644af06a56f9715a3b6943a3d2db6a48b80ec5fde9f6ca686a79658a
|
7
|
+
data.tar.gz: c60dd3605a0a7255f6869ded3f9433ba9553e6188ffd35c4fb0aed921925a5f9a0acf1f06c13a35cd4acafda857b93b6078c1aab7724d00be2c3d45d6aabbd8e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.76.0 (2023-02-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - S3 data sources now accept a custom IAM role.
|
8
|
+
|
9
|
+
1.75.0 (2023-02-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - QuickSight support for Radar Chart and Dashboard Publish Options
|
13
|
+
|
4
14
|
1.74.0 (2023-01-20)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.76.0
|
@@ -700,7 +700,8 @@ module Aws::QuickSight
|
|
700
700
|
req.send_request(options)
|
701
701
|
end
|
702
702
|
|
703
|
-
# Creates an analysis in Amazon QuickSight.
|
703
|
+
# Creates an analysis in Amazon QuickSight. Analyses can be created
|
704
|
+
# either from a template or from an `AnalysisDefinition`.
|
704
705
|
#
|
705
706
|
# @option params [required, String] :aws_account_id
|
706
707
|
# The ID of the Amazon Web Services account where you are creating an
|
@@ -733,6 +734,9 @@ module Aws::QuickSight
|
|
733
734
|
# metadata structure contains details that describe a source template
|
734
735
|
# and one or more datasets.
|
735
736
|
#
|
737
|
+
# Either a `SourceEntity` or a `Definition` must be provided in order
|
738
|
+
# for the request to be valid.
|
739
|
+
#
|
736
740
|
# @option params [String] :theme_arn
|
737
741
|
# The ARN for the theme to apply to the analysis that you're creating.
|
738
742
|
# To see the theme in the Amazon QuickSight console, make sure that you
|
@@ -748,6 +752,9 @@ module Aws::QuickSight
|
|
748
752
|
# A definition is the data model of all features in a Dashboard,
|
749
753
|
# Template, or Analysis.
|
750
754
|
#
|
755
|
+
# Either a `SourceEntity` or a `Definition` must be provided in order
|
756
|
+
# for the request to be valid.
|
757
|
+
#
|
751
758
|
# @return [Types::CreateAnalysisResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
752
759
|
#
|
753
760
|
# * {Types::CreateAnalysisResponse#arn #arn} => String
|
@@ -773,8 +780,9 @@ module Aws::QuickSight
|
|
773
780
|
req.send_request(options)
|
774
781
|
end
|
775
782
|
|
776
|
-
# Creates a dashboard from a template
|
777
|
-
#
|
783
|
+
# Creates a dashboard from either a template or directly with a
|
784
|
+
# `DashboardDefinition`. To first create a template, see the `
|
785
|
+
# CreateTemplate ` API operation.
|
778
786
|
#
|
779
787
|
# A dashboard is an entity in Amazon QuickSight that identifies Amazon
|
780
788
|
# QuickSight reports, created from analyses. You can share Amazon
|
@@ -820,6 +828,9 @@ module Aws::QuickSight
|
|
820
828
|
# replacement datasets for the placeholders listed in the original. The
|
821
829
|
# schema in each dataset must match its placeholder.
|
822
830
|
#
|
831
|
+
# Either a `SourceEntity` or a `Definition` must be provided in order
|
832
|
+
# for the request to be valid.
|
833
|
+
#
|
823
834
|
# @option params [Array<Types::Tag>] :tags
|
824
835
|
# Contains a map of the key-value pairs for the resource tag or tags
|
825
836
|
# assigned to the dashboard.
|
@@ -857,6 +868,9 @@ module Aws::QuickSight
|
|
857
868
|
# A definition is the data model of all features in a Dashboard,
|
858
869
|
# Template, or Analysis.
|
859
870
|
#
|
871
|
+
# Either a `SourceEntity` or a `Definition` must be provided in order
|
872
|
+
# for the request to be valid.
|
873
|
+
#
|
860
874
|
# @return [Types::CreateDashboardResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
861
875
|
#
|
862
876
|
# * {Types::CreateDashboardResponse#arn #arn} => String
|
@@ -1258,6 +1272,7 @@ module Aws::QuickSight
|
|
1258
1272
|
# bucket: "S3Bucket", # required
|
1259
1273
|
# key: "S3Key", # required
|
1260
1274
|
# },
|
1275
|
+
# role_arn: "RoleArn",
|
1261
1276
|
# },
|
1262
1277
|
# service_now_parameters: {
|
1263
1278
|
# site_base_url: "SiteBaseUrl", # required
|
@@ -1367,6 +1382,7 @@ module Aws::QuickSight
|
|
1367
1382
|
# bucket: "S3Bucket", # required
|
1368
1383
|
# key: "S3Key", # required
|
1369
1384
|
# },
|
1385
|
+
# role_arn: "RoleArn",
|
1370
1386
|
# },
|
1371
1387
|
# service_now_parameters: {
|
1372
1388
|
# site_base_url: "SiteBaseUrl", # required
|
@@ -1890,8 +1906,10 @@ module Aws::QuickSight
|
|
1890
1906
|
req.send_request(options)
|
1891
1907
|
end
|
1892
1908
|
|
1893
|
-
# Creates a template from
|
1894
|
-
# template. You can use the
|
1909
|
+
# Creates a template either from a `TemplateDefinition` or from an
|
1910
|
+
# existing Amazon QuickSight analysis or template. You can use the
|
1911
|
+
# resulting template to create additional dashboards, templates, or
|
1912
|
+
# analyses.
|
1895
1913
|
#
|
1896
1914
|
# A *template* is an entity in Amazon QuickSight that encapsulates the
|
1897
1915
|
# metadata required to create an analysis and that you can use to create
|
@@ -1932,6 +1950,9 @@ module Aws::QuickSight
|
|
1932
1950
|
# listed in the original. The schema in each dataset must match its
|
1933
1951
|
# placeholder.
|
1934
1952
|
#
|
1953
|
+
# Either a `SourceEntity` or a `Definition` must be provided in order
|
1954
|
+
# for the request to be valid.
|
1955
|
+
#
|
1935
1956
|
# @option params [Array<Types::Tag>] :tags
|
1936
1957
|
# Contains a map of the key-value pairs for the resource tag or tags
|
1937
1958
|
# assigned to the resource.
|
@@ -1949,6 +1970,9 @@ module Aws::QuickSight
|
|
1949
1970
|
# A definition is the data model of all features in a Dashboard,
|
1950
1971
|
# Template, or Analysis.
|
1951
1972
|
#
|
1973
|
+
# Either a `SourceEntity` or a `Definition` must be provided in order
|
1974
|
+
# for the request to be valid.
|
1975
|
+
#
|
1952
1976
|
# @return [Types::CreateTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1953
1977
|
#
|
1954
1978
|
# * {Types::CreateTemplateResponse#arn #arn} => String
|
@@ -3450,6 +3474,7 @@ module Aws::QuickSight
|
|
3450
3474
|
# * {Types::DescribeDashboardDefinitionResponse#definition #definition} => Types::DashboardVersionDefinition
|
3451
3475
|
# * {Types::DescribeDashboardDefinitionResponse#status #status} => Integer
|
3452
3476
|
# * {Types::DescribeDashboardDefinitionResponse#request_id #request_id} => String
|
3477
|
+
# * {Types::DescribeDashboardDefinitionResponse#dashboard_publish_options #dashboard_publish_options} => Types::DashboardPublishOptions
|
3453
3478
|
#
|
3454
3479
|
# @example Request syntax with placeholder values
|
3455
3480
|
#
|
@@ -3758,6 +3783,7 @@ module Aws::QuickSight
|
|
3758
3783
|
# resp.data_source.data_source_parameters.redshift_parameters.cluster_id #=> String
|
3759
3784
|
# resp.data_source.data_source_parameters.s3_parameters.manifest_file_location.bucket #=> String
|
3760
3785
|
# resp.data_source.data_source_parameters.s3_parameters.manifest_file_location.key #=> String
|
3786
|
+
# resp.data_source.data_source_parameters.s3_parameters.role_arn #=> String
|
3761
3787
|
# resp.data_source.data_source_parameters.service_now_parameters.site_base_url #=> String
|
3762
3788
|
# resp.data_source.data_source_parameters.snowflake_parameters.host #=> String
|
3763
3789
|
# resp.data_source.data_source_parameters.snowflake_parameters.database #=> String
|
@@ -3813,6 +3839,7 @@ module Aws::QuickSight
|
|
3813
3839
|
# resp.data_source.alternate_data_source_parameters[0].redshift_parameters.cluster_id #=> String
|
3814
3840
|
# resp.data_source.alternate_data_source_parameters[0].s3_parameters.manifest_file_location.bucket #=> String
|
3815
3841
|
# resp.data_source.alternate_data_source_parameters[0].s3_parameters.manifest_file_location.key #=> String
|
3842
|
+
# resp.data_source.alternate_data_source_parameters[0].s3_parameters.role_arn #=> String
|
3816
3843
|
# resp.data_source.alternate_data_source_parameters[0].service_now_parameters.site_base_url #=> String
|
3817
3844
|
# resp.data_source.alternate_data_source_parameters[0].snowflake_parameters.host #=> String
|
3818
3845
|
# resp.data_source.alternate_data_source_parameters[0].snowflake_parameters.database #=> String
|
@@ -5534,6 +5561,7 @@ module Aws::QuickSight
|
|
5534
5561
|
# resp.data_sources[0].data_source_parameters.redshift_parameters.cluster_id #=> String
|
5535
5562
|
# resp.data_sources[0].data_source_parameters.s3_parameters.manifest_file_location.bucket #=> String
|
5536
5563
|
# resp.data_sources[0].data_source_parameters.s3_parameters.manifest_file_location.key #=> String
|
5564
|
+
# resp.data_sources[0].data_source_parameters.s3_parameters.role_arn #=> String
|
5537
5565
|
# resp.data_sources[0].data_source_parameters.service_now_parameters.site_base_url #=> String
|
5538
5566
|
# resp.data_sources[0].data_source_parameters.snowflake_parameters.host #=> String
|
5539
5567
|
# resp.data_sources[0].data_source_parameters.snowflake_parameters.database #=> String
|
@@ -5589,6 +5617,7 @@ module Aws::QuickSight
|
|
5589
5617
|
# resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.cluster_id #=> String
|
5590
5618
|
# resp.data_sources[0].alternate_data_source_parameters[0].s3_parameters.manifest_file_location.bucket #=> String
|
5591
5619
|
# resp.data_sources[0].alternate_data_source_parameters[0].s3_parameters.manifest_file_location.key #=> String
|
5620
|
+
# resp.data_sources[0].alternate_data_source_parameters[0].s3_parameters.role_arn #=> String
|
5592
5621
|
# resp.data_sources[0].alternate_data_source_parameters[0].service_now_parameters.site_base_url #=> String
|
5593
5622
|
# resp.data_sources[0].alternate_data_source_parameters[0].snowflake_parameters.host #=> String
|
5594
5623
|
# resp.data_sources[0].alternate_data_source_parameters[0].snowflake_parameters.database #=> String
|
@@ -8132,6 +8161,7 @@ module Aws::QuickSight
|
|
8132
8161
|
# bucket: "S3Bucket", # required
|
8133
8162
|
# key: "S3Key", # required
|
8134
8163
|
# },
|
8164
|
+
# role_arn: "RoleArn",
|
8135
8165
|
# },
|
8136
8166
|
# service_now_parameters: {
|
8137
8167
|
# site_base_url: "SiteBaseUrl", # required
|
@@ -8241,6 +8271,7 @@ module Aws::QuickSight
|
|
8241
8271
|
# bucket: "S3Bucket", # required
|
8242
8272
|
# key: "S3Key", # required
|
8243
8273
|
# },
|
8274
|
+
# role_arn: "RoleArn",
|
8244
8275
|
# },
|
8245
8276
|
# service_now_parameters: {
|
8246
8277
|
# site_base_url: "SiteBaseUrl", # required
|
@@ -9291,7 +9322,7 @@ module Aws::QuickSight
|
|
9291
9322
|
params: params,
|
9292
9323
|
config: config)
|
9293
9324
|
context[:gem_name] = 'aws-sdk-quicksight'
|
9294
|
-
context[:gem_version] = '1.
|
9325
|
+
context[:gem_version] = '1.76.0'
|
9295
9326
|
Seahorse::Client::Request.new(handlers, context)
|
9296
9327
|
end
|
9297
9328
|
|
@@ -285,6 +285,9 @@ module Aws::QuickSight
|
|
285
285
|
DataPathSort = Shapes::StructureShape.new(name: 'DataPathSort')
|
286
286
|
DataPathValue = Shapes::StructureShape.new(name: 'DataPathValue')
|
287
287
|
DataPathValueList = Shapes::ListShape.new(name: 'DataPathValueList')
|
288
|
+
DataPointDrillUpDownOption = Shapes::StructureShape.new(name: 'DataPointDrillUpDownOption')
|
289
|
+
DataPointMenuLabelOption = Shapes::StructureShape.new(name: 'DataPointMenuLabelOption')
|
290
|
+
DataPointTooltipOption = Shapes::StructureShape.new(name: 'DataPointTooltipOption')
|
288
291
|
DataSet = Shapes::StructureShape.new(name: 'DataSet')
|
289
292
|
DataSetArnsList = Shapes::ListShape.new(name: 'DataSetArnsList')
|
290
293
|
DataSetConfiguration = Shapes::StructureShape.new(name: 'DataSetConfiguration')
|
@@ -471,6 +474,7 @@ module Aws::QuickSight
|
|
471
474
|
ExplicitHierarchyColumnList = Shapes::ListShape.new(name: 'ExplicitHierarchyColumnList')
|
472
475
|
ExportHiddenFieldsOption = Shapes::StructureShape.new(name: 'ExportHiddenFieldsOption')
|
473
476
|
ExportToCSVOption = Shapes::StructureShape.new(name: 'ExportToCSVOption')
|
477
|
+
ExportWithHiddenFieldsOption = Shapes::StructureShape.new(name: 'ExportWithHiddenFieldsOption')
|
474
478
|
Expression = Shapes::StringShape.new(name: 'Expression')
|
475
479
|
FieldBasedTooltip = Shapes::StructureShape.new(name: 'FieldBasedTooltip')
|
476
480
|
FieldFolder = Shapes::StructureShape.new(name: 'FieldFolder')
|
@@ -922,6 +926,18 @@ module Aws::QuickSight
|
|
922
926
|
Query = Shapes::StringShape.new(name: 'Query')
|
923
927
|
QueueInfo = Shapes::StructureShape.new(name: 'QueueInfo')
|
924
928
|
QuickSightUserNotFoundException = Shapes::StructureShape.new(name: 'QuickSightUserNotFoundException')
|
929
|
+
RadarChartAggregatedFieldWells = Shapes::StructureShape.new(name: 'RadarChartAggregatedFieldWells')
|
930
|
+
RadarChartAreaStyleSettings = Shapes::StructureShape.new(name: 'RadarChartAreaStyleSettings')
|
931
|
+
RadarChartCategoryFieldList = Shapes::ListShape.new(name: 'RadarChartCategoryFieldList')
|
932
|
+
RadarChartColorFieldList = Shapes::ListShape.new(name: 'RadarChartColorFieldList')
|
933
|
+
RadarChartConfiguration = Shapes::StructureShape.new(name: 'RadarChartConfiguration')
|
934
|
+
RadarChartFieldWells = Shapes::StructureShape.new(name: 'RadarChartFieldWells')
|
935
|
+
RadarChartSeriesSettings = Shapes::StructureShape.new(name: 'RadarChartSeriesSettings')
|
936
|
+
RadarChartShape = Shapes::StringShape.new(name: 'RadarChartShape')
|
937
|
+
RadarChartSortConfiguration = Shapes::StructureShape.new(name: 'RadarChartSortConfiguration')
|
938
|
+
RadarChartStartAngle = Shapes::FloatShape.new(name: 'RadarChartStartAngle')
|
939
|
+
RadarChartValuesFieldList = Shapes::ListShape.new(name: 'RadarChartValuesFieldList')
|
940
|
+
RadarChartVisual = Shapes::StructureShape.new(name: 'RadarChartVisual')
|
925
941
|
RangeEndsLabelType = Shapes::StructureShape.new(name: 'RangeEndsLabelType')
|
926
942
|
RdsParameters = Shapes::StructureShape.new(name: 'RdsParameters')
|
927
943
|
RecoveryWindowInDays = Shapes::IntegerShape.new(name: 'RecoveryWindowInDays')
|
@@ -1065,6 +1081,7 @@ module Aws::QuickSight
|
|
1065
1081
|
SheetElementConfigurationOverrides = Shapes::StructureShape.new(name: 'SheetElementConfigurationOverrides')
|
1066
1082
|
SheetElementRenderingRule = Shapes::StructureShape.new(name: 'SheetElementRenderingRule')
|
1067
1083
|
SheetElementRenderingRuleList = Shapes::ListShape.new(name: 'SheetElementRenderingRuleList')
|
1084
|
+
SheetLayoutElementMaximizationOption = Shapes::StructureShape.new(name: 'SheetLayoutElementMaximizationOption')
|
1068
1085
|
SheetList = Shapes::ListShape.new(name: 'SheetList')
|
1069
1086
|
SheetName = Shapes::StringShape.new(name: 'SheetName')
|
1070
1087
|
SheetStyle = Shapes::StructureShape.new(name: 'SheetStyle')
|
@@ -1305,6 +1322,7 @@ module Aws::QuickSight
|
|
1305
1322
|
VisiblePanelRows = Shapes::IntegerShape.new(name: 'VisiblePanelRows')
|
1306
1323
|
VisibleRangeOptions = Shapes::StructureShape.new(name: 'VisibleRangeOptions')
|
1307
1324
|
Visual = Shapes::StructureShape.new(name: 'Visual')
|
1325
|
+
VisualAxisSortOption = Shapes::StructureShape.new(name: 'VisualAxisSortOption')
|
1308
1326
|
VisualCustomAction = Shapes::StructureShape.new(name: 'VisualCustomAction')
|
1309
1327
|
VisualCustomActionList = Shapes::ListShape.new(name: 'VisualCustomActionList')
|
1310
1328
|
VisualCustomActionName = Shapes::StringShape.new(name: 'VisualCustomActionName')
|
@@ -1312,6 +1330,7 @@ module Aws::QuickSight
|
|
1312
1330
|
VisualCustomActionOperationList = Shapes::ListShape.new(name: 'VisualCustomActionOperationList')
|
1313
1331
|
VisualCustomActionTrigger = Shapes::StringShape.new(name: 'VisualCustomActionTrigger')
|
1314
1332
|
VisualList = Shapes::ListShape.new(name: 'VisualList')
|
1333
|
+
VisualMenuOption = Shapes::StructureShape.new(name: 'VisualMenuOption')
|
1315
1334
|
VisualPalette = Shapes::StructureShape.new(name: 'VisualPalette')
|
1316
1335
|
VisualSubtitleLabelOptions = Shapes::StructureShape.new(name: 'VisualSubtitleLabelOptions')
|
1317
1336
|
VisualTitleLabelOptions = Shapes::StructureShape.new(name: 'VisualTitleLabelOptions')
|
@@ -1721,7 +1740,7 @@ module Aws::QuickSight
|
|
1721
1740
|
|
1722
1741
|
CategoryFilter.add_member(:filter_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "FilterId"))
|
1723
1742
|
CategoryFilter.add_member(:column, Shapes::ShapeRef.new(shape: ColumnIdentifier, required: true, location_name: "Column"))
|
1724
|
-
CategoryFilter.add_member(:configuration, Shapes::ShapeRef.new(shape: CategoryFilterConfiguration, location_name: "Configuration"))
|
1743
|
+
CategoryFilter.add_member(:configuration, Shapes::ShapeRef.new(shape: CategoryFilterConfiguration, required: true, location_name: "Configuration"))
|
1725
1744
|
CategoryFilter.struct_class = Types::CategoryFilter
|
1726
1745
|
|
1727
1746
|
CategoryFilterConfiguration.add_member(:filter_list_configuration, Shapes::ShapeRef.new(shape: FilterListConfiguration, location_name: "FilterListConfiguration"))
|
@@ -2301,7 +2320,14 @@ module Aws::QuickSight
|
|
2301
2320
|
DashboardPublishOptions.add_member(:ad_hoc_filtering_option, Shapes::ShapeRef.new(shape: AdHocFilteringOption, location_name: "AdHocFilteringOption"))
|
2302
2321
|
DashboardPublishOptions.add_member(:export_to_csv_option, Shapes::ShapeRef.new(shape: ExportToCSVOption, location_name: "ExportToCSVOption"))
|
2303
2322
|
DashboardPublishOptions.add_member(:sheet_controls_option, Shapes::ShapeRef.new(shape: SheetControlsOption, location_name: "SheetControlsOption"))
|
2304
|
-
DashboardPublishOptions.add_member(:visual_publish_options, Shapes::ShapeRef.new(shape: DashboardVisualPublishOptions, location_name: "VisualPublishOptions"))
|
2323
|
+
DashboardPublishOptions.add_member(:visual_publish_options, Shapes::ShapeRef.new(shape: DashboardVisualPublishOptions, deprecated: true, location_name: "VisualPublishOptions", metadata: {"deprecatedMessage"=>"VisualPublishOptions property will reach its end of standard support in a future release. To perform this action, use ExportWithHiddenFields."}))
|
2324
|
+
DashboardPublishOptions.add_member(:sheet_layout_element_maximization_option, Shapes::ShapeRef.new(shape: SheetLayoutElementMaximizationOption, location_name: "SheetLayoutElementMaximizationOption"))
|
2325
|
+
DashboardPublishOptions.add_member(:visual_menu_option, Shapes::ShapeRef.new(shape: VisualMenuOption, location_name: "VisualMenuOption"))
|
2326
|
+
DashboardPublishOptions.add_member(:visual_axis_sort_option, Shapes::ShapeRef.new(shape: VisualAxisSortOption, location_name: "VisualAxisSortOption"))
|
2327
|
+
DashboardPublishOptions.add_member(:export_with_hidden_fields_option, Shapes::ShapeRef.new(shape: ExportWithHiddenFieldsOption, location_name: "ExportWithHiddenFieldsOption"))
|
2328
|
+
DashboardPublishOptions.add_member(:data_point_drill_up_down_option, Shapes::ShapeRef.new(shape: DataPointDrillUpDownOption, location_name: "DataPointDrillUpDownOption"))
|
2329
|
+
DashboardPublishOptions.add_member(:data_point_menu_label_option, Shapes::ShapeRef.new(shape: DataPointMenuLabelOption, location_name: "DataPointMenuLabelOption"))
|
2330
|
+
DashboardPublishOptions.add_member(:data_point_tooltip_option, Shapes::ShapeRef.new(shape: DataPointTooltipOption, location_name: "DataPointTooltipOption"))
|
2305
2331
|
DashboardPublishOptions.struct_class = Types::DashboardPublishOptions
|
2306
2332
|
|
2307
2333
|
DashboardSearchFilter.add_member(:operator, Shapes::ShapeRef.new(shape: FilterOperator, required: true, location_name: "Operator"))
|
@@ -2430,6 +2456,15 @@ module Aws::QuickSight
|
|
2430
2456
|
|
2431
2457
|
DataPathValueList.member = Shapes::ShapeRef.new(shape: DataPathValue)
|
2432
2458
|
|
2459
|
+
DataPointDrillUpDownOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
|
2460
|
+
DataPointDrillUpDownOption.struct_class = Types::DataPointDrillUpDownOption
|
2461
|
+
|
2462
|
+
DataPointMenuLabelOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
|
2463
|
+
DataPointMenuLabelOption.struct_class = Types::DataPointMenuLabelOption
|
2464
|
+
|
2465
|
+
DataPointTooltipOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
|
2466
|
+
DataPointTooltipOption.struct_class = Types::DataPointTooltipOption
|
2467
|
+
|
2433
2468
|
DataSet.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
2434
2469
|
DataSet.add_member(:data_set_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "DataSetId"))
|
2435
2470
|
DataSet.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "Name"))
|
@@ -2926,6 +2961,7 @@ module Aws::QuickSight
|
|
2926
2961
|
DescribeDashboardDefinitionResponse.add_member(:definition, Shapes::ShapeRef.new(shape: DashboardVersionDefinition, location_name: "Definition"))
|
2927
2962
|
DescribeDashboardDefinitionResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
2928
2963
|
DescribeDashboardDefinitionResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
2964
|
+
DescribeDashboardDefinitionResponse.add_member(:dashboard_publish_options, Shapes::ShapeRef.new(shape: DashboardPublishOptions, location_name: "DashboardPublishOptions"))
|
2929
2965
|
DescribeDashboardDefinitionResponse.struct_class = Types::DescribeDashboardDefinitionResponse
|
2930
2966
|
|
2931
2967
|
DescribeDashboardPermissionsRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
@@ -3248,6 +3284,9 @@ module Aws::QuickSight
|
|
3248
3284
|
ExportToCSVOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
|
3249
3285
|
ExportToCSVOption.struct_class = Types::ExportToCSVOption
|
3250
3286
|
|
3287
|
+
ExportWithHiddenFieldsOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
|
3288
|
+
ExportWithHiddenFieldsOption.struct_class = Types::ExportWithHiddenFieldsOption
|
3289
|
+
|
3251
3290
|
FieldBasedTooltip.add_member(:aggregation_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "AggregationVisibility"))
|
3252
3291
|
FieldBasedTooltip.add_member(:tooltip_title_type, Shapes::ShapeRef.new(shape: TooltipTitleType, location_name: "TooltipTitleType"))
|
3253
3292
|
FieldBasedTooltip.add_member(:tooltip_fields, Shapes::ShapeRef.new(shape: TooltipItemList, location_name: "TooltipFields"))
|
@@ -4908,6 +4947,56 @@ module Aws::QuickSight
|
|
4908
4947
|
QuickSightUserNotFoundException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
4909
4948
|
QuickSightUserNotFoundException.struct_class = Types::QuickSightUserNotFoundException
|
4910
4949
|
|
4950
|
+
RadarChartAggregatedFieldWells.add_member(:category, Shapes::ShapeRef.new(shape: RadarChartCategoryFieldList, location_name: "Category"))
|
4951
|
+
RadarChartAggregatedFieldWells.add_member(:color, Shapes::ShapeRef.new(shape: RadarChartColorFieldList, location_name: "Color"))
|
4952
|
+
RadarChartAggregatedFieldWells.add_member(:values, Shapes::ShapeRef.new(shape: RadarChartValuesFieldList, location_name: "Values"))
|
4953
|
+
RadarChartAggregatedFieldWells.struct_class = Types::RadarChartAggregatedFieldWells
|
4954
|
+
|
4955
|
+
RadarChartAreaStyleSettings.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
4956
|
+
RadarChartAreaStyleSettings.struct_class = Types::RadarChartAreaStyleSettings
|
4957
|
+
|
4958
|
+
RadarChartCategoryFieldList.member = Shapes::ShapeRef.new(shape: DimensionField)
|
4959
|
+
|
4960
|
+
RadarChartColorFieldList.member = Shapes::ShapeRef.new(shape: DimensionField)
|
4961
|
+
|
4962
|
+
RadarChartConfiguration.add_member(:field_wells, Shapes::ShapeRef.new(shape: RadarChartFieldWells, location_name: "FieldWells"))
|
4963
|
+
RadarChartConfiguration.add_member(:sort_configuration, Shapes::ShapeRef.new(shape: RadarChartSortConfiguration, location_name: "SortConfiguration"))
|
4964
|
+
RadarChartConfiguration.add_member(:shape, Shapes::ShapeRef.new(shape: RadarChartShape, location_name: "Shape"))
|
4965
|
+
RadarChartConfiguration.add_member(:base_series_settings, Shapes::ShapeRef.new(shape: RadarChartSeriesSettings, location_name: "BaseSeriesSettings"))
|
4966
|
+
RadarChartConfiguration.add_member(:start_angle, Shapes::ShapeRef.new(shape: RadarChartStartAngle, location_name: "StartAngle"))
|
4967
|
+
RadarChartConfiguration.add_member(:visual_palette, Shapes::ShapeRef.new(shape: VisualPalette, location_name: "VisualPalette"))
|
4968
|
+
RadarChartConfiguration.add_member(:alternate_band_colors_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "AlternateBandColorsVisibility"))
|
4969
|
+
RadarChartConfiguration.add_member(:alternate_band_even_color, Shapes::ShapeRef.new(shape: HexColor, location_name: "AlternateBandEvenColor"))
|
4970
|
+
RadarChartConfiguration.add_member(:alternate_band_odd_color, Shapes::ShapeRef.new(shape: HexColor, location_name: "AlternateBandOddColor"))
|
4971
|
+
RadarChartConfiguration.add_member(:category_axis, Shapes::ShapeRef.new(shape: AxisDisplayOptions, location_name: "CategoryAxis"))
|
4972
|
+
RadarChartConfiguration.add_member(:category_label_options, Shapes::ShapeRef.new(shape: ChartAxisLabelOptions, location_name: "CategoryLabelOptions"))
|
4973
|
+
RadarChartConfiguration.add_member(:color_axis, Shapes::ShapeRef.new(shape: AxisDisplayOptions, location_name: "ColorAxis"))
|
4974
|
+
RadarChartConfiguration.add_member(:color_label_options, Shapes::ShapeRef.new(shape: ChartAxisLabelOptions, location_name: "ColorLabelOptions"))
|
4975
|
+
RadarChartConfiguration.add_member(:legend, Shapes::ShapeRef.new(shape: LegendOptions, location_name: "Legend"))
|
4976
|
+
RadarChartConfiguration.struct_class = Types::RadarChartConfiguration
|
4977
|
+
|
4978
|
+
RadarChartFieldWells.add_member(:radar_chart_aggregated_field_wells, Shapes::ShapeRef.new(shape: RadarChartAggregatedFieldWells, location_name: "RadarChartAggregatedFieldWells"))
|
4979
|
+
RadarChartFieldWells.struct_class = Types::RadarChartFieldWells
|
4980
|
+
|
4981
|
+
RadarChartSeriesSettings.add_member(:area_style_settings, Shapes::ShapeRef.new(shape: RadarChartAreaStyleSettings, location_name: "AreaStyleSettings"))
|
4982
|
+
RadarChartSeriesSettings.struct_class = Types::RadarChartSeriesSettings
|
4983
|
+
|
4984
|
+
RadarChartSortConfiguration.add_member(:category_sort, Shapes::ShapeRef.new(shape: FieldSortOptionsList, location_name: "CategorySort"))
|
4985
|
+
RadarChartSortConfiguration.add_member(:category_items_limit, Shapes::ShapeRef.new(shape: ItemsLimitConfiguration, location_name: "CategoryItemsLimit"))
|
4986
|
+
RadarChartSortConfiguration.add_member(:color_sort, Shapes::ShapeRef.new(shape: FieldSortOptionsList, location_name: "ColorSort"))
|
4987
|
+
RadarChartSortConfiguration.add_member(:color_items_limit, Shapes::ShapeRef.new(shape: ItemsLimitConfiguration, location_name: "ColorItemsLimit"))
|
4988
|
+
RadarChartSortConfiguration.struct_class = Types::RadarChartSortConfiguration
|
4989
|
+
|
4990
|
+
RadarChartValuesFieldList.member = Shapes::ShapeRef.new(shape: MeasureField)
|
4991
|
+
|
4992
|
+
RadarChartVisual.add_member(:visual_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "VisualId"))
|
4993
|
+
RadarChartVisual.add_member(:title, Shapes::ShapeRef.new(shape: VisualTitleLabelOptions, location_name: "Title"))
|
4994
|
+
RadarChartVisual.add_member(:subtitle, Shapes::ShapeRef.new(shape: VisualSubtitleLabelOptions, location_name: "Subtitle"))
|
4995
|
+
RadarChartVisual.add_member(:chart_configuration, Shapes::ShapeRef.new(shape: RadarChartConfiguration, location_name: "ChartConfiguration"))
|
4996
|
+
RadarChartVisual.add_member(:actions, Shapes::ShapeRef.new(shape: VisualCustomActionList, location_name: "Actions"))
|
4997
|
+
RadarChartVisual.add_member(:column_hierarchies, Shapes::ShapeRef.new(shape: ColumnHierarchyList, location_name: "ColumnHierarchies"))
|
4998
|
+
RadarChartVisual.struct_class = Types::RadarChartVisual
|
4999
|
+
|
4911
5000
|
RangeEndsLabelType.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
4912
5001
|
RangeEndsLabelType.struct_class = Types::RangeEndsLabelType
|
4913
5002
|
|
@@ -5094,6 +5183,7 @@ module Aws::QuickSight
|
|
5094
5183
|
RowSortList.member = Shapes::ShapeRef.new(shape: FieldSortOptions)
|
5095
5184
|
|
5096
5185
|
S3Parameters.add_member(:manifest_file_location, Shapes::ShapeRef.new(shape: ManifestFileLocation, required: true, location_name: "ManifestFileLocation"))
|
5186
|
+
S3Parameters.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
5097
5187
|
S3Parameters.struct_class = Types::S3Parameters
|
5098
5188
|
|
5099
5189
|
S3Source.add_member(:data_source_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "DataSourceArn"))
|
@@ -5351,6 +5441,9 @@ module Aws::QuickSight
|
|
5351
5441
|
|
5352
5442
|
SheetElementRenderingRuleList.member = Shapes::ShapeRef.new(shape: SheetElementRenderingRule)
|
5353
5443
|
|
5444
|
+
SheetLayoutElementMaximizationOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
|
5445
|
+
SheetLayoutElementMaximizationOption.struct_class = Types::SheetLayoutElementMaximizationOption
|
5446
|
+
|
5354
5447
|
SheetList.member = Shapes::ShapeRef.new(shape: Sheet)
|
5355
5448
|
|
5356
5449
|
SheetStyle.add_member(:tile, Shapes::ShapeRef.new(shape: TileStyle, location_name: "Tile"))
|
@@ -6335,8 +6428,12 @@ module Aws::QuickSight
|
|
6335
6428
|
Visual.add_member(:sankey_diagram_visual, Shapes::ShapeRef.new(shape: SankeyDiagramVisual, location_name: "SankeyDiagramVisual"))
|
6336
6429
|
Visual.add_member(:custom_content_visual, Shapes::ShapeRef.new(shape: CustomContentVisual, location_name: "CustomContentVisual"))
|
6337
6430
|
Visual.add_member(:empty_visual, Shapes::ShapeRef.new(shape: EmptyVisual, location_name: "EmptyVisual"))
|
6431
|
+
Visual.add_member(:radar_chart_visual, Shapes::ShapeRef.new(shape: RadarChartVisual, location_name: "RadarChartVisual"))
|
6338
6432
|
Visual.struct_class = Types::Visual
|
6339
6433
|
|
6434
|
+
VisualAxisSortOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
|
6435
|
+
VisualAxisSortOption.struct_class = Types::VisualAxisSortOption
|
6436
|
+
|
6340
6437
|
VisualCustomAction.add_member(:custom_action_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "CustomActionId"))
|
6341
6438
|
VisualCustomAction.add_member(:name, Shapes::ShapeRef.new(shape: VisualCustomActionName, required: true, location_name: "Name"))
|
6342
6439
|
VisualCustomAction.add_member(:status, Shapes::ShapeRef.new(shape: WidgetStatus, location_name: "Status"))
|
@@ -6356,6 +6453,9 @@ module Aws::QuickSight
|
|
6356
6453
|
|
6357
6454
|
VisualList.member = Shapes::ShapeRef.new(shape: Visual)
|
6358
6455
|
|
6456
|
+
VisualMenuOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
|
6457
|
+
VisualMenuOption.struct_class = Types::VisualMenuOption
|
6458
|
+
|
6359
6459
|
VisualPalette.add_member(:chart_color, Shapes::ShapeRef.new(shape: HexColor, location_name: "ChartColor"))
|
6360
6460
|
VisualPalette.add_member(:color_map, Shapes::ShapeRef.new(shape: DataPathColorList, location_name: "ColorMap"))
|
6361
6461
|
VisualPalette.struct_class = Types::VisualPalette
|
@@ -50,9 +50,6 @@ module Aws::QuickSight
|
|
50
50
|
|
51
51
|
def initialize(options = {})
|
52
52
|
self[:region] = options[:region]
|
53
|
-
if self[:region].nil?
|
54
|
-
raise ArgumentError, "Missing required EndpointParameter: :region"
|
55
|
-
end
|
56
53
|
self[:use_dual_stack] = options[:use_dual_stack]
|
57
54
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
58
55
|
if self[:use_dual_stack].nil?
|
@@ -14,36 +14,39 @@ module Aws::QuickSight
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
15
15
|
use_fips = parameters.use_fips
|
16
16
|
endpoint = parameters.endpoint
|
17
|
-
if
|
18
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
19
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
-
end
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
-
end
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
-
end
|
27
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
29
|
-
return Aws::Endpoints::Endpoint.new(url: "https://quicksight-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
-
end
|
31
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
-
end
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
33
18
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
-
|
35
|
-
return Aws::Endpoints::Endpoint.new(url: "https://quicksight-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
|
-
end
|
37
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
38
20
|
end
|
39
21
|
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
40
|
-
|
41
|
-
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
|
+
end
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
25
|
+
end
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://quicksight-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
31
|
+
end
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
|
+
end
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://quicksight-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
|
+
end
|
38
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
39
|
+
end
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
41
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
42
|
+
return Aws::Endpoints::Endpoint.new(url: "https://quicksight.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
43
|
+
end
|
44
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
42
45
|
end
|
43
|
-
|
46
|
+
return Aws::Endpoints::Endpoint.new(url: "https://quicksight.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
44
47
|
end
|
45
|
-
return Aws::Endpoints::Endpoint.new(url: "https://quicksight.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
46
48
|
end
|
49
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
47
50
|
raise ArgumentError, 'No endpoint could be resolved'
|
48
51
|
|
49
52
|
end
|
@@ -3179,6 +3179,9 @@ module Aws::QuickSight
|
|
3179
3179
|
# A source entity to use for the analysis that you're creating. This
|
3180
3180
|
# metadata structure contains details that describe a source template
|
3181
3181
|
# and one or more datasets.
|
3182
|
+
#
|
3183
|
+
# Either a `SourceEntity` or a `Definition` must be provided in order
|
3184
|
+
# for the request to be valid.
|
3182
3185
|
# @return [Types::AnalysisSourceEntity]
|
3183
3186
|
#
|
3184
3187
|
# @!attribute [rw] theme_arn
|
@@ -3197,6 +3200,9 @@ module Aws::QuickSight
|
|
3197
3200
|
#
|
3198
3201
|
# A definition is the data model of all features in a Dashboard,
|
3199
3202
|
# Template, or Analysis.
|
3203
|
+
#
|
3204
|
+
# Either a `SourceEntity` or a `Definition` must be provided in order
|
3205
|
+
# for the request to be valid.
|
3200
3206
|
# @return [Types::AnalysisDefinition]
|
3201
3207
|
#
|
3202
3208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateAnalysisRequest AWS API Documentation
|
@@ -3303,6 +3309,9 @@ module Aws::QuickSight
|
|
3303
3309
|
# Use the `DataSetReferences` entity within `SourceTemplate` to list
|
3304
3310
|
# the replacement datasets for the placeholders listed in the
|
3305
3311
|
# original. The schema in each dataset must match its placeholder.
|
3312
|
+
#
|
3313
|
+
# Either a `SourceEntity` or a `Definition` must be provided in order
|
3314
|
+
# for the request to be valid.
|
3306
3315
|
# @return [Types::DashboardSourceEntity]
|
3307
3316
|
#
|
3308
3317
|
# @!attribute [rw] tags
|
@@ -3345,6 +3354,9 @@ module Aws::QuickSight
|
|
3345
3354
|
#
|
3346
3355
|
# A definition is the data model of all features in a Dashboard,
|
3347
3356
|
# Template, or Analysis.
|
3357
|
+
#
|
3358
|
+
# Either a `SourceEntity` or a `Definition` must be provided in order
|
3359
|
+
# for the request to be valid.
|
3348
3360
|
# @return [Types::DashboardVersionDefinition]
|
3349
3361
|
#
|
3350
3362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDashboardRequest AWS API Documentation
|
@@ -4190,6 +4202,9 @@ module Aws::QuickSight
|
|
4190
4202
|
# `SourceAnalysis` to list the replacement datasets for the
|
4191
4203
|
# placeholders listed in the original. The schema in each dataset must
|
4192
4204
|
# match its placeholder.
|
4205
|
+
#
|
4206
|
+
# Either a `SourceEntity` or a `Definition` must be provided in order
|
4207
|
+
# for the request to be valid.
|
4193
4208
|
# @return [Types::TemplateSourceEntity]
|
4194
4209
|
#
|
4195
4210
|
# @!attribute [rw] tags
|
@@ -4210,6 +4225,9 @@ module Aws::QuickSight
|
|
4210
4225
|
#
|
4211
4226
|
# A definition is the data model of all features in a Dashboard,
|
4212
4227
|
# Template, or Analysis.
|
4228
|
+
#
|
4229
|
+
# Either a `SourceEntity` or a `Definition` must be provided in order
|
4230
|
+
# for the request to be valid.
|
4213
4231
|
# @return [Types::TemplateVersionDefinition]
|
4214
4232
|
#
|
4215
4233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateTemplateRequest AWS API Documentation
|
@@ -4899,6 +4917,7 @@ module Aws::QuickSight
|
|
4899
4917
|
# @return [String]
|
4900
4918
|
#
|
4901
4919
|
# @!attribute [rw] violated_entities
|
4920
|
+
# Lists the violated entities that caused the dashboard error.
|
4902
4921
|
# @return [Array<Types::Entity>]
|
4903
4922
|
#
|
4904
4923
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardError AWS API Documentation
|
@@ -4926,15 +4945,51 @@ module Aws::QuickSight
|
|
4926
4945
|
# @return [Types::SheetControlsOption]
|
4927
4946
|
#
|
4928
4947
|
# @!attribute [rw] visual_publish_options
|
4948
|
+
# The visual publish options of a visual in a dashboard.
|
4929
4949
|
# @return [Types::DashboardVisualPublishOptions]
|
4930
4950
|
#
|
4951
|
+
# @!attribute [rw] sheet_layout_element_maximization_option
|
4952
|
+
# The sheet layout maximization options of a dashbaord.
|
4953
|
+
# @return [Types::SheetLayoutElementMaximizationOption]
|
4954
|
+
#
|
4955
|
+
# @!attribute [rw] visual_menu_option
|
4956
|
+
# The menu options of a visual in a dashboard.
|
4957
|
+
# @return [Types::VisualMenuOption]
|
4958
|
+
#
|
4959
|
+
# @!attribute [rw] visual_axis_sort_option
|
4960
|
+
# The axis sort options of a dashboard.
|
4961
|
+
# @return [Types::VisualAxisSortOption]
|
4962
|
+
#
|
4963
|
+
# @!attribute [rw] export_with_hidden_fields_option
|
4964
|
+
# Determines if hidden fields are exported with a dashboard.
|
4965
|
+
# @return [Types::ExportWithHiddenFieldsOption]
|
4966
|
+
#
|
4967
|
+
# @!attribute [rw] data_point_drill_up_down_option
|
4968
|
+
# The drill-down options of data points in a dashboard.
|
4969
|
+
# @return [Types::DataPointDrillUpDownOption]
|
4970
|
+
#
|
4971
|
+
# @!attribute [rw] data_point_menu_label_option
|
4972
|
+
# The data point menu label options of a dashboard.
|
4973
|
+
# @return [Types::DataPointMenuLabelOption]
|
4974
|
+
#
|
4975
|
+
# @!attribute [rw] data_point_tooltip_option
|
4976
|
+
# The data point tool tip options of a dashboard.
|
4977
|
+
# @return [Types::DataPointTooltipOption]
|
4978
|
+
#
|
4931
4979
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardPublishOptions AWS API Documentation
|
4932
4980
|
#
|
4933
4981
|
class DashboardPublishOptions < Struct.new(
|
4934
4982
|
:ad_hoc_filtering_option,
|
4935
4983
|
:export_to_csv_option,
|
4936
4984
|
:sheet_controls_option,
|
4937
|
-
:visual_publish_options
|
4985
|
+
:visual_publish_options,
|
4986
|
+
:sheet_layout_element_maximization_option,
|
4987
|
+
:visual_menu_option,
|
4988
|
+
:visual_axis_sort_option,
|
4989
|
+
:export_with_hidden_fields_option,
|
4990
|
+
:data_point_drill_up_down_option,
|
4991
|
+
:data_point_menu_label_option,
|
4992
|
+
:data_point_tooltip_option)
|
4938
4993
|
SENSITIVE = []
|
4939
4994
|
include Aws::Structure
|
4940
4995
|
end
|
@@ -5298,7 +5353,10 @@ module Aws::QuickSight
|
|
5298
5353
|
include Aws::Structure
|
5299
5354
|
end
|
5300
5355
|
|
5356
|
+
# The visual publish options of a visual in a dashboard
|
5357
|
+
#
|
5301
5358
|
# @!attribute [rw] export_hidden_fields_option
|
5359
|
+
# Determines if hidden fields are included in an exported dashboard.
|
5302
5360
|
# @return [Types::ExportHiddenFieldsOption]
|
5303
5361
|
#
|
5304
5362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardVisualPublishOptions AWS API Documentation
|
@@ -5594,6 +5652,48 @@ module Aws::QuickSight
|
|
5594
5652
|
include Aws::Structure
|
5595
5653
|
end
|
5596
5654
|
|
5655
|
+
# The drill down options for data points in a dashbaord.
|
5656
|
+
#
|
5657
|
+
# @!attribute [rw] availability_status
|
5658
|
+
# The status of the drill down options of data points.
|
5659
|
+
# @return [String]
|
5660
|
+
#
|
5661
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataPointDrillUpDownOption AWS API Documentation
|
5662
|
+
#
|
5663
|
+
class DataPointDrillUpDownOption < Struct.new(
|
5664
|
+
:availability_status)
|
5665
|
+
SENSITIVE = []
|
5666
|
+
include Aws::Structure
|
5667
|
+
end
|
5668
|
+
|
5669
|
+
# The data point menu options of a dashboard.
|
5670
|
+
#
|
5671
|
+
# @!attribute [rw] availability_status
|
5672
|
+
# The status of the data point menu options.
|
5673
|
+
# @return [String]
|
5674
|
+
#
|
5675
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataPointMenuLabelOption AWS API Documentation
|
5676
|
+
#
|
5677
|
+
class DataPointMenuLabelOption < Struct.new(
|
5678
|
+
:availability_status)
|
5679
|
+
SENSITIVE = []
|
5680
|
+
include Aws::Structure
|
5681
|
+
end
|
5682
|
+
|
5683
|
+
# The data point tooltip options.
|
5684
|
+
#
|
5685
|
+
# @!attribute [rw] availability_status
|
5686
|
+
# The status of the data point tool tip options.
|
5687
|
+
# @return [String]
|
5688
|
+
#
|
5689
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataPointTooltipOption AWS API Documentation
|
5690
|
+
#
|
5691
|
+
class DataPointTooltipOption < Struct.new(
|
5692
|
+
:availability_status)
|
5693
|
+
SENSITIVE = []
|
5694
|
+
include Aws::Structure
|
5695
|
+
end
|
5696
|
+
|
5597
5697
|
# Dataset.
|
5598
5698
|
#
|
5599
5699
|
# @!attribute [rw] arn
|
@@ -8052,6 +8152,25 @@ module Aws::QuickSight
|
|
8052
8152
|
# The Amazon Web Services request ID for this operation.
|
8053
8153
|
# @return [String]
|
8054
8154
|
#
|
8155
|
+
# @!attribute [rw] dashboard_publish_options
|
8156
|
+
# Options for publishing the dashboard:
|
8157
|
+
#
|
8158
|
+
# * `AvailabilityStatus` for `AdHocFilteringOption` - This status can
|
8159
|
+
# be either `ENABLED` or `DISABLED`. When this is set to `DISABLED`,
|
8160
|
+
# Amazon QuickSight disables the left filter pane on the published
|
8161
|
+
# dashboard, which can be used for ad hoc (one-time) filtering. This
|
8162
|
+
# option is `ENABLED` by default.
|
8163
|
+
#
|
8164
|
+
# * `AvailabilityStatus` for `ExportToCSVOption` - This status can be
|
8165
|
+
# either `ENABLED` or `DISABLED`. The visual option to export data
|
8166
|
+
# to .CSV format isn't enabled when this is set to `DISABLED`. This
|
8167
|
+
# option is `ENABLED` by default.
|
8168
|
+
#
|
8169
|
+
# * `VisibilityState` for `SheetControlsOption` - This visibility
|
8170
|
+
# state can be either `COLLAPSED` or `EXPANDED`. This option is
|
8171
|
+
# `COLLAPSED` by default.
|
8172
|
+
# @return [Types::DashboardPublishOptions]
|
8173
|
+
#
|
8055
8174
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDashboardDefinitionResponse AWS API Documentation
|
8056
8175
|
#
|
8057
8176
|
class DescribeDashboardDefinitionResponse < Struct.new(
|
@@ -8062,7 +8181,8 @@ module Aws::QuickSight
|
|
8062
8181
|
:theme_arn,
|
8063
8182
|
:definition,
|
8064
8183
|
:status,
|
8065
|
-
:request_id
|
8184
|
+
:request_id,
|
8185
|
+
:dashboard_publish_options)
|
8066
8186
|
SENSITIVE = []
|
8067
8187
|
include Aws::Structure
|
8068
8188
|
end
|
@@ -9563,7 +9683,10 @@ module Aws::QuickSight
|
|
9563
9683
|
include Aws::Structure
|
9564
9684
|
end
|
9565
9685
|
|
9686
|
+
# Determines if hidden fields are included in an exported dashboard.
|
9687
|
+
#
|
9566
9688
|
# @!attribute [rw] availability_status
|
9689
|
+
# The status of the export hidden fields options of a dashbaord.
|
9567
9690
|
# @return [String]
|
9568
9691
|
#
|
9569
9692
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ExportHiddenFieldsOption AWS API Documentation
|
@@ -9588,6 +9711,21 @@ module Aws::QuickSight
|
|
9588
9711
|
include Aws::Structure
|
9589
9712
|
end
|
9590
9713
|
|
9714
|
+
# Determines whether or not hidden fields are visible on exported
|
9715
|
+
# dashbaords.
|
9716
|
+
#
|
9717
|
+
# @!attribute [rw] availability_status
|
9718
|
+
# The status of the export with hidden fields options.
|
9719
|
+
# @return [String]
|
9720
|
+
#
|
9721
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ExportWithHiddenFieldsOption AWS API Documentation
|
9722
|
+
#
|
9723
|
+
class ExportWithHiddenFieldsOption < Struct.new(
|
9724
|
+
:availability_status)
|
9725
|
+
SENSITIVE = []
|
9726
|
+
include Aws::Structure
|
9727
|
+
end
|
9728
|
+
|
9591
9729
|
# The setup for the detailed tooltip.
|
9592
9730
|
#
|
9593
9731
|
# @!attribute [rw] aggregation_visibility
|
@@ -17700,6 +17838,225 @@ module Aws::QuickSight
|
|
17700
17838
|
include Aws::Structure
|
17701
17839
|
end
|
17702
17840
|
|
17841
|
+
# The aggregated field well configuration of a `RadarChartVisual`.
|
17842
|
+
#
|
17843
|
+
# @!attribute [rw] category
|
17844
|
+
# The aggregated field well categories of a radar chart.
|
17845
|
+
# @return [Array<Types::DimensionField>]
|
17846
|
+
#
|
17847
|
+
# @!attribute [rw] color
|
17848
|
+
# The color that are assigned to the aggregated field wells of a radar
|
17849
|
+
# chart.
|
17850
|
+
# @return [Array<Types::DimensionField>]
|
17851
|
+
#
|
17852
|
+
# @!attribute [rw] values
|
17853
|
+
# The values that are assigned to the aggregated field wells of a
|
17854
|
+
# radar chart.
|
17855
|
+
# @return [Array<Types::MeasureField>]
|
17856
|
+
#
|
17857
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RadarChartAggregatedFieldWells AWS API Documentation
|
17858
|
+
#
|
17859
|
+
class RadarChartAggregatedFieldWells < Struct.new(
|
17860
|
+
:category,
|
17861
|
+
:color,
|
17862
|
+
:values)
|
17863
|
+
SENSITIVE = []
|
17864
|
+
include Aws::Structure
|
17865
|
+
end
|
17866
|
+
|
17867
|
+
# The configured style settings of a radar chart.
|
17868
|
+
#
|
17869
|
+
# @!attribute [rw] visibility
|
17870
|
+
# The visibility settings of a radar chart.
|
17871
|
+
# @return [String]
|
17872
|
+
#
|
17873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RadarChartAreaStyleSettings AWS API Documentation
|
17874
|
+
#
|
17875
|
+
class RadarChartAreaStyleSettings < Struct.new(
|
17876
|
+
:visibility)
|
17877
|
+
SENSITIVE = []
|
17878
|
+
include Aws::Structure
|
17879
|
+
end
|
17880
|
+
|
17881
|
+
# The configuration of a `RadarChartVisual`.
|
17882
|
+
#
|
17883
|
+
# @!attribute [rw] field_wells
|
17884
|
+
# The field well configuration of a `RadarChartVisual`.
|
17885
|
+
# @return [Types::RadarChartFieldWells]
|
17886
|
+
#
|
17887
|
+
# @!attribute [rw] sort_configuration
|
17888
|
+
# The sort configuration of a `RadarChartVisual`.
|
17889
|
+
# @return [Types::RadarChartSortConfiguration]
|
17890
|
+
#
|
17891
|
+
# @!attribute [rw] shape
|
17892
|
+
# The shape of the radar chart.
|
17893
|
+
# @return [String]
|
17894
|
+
#
|
17895
|
+
# @!attribute [rw] base_series_settings
|
17896
|
+
# The base sreies settings of a radar chart.
|
17897
|
+
# @return [Types::RadarChartSeriesSettings]
|
17898
|
+
#
|
17899
|
+
# @!attribute [rw] start_angle
|
17900
|
+
# The start angle of a radar chart's axis.
|
17901
|
+
# @return [Float]
|
17902
|
+
#
|
17903
|
+
# @!attribute [rw] visual_palette
|
17904
|
+
# The palette (chart color) display setup of the visual.
|
17905
|
+
# @return [Types::VisualPalette]
|
17906
|
+
#
|
17907
|
+
# @!attribute [rw] alternate_band_colors_visibility
|
17908
|
+
# Determines the visibility of the colors of alternatign bands in a
|
17909
|
+
# radar chart.
|
17910
|
+
# @return [String]
|
17911
|
+
#
|
17912
|
+
# @!attribute [rw] alternate_band_even_color
|
17913
|
+
# The color of the even-numbered alternate bands of a radar chart.
|
17914
|
+
# @return [String]
|
17915
|
+
#
|
17916
|
+
# @!attribute [rw] alternate_band_odd_color
|
17917
|
+
# The color of the odd-numbered alternate bands of a radar chart.
|
17918
|
+
# @return [String]
|
17919
|
+
#
|
17920
|
+
# @!attribute [rw] category_axis
|
17921
|
+
# The category axis of a radar chart.
|
17922
|
+
# @return [Types::AxisDisplayOptions]
|
17923
|
+
#
|
17924
|
+
# @!attribute [rw] category_label_options
|
17925
|
+
# The category label options of a radar chart.
|
17926
|
+
# @return [Types::ChartAxisLabelOptions]
|
17927
|
+
#
|
17928
|
+
# @!attribute [rw] color_axis
|
17929
|
+
# The color axis of a radar chart.
|
17930
|
+
# @return [Types::AxisDisplayOptions]
|
17931
|
+
#
|
17932
|
+
# @!attribute [rw] color_label_options
|
17933
|
+
# The color label options of a radar chart.
|
17934
|
+
# @return [Types::ChartAxisLabelOptions]
|
17935
|
+
#
|
17936
|
+
# @!attribute [rw] legend
|
17937
|
+
# The legend display setup of the visual.
|
17938
|
+
# @return [Types::LegendOptions]
|
17939
|
+
#
|
17940
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RadarChartConfiguration AWS API Documentation
|
17941
|
+
#
|
17942
|
+
class RadarChartConfiguration < Struct.new(
|
17943
|
+
:field_wells,
|
17944
|
+
:sort_configuration,
|
17945
|
+
:shape,
|
17946
|
+
:base_series_settings,
|
17947
|
+
:start_angle,
|
17948
|
+
:visual_palette,
|
17949
|
+
:alternate_band_colors_visibility,
|
17950
|
+
:alternate_band_even_color,
|
17951
|
+
:alternate_band_odd_color,
|
17952
|
+
:category_axis,
|
17953
|
+
:category_label_options,
|
17954
|
+
:color_axis,
|
17955
|
+
:color_label_options,
|
17956
|
+
:legend)
|
17957
|
+
SENSITIVE = []
|
17958
|
+
include Aws::Structure
|
17959
|
+
end
|
17960
|
+
|
17961
|
+
# The field wells of a radar chart visual.
|
17962
|
+
#
|
17963
|
+
# @!attribute [rw] radar_chart_aggregated_field_wells
|
17964
|
+
# The aggregated field wells of a radar chart visual.
|
17965
|
+
# @return [Types::RadarChartAggregatedFieldWells]
|
17966
|
+
#
|
17967
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RadarChartFieldWells AWS API Documentation
|
17968
|
+
#
|
17969
|
+
class RadarChartFieldWells < Struct.new(
|
17970
|
+
:radar_chart_aggregated_field_wells)
|
17971
|
+
SENSITIVE = []
|
17972
|
+
include Aws::Structure
|
17973
|
+
end
|
17974
|
+
|
17975
|
+
# The series settings of a radar chart.
|
17976
|
+
#
|
17977
|
+
# @!attribute [rw] area_style_settings
|
17978
|
+
# The area style settings of a radar chart.
|
17979
|
+
# @return [Types::RadarChartAreaStyleSettings]
|
17980
|
+
#
|
17981
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RadarChartSeriesSettings AWS API Documentation
|
17982
|
+
#
|
17983
|
+
class RadarChartSeriesSettings < Struct.new(
|
17984
|
+
:area_style_settings)
|
17985
|
+
SENSITIVE = []
|
17986
|
+
include Aws::Structure
|
17987
|
+
end
|
17988
|
+
|
17989
|
+
# The sort configuration of a `RadarChartVisual`.
|
17990
|
+
#
|
17991
|
+
# @!attribute [rw] category_sort
|
17992
|
+
# The category sort options of a radar chart.
|
17993
|
+
# @return [Array<Types::FieldSortOptions>]
|
17994
|
+
#
|
17995
|
+
# @!attribute [rw] category_items_limit
|
17996
|
+
# The category items limit for a radar chart.
|
17997
|
+
# @return [Types::ItemsLimitConfiguration]
|
17998
|
+
#
|
17999
|
+
# @!attribute [rw] color_sort
|
18000
|
+
# The color sort configuration of a radar chart.
|
18001
|
+
# @return [Array<Types::FieldSortOptions>]
|
18002
|
+
#
|
18003
|
+
# @!attribute [rw] color_items_limit
|
18004
|
+
# The color items limit of a radar chart.
|
18005
|
+
# @return [Types::ItemsLimitConfiguration]
|
18006
|
+
#
|
18007
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RadarChartSortConfiguration AWS API Documentation
|
18008
|
+
#
|
18009
|
+
class RadarChartSortConfiguration < Struct.new(
|
18010
|
+
:category_sort,
|
18011
|
+
:category_items_limit,
|
18012
|
+
:color_sort,
|
18013
|
+
:color_items_limit)
|
18014
|
+
SENSITIVE = []
|
18015
|
+
include Aws::Structure
|
18016
|
+
end
|
18017
|
+
|
18018
|
+
# A radar chart visual.
|
18019
|
+
#
|
18020
|
+
# @!attribute [rw] visual_id
|
18021
|
+
# The unique identifier of a visual. This identifier must be unique
|
18022
|
+
# within the context of a dashboard, template, or analysis. Two
|
18023
|
+
# dashboards, analyses, or templates can have visuals with the same
|
18024
|
+
# identifiers.
|
18025
|
+
# @return [String]
|
18026
|
+
#
|
18027
|
+
# @!attribute [rw] title
|
18028
|
+
# The title that is displayed on the visual.
|
18029
|
+
# @return [Types::VisualTitleLabelOptions]
|
18030
|
+
#
|
18031
|
+
# @!attribute [rw] subtitle
|
18032
|
+
# The subtitle that is displayed on the visual.
|
18033
|
+
# @return [Types::VisualSubtitleLabelOptions]
|
18034
|
+
#
|
18035
|
+
# @!attribute [rw] chart_configuration
|
18036
|
+
# The configuration settings of the visual.
|
18037
|
+
# @return [Types::RadarChartConfiguration]
|
18038
|
+
#
|
18039
|
+
# @!attribute [rw] actions
|
18040
|
+
# The list of custom actions that are configured for a visual.
|
18041
|
+
# @return [Array<Types::VisualCustomAction>]
|
18042
|
+
#
|
18043
|
+
# @!attribute [rw] column_hierarchies
|
18044
|
+
# The column hierarchy that is used during drill-downs and drill-ups.
|
18045
|
+
# @return [Array<Types::ColumnHierarchy>]
|
18046
|
+
#
|
18047
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RadarChartVisual AWS API Documentation
|
18048
|
+
#
|
18049
|
+
class RadarChartVisual < Struct.new(
|
18050
|
+
:visual_id,
|
18051
|
+
:title,
|
18052
|
+
:subtitle,
|
18053
|
+
:chart_configuration,
|
18054
|
+
:actions,
|
18055
|
+
:column_hierarchies)
|
18056
|
+
SENSITIVE = []
|
18057
|
+
include Aws::Structure
|
18058
|
+
end
|
18059
|
+
|
17703
18060
|
# The range ends label type of a data path label.
|
17704
18061
|
#
|
17705
18062
|
# @!attribute [rw] visibility
|
@@ -18809,10 +19166,21 @@ module Aws::QuickSight
|
|
18809
19166
|
# manifest file was uploaded into Amazon QuickSight.
|
18810
19167
|
# @return [Types::ManifestFileLocation]
|
18811
19168
|
#
|
19169
|
+
# @!attribute [rw] role_arn
|
19170
|
+
# Use the `RoleArn` structure to override an account-wide role for a
|
19171
|
+
# specific S3 data source. For example, say an account administrator
|
19172
|
+
# has turned off all S3 access with an account-wide role. The
|
19173
|
+
# administrator can then use `RoleArn` to bypass the account-wide role
|
19174
|
+
# and allow S3 access for the single S3 data source that is specified
|
19175
|
+
# in the structure, even if the account-wide role forbidding S3 access
|
19176
|
+
# is still active.
|
19177
|
+
# @return [String]
|
19178
|
+
#
|
18812
19179
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/S3Parameters AWS API Documentation
|
18813
19180
|
#
|
18814
19181
|
class S3Parameters < Struct.new(
|
18815
|
-
:manifest_file_location
|
19182
|
+
:manifest_file_location,
|
19183
|
+
:role_arn)
|
18816
19184
|
SENSITIVE = []
|
18817
19185
|
include Aws::Structure
|
18818
19186
|
end
|
@@ -20063,6 +20431,20 @@ module Aws::QuickSight
|
|
20063
20431
|
include Aws::Structure
|
20064
20432
|
end
|
20065
20433
|
|
20434
|
+
# The sheet layout maximization options of a dashbaord.
|
20435
|
+
#
|
20436
|
+
# @!attribute [rw] availability_status
|
20437
|
+
# The status of the sheet layout maximization options of a dashbaord.
|
20438
|
+
# @return [String]
|
20439
|
+
#
|
20440
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetLayoutElementMaximizationOption AWS API Documentation
|
20441
|
+
#
|
20442
|
+
class SheetLayoutElementMaximizationOption < Struct.new(
|
20443
|
+
:availability_status)
|
20444
|
+
SENSITIVE = []
|
20445
|
+
include Aws::Structure
|
20446
|
+
end
|
20447
|
+
|
20066
20448
|
# The theme display options for sheets.
|
20067
20449
|
#
|
20068
20450
|
# @!attribute [rw] tile
|
@@ -25067,6 +25449,17 @@ module Aws::QuickSight
|
|
25067
25449
|
# An empty visual.
|
25068
25450
|
# @return [Types::EmptyVisual]
|
25069
25451
|
#
|
25452
|
+
# @!attribute [rw] radar_chart_visual
|
25453
|
+
# A radar chart visual.
|
25454
|
+
#
|
25455
|
+
# For more information, see [Using radar charts][1] in the *Amazon
|
25456
|
+
# QuickSight User Guide*.
|
25457
|
+
#
|
25458
|
+
#
|
25459
|
+
#
|
25460
|
+
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/radar-chart.html
|
25461
|
+
# @return [Types::RadarChartVisual]
|
25462
|
+
#
|
25070
25463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Visual AWS API Documentation
|
25071
25464
|
#
|
25072
25465
|
class Visual < Struct.new(
|
@@ -25091,7 +25484,22 @@ module Aws::QuickSight
|
|
25091
25484
|
:insight_visual,
|
25092
25485
|
:sankey_diagram_visual,
|
25093
25486
|
:custom_content_visual,
|
25094
|
-
:empty_visual
|
25487
|
+
:empty_visual,
|
25488
|
+
:radar_chart_visual)
|
25489
|
+
SENSITIVE = []
|
25490
|
+
include Aws::Structure
|
25491
|
+
end
|
25492
|
+
|
25493
|
+
# The axis sort options for a visual.
|
25494
|
+
#
|
25495
|
+
# @!attribute [rw] availability_status
|
25496
|
+
# The availaiblity status of a visual's axis sort options.
|
25497
|
+
# @return [String]
|
25498
|
+
#
|
25499
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualAxisSortOption AWS API Documentation
|
25500
|
+
#
|
25501
|
+
class VisualAxisSortOption < Struct.new(
|
25502
|
+
:availability_status)
|
25095
25503
|
SENSITIVE = []
|
25096
25504
|
include Aws::Structure
|
25097
25505
|
end
|
@@ -25175,6 +25583,20 @@ module Aws::QuickSight
|
|
25175
25583
|
include Aws::Structure
|
25176
25584
|
end
|
25177
25585
|
|
25586
|
+
# The menu options for a visual.
|
25587
|
+
#
|
25588
|
+
# @!attribute [rw] availability_status
|
25589
|
+
# The availaiblity status of a visual's menu options.
|
25590
|
+
# @return [String]
|
25591
|
+
#
|
25592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualMenuOption AWS API Documentation
|
25593
|
+
#
|
25594
|
+
class VisualMenuOption < Struct.new(
|
25595
|
+
:availability_status)
|
25596
|
+
SENSITIVE = []
|
25597
|
+
include Aws::Structure
|
25598
|
+
end
|
25599
|
+
|
25178
25600
|
# The visual display options for the visual palette.
|
25179
25601
|
#
|
25180
25602
|
# @!attribute [rw] chart_color
|
data/lib/aws-sdk-quicksight.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-quicksight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.76.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-02-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|