aws-sdk-quicksight 1.74.0 → 1.75.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 32c9153251bd9576b799e10f00a7ef9136875756380ac225e3731bf72c9f4f6d
4
- data.tar.gz: 5b87d3ec75709b3fc6df2e293aeb9ef864202fa6ac73afa283308812cc09ecd9
3
+ metadata.gz: b5757719b44ab320da9b87018965e4a152c2191c332e05beaaa915aed7d003c0
4
+ data.tar.gz: 952cd4ffc2e306f8ce4f186c6b7183b0f2ee30dc0d136a1f67994f7aaaeef90c
5
5
  SHA512:
6
- metadata.gz: 42ae5237ef5ec7a34d4dc8bec1a881d3fb60062d3bde1ce40ba9f60980373648b226304e39cfa7f4632de0d3cc464f13a7815e77cd55687634c1e7cb152b7a8f
7
- data.tar.gz: dd55046cda1ada60ebe5b7757f64bf7423873f14ac0a688dadf58ab4ee7caf61daa313ea8f6c36677381aa3a97491a940a2d8402546b73dcdc7534898976bfbf
6
+ metadata.gz: b4633635b5ea10bb083fca49eef1cfe2b9a9929161c3795bf4e72cacd4c6752f74bda4236560eea4859a55d8289b8b5d390973e306cd8067269e6baf6266f565
7
+ data.tar.gz: 510e715c2d4b25d5f5a86d2486b7ee5e6e001d1e6188d8d3aadaf85aff2f572276fb988710f6c98d71d3d4ed66443550a7552c9b01090d2b8a78340ae933003d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.75.0 (2023-02-02)
5
+ ------------------
6
+
7
+ * Feature - QuickSight support for Radar Chart and Dashboard Publish Options
8
+
4
9
  1.74.0 (2023-01-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.74.0
1
+ 1.75.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. To first create a template, see
777
- # the ` CreateTemplate ` API operation.
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
@@ -1890,8 +1904,10 @@ module Aws::QuickSight
1890
1904
  req.send_request(options)
1891
1905
  end
1892
1906
 
1893
- # Creates a template from an existing Amazon QuickSight analysis or
1894
- # template. You can use the resulting template to create a dashboard.
1907
+ # Creates a template either from a `TemplateDefinition` or from an
1908
+ # existing Amazon QuickSight analysis or template. You can use the
1909
+ # resulting template to create additional dashboards, templates, or
1910
+ # analyses.
1895
1911
  #
1896
1912
  # A *template* is an entity in Amazon QuickSight that encapsulates the
1897
1913
  # metadata required to create an analysis and that you can use to create
@@ -1932,6 +1948,9 @@ module Aws::QuickSight
1932
1948
  # listed in the original. The schema in each dataset must match its
1933
1949
  # placeholder.
1934
1950
  #
1951
+ # Either a `SourceEntity` or a `Definition` must be provided in order
1952
+ # for the request to be valid.
1953
+ #
1935
1954
  # @option params [Array<Types::Tag>] :tags
1936
1955
  # Contains a map of the key-value pairs for the resource tag or tags
1937
1956
  # assigned to the resource.
@@ -1949,6 +1968,9 @@ module Aws::QuickSight
1949
1968
  # A definition is the data model of all features in a Dashboard,
1950
1969
  # Template, or Analysis.
1951
1970
  #
1971
+ # Either a `SourceEntity` or a `Definition` must be provided in order
1972
+ # for the request to be valid.
1973
+ #
1952
1974
  # @return [Types::CreateTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1953
1975
  #
1954
1976
  # * {Types::CreateTemplateResponse#arn #arn} => String
@@ -3450,6 +3472,7 @@ module Aws::QuickSight
3450
3472
  # * {Types::DescribeDashboardDefinitionResponse#definition #definition} => Types::DashboardVersionDefinition
3451
3473
  # * {Types::DescribeDashboardDefinitionResponse#status #status} => Integer
3452
3474
  # * {Types::DescribeDashboardDefinitionResponse#request_id #request_id} => String
3475
+ # * {Types::DescribeDashboardDefinitionResponse#dashboard_publish_options #dashboard_publish_options} => Types::DashboardPublishOptions
3453
3476
  #
3454
3477
  # @example Request syntax with placeholder values
3455
3478
  #
@@ -9291,7 +9314,7 @@ module Aws::QuickSight
9291
9314
  params: params,
9292
9315
  config: config)
9293
9316
  context[:gem_name] = 'aws-sdk-quicksight'
9294
- context[:gem_version] = '1.74.0'
9317
+ context[:gem_version] = '1.75.0'
9295
9318
  Seahorse::Client::Request.new(handlers, context)
9296
9319
  end
9297
9320
 
@@ -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
 
@@ -5351,6 +5440,9 @@ module Aws::QuickSight
5351
5440
 
5352
5441
  SheetElementRenderingRuleList.member = Shapes::ShapeRef.new(shape: SheetElementRenderingRule)
5353
5442
 
5443
+ SheetLayoutElementMaximizationOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
5444
+ SheetLayoutElementMaximizationOption.struct_class = Types::SheetLayoutElementMaximizationOption
5445
+
5354
5446
  SheetList.member = Shapes::ShapeRef.new(shape: Sheet)
5355
5447
 
5356
5448
  SheetStyle.add_member(:tile, Shapes::ShapeRef.new(shape: TileStyle, location_name: "Tile"))
@@ -6335,8 +6427,12 @@ module Aws::QuickSight
6335
6427
  Visual.add_member(:sankey_diagram_visual, Shapes::ShapeRef.new(shape: SankeyDiagramVisual, location_name: "SankeyDiagramVisual"))
6336
6428
  Visual.add_member(:custom_content_visual, Shapes::ShapeRef.new(shape: CustomContentVisual, location_name: "CustomContentVisual"))
6337
6429
  Visual.add_member(:empty_visual, Shapes::ShapeRef.new(shape: EmptyVisual, location_name: "EmptyVisual"))
6430
+ Visual.add_member(:radar_chart_visual, Shapes::ShapeRef.new(shape: RadarChartVisual, location_name: "RadarChartVisual"))
6338
6431
  Visual.struct_class = Types::Visual
6339
6432
 
6433
+ VisualAxisSortOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
6434
+ VisualAxisSortOption.struct_class = Types::VisualAxisSortOption
6435
+
6340
6436
  VisualCustomAction.add_member(:custom_action_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "CustomActionId"))
6341
6437
  VisualCustomAction.add_member(:name, Shapes::ShapeRef.new(shape: VisualCustomActionName, required: true, location_name: "Name"))
6342
6438
  VisualCustomAction.add_member(:status, Shapes::ShapeRef.new(shape: WidgetStatus, location_name: "Status"))
@@ -6356,6 +6452,9 @@ module Aws::QuickSight
6356
6452
 
6357
6453
  VisualList.member = Shapes::ShapeRef.new(shape: Visual)
6358
6454
 
6455
+ VisualMenuOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
6456
+ VisualMenuOption.struct_class = Types::VisualMenuOption
6457
+
6359
6458
  VisualPalette.add_member(:chart_color, Shapes::ShapeRef.new(shape: HexColor, location_name: "ChartColor"))
6360
6459
  VisualPalette.add_member(:color_map, Shapes::ShapeRef.new(shape: DataPathColorList, location_name: "ColorMap"))
6361
6460
  VisualPalette.struct_class = Types::VisualPalette
@@ -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
@@ -20063,6 +20420,20 @@ module Aws::QuickSight
20063
20420
  include Aws::Structure
20064
20421
  end
20065
20422
 
20423
+ # The sheet layout maximization options of a dashbaord.
20424
+ #
20425
+ # @!attribute [rw] availability_status
20426
+ # The status of the sheet layout maximization options of a dashbaord.
20427
+ # @return [String]
20428
+ #
20429
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetLayoutElementMaximizationOption AWS API Documentation
20430
+ #
20431
+ class SheetLayoutElementMaximizationOption < Struct.new(
20432
+ :availability_status)
20433
+ SENSITIVE = []
20434
+ include Aws::Structure
20435
+ end
20436
+
20066
20437
  # The theme display options for sheets.
20067
20438
  #
20068
20439
  # @!attribute [rw] tile
@@ -25067,6 +25438,17 @@ module Aws::QuickSight
25067
25438
  # An empty visual.
25068
25439
  # @return [Types::EmptyVisual]
25069
25440
  #
25441
+ # @!attribute [rw] radar_chart_visual
25442
+ # A radar chart visual.
25443
+ #
25444
+ # For more information, see [Using radar charts][1] in the *Amazon
25445
+ # QuickSight User Guide*.
25446
+ #
25447
+ #
25448
+ #
25449
+ # [1]: https://docs.aws.amazon.com/quicksight/latest/user/radar-chart.html
25450
+ # @return [Types::RadarChartVisual]
25451
+ #
25070
25452
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Visual AWS API Documentation
25071
25453
  #
25072
25454
  class Visual < Struct.new(
@@ -25091,7 +25473,22 @@ module Aws::QuickSight
25091
25473
  :insight_visual,
25092
25474
  :sankey_diagram_visual,
25093
25475
  :custom_content_visual,
25094
- :empty_visual)
25476
+ :empty_visual,
25477
+ :radar_chart_visual)
25478
+ SENSITIVE = []
25479
+ include Aws::Structure
25480
+ end
25481
+
25482
+ # The axis sort options for a visual.
25483
+ #
25484
+ # @!attribute [rw] availability_status
25485
+ # The availaiblity status of a visual's axis sort options.
25486
+ # @return [String]
25487
+ #
25488
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualAxisSortOption AWS API Documentation
25489
+ #
25490
+ class VisualAxisSortOption < Struct.new(
25491
+ :availability_status)
25095
25492
  SENSITIVE = []
25096
25493
  include Aws::Structure
25097
25494
  end
@@ -25175,6 +25572,20 @@ module Aws::QuickSight
25175
25572
  include Aws::Structure
25176
25573
  end
25177
25574
 
25575
+ # The menu options for a visual.
25576
+ #
25577
+ # @!attribute [rw] availability_status
25578
+ # The availaiblity status of a visual's menu options.
25579
+ # @return [String]
25580
+ #
25581
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualMenuOption AWS API Documentation
25582
+ #
25583
+ class VisualMenuOption < Struct.new(
25584
+ :availability_status)
25585
+ SENSITIVE = []
25586
+ include Aws::Structure
25587
+ end
25588
+
25178
25589
  # The visual display options for the visual palette.
25179
25590
  #
25180
25591
  # @!attribute [rw] chart_color
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-quicksight/customizations'
52
52
  # @!group service
53
53
  module Aws::QuickSight
54
54
 
55
- GEM_VERSION = '1.74.0'
55
+ GEM_VERSION = '1.75.0'
56
56
 
57
57
  end
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.74.0
4
+ version: 1.75.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-01-20 00:00:00.000000000 Z
11
+ date: 2023-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core