aws-sdk-quicksight 1.73.0 → 1.75.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c19211ae623f0fef6eb350d178f39e7903d6b60e9c506fe4e1242ddf4508765
4
- data.tar.gz: 7c7026e03ad26f5c7d8350114bc64861a857aa127eb1f24ada57056894970d22
3
+ metadata.gz: b5757719b44ab320da9b87018965e4a152c2191c332e05beaaa915aed7d003c0
4
+ data.tar.gz: 952cd4ffc2e306f8ce4f186c6b7183b0f2ee30dc0d136a1f67994f7aaaeef90c
5
5
  SHA512:
6
- metadata.gz: 7519007bb8e96d910d32b7eca72d557f70157dc1a0da2eb0ebeae6d9b3a96a7897dae90bd92652ce2877458d05b38b43919b37a1029d9adca329d680cf786520
7
- data.tar.gz: c6ed8a21ab34277eef01211fceac4ea7d9787b17dc826e31b3f500d426e37cff021298c834661c9857699cfd57108c5b1f16311a62717536e564132e3b1bd1f3
6
+ metadata.gz: b4633635b5ea10bb083fca49eef1cfe2b9a9929161c3795bf4e72cacd4c6752f74bda4236560eea4859a55d8289b8b5d390973e306cd8067269e6baf6266f565
7
+ data.tar.gz: 510e715c2d4b25d5f5a86d2486b7ee5e6e001d1e6188d8d3aadaf85aff2f572276fb988710f6c98d71d3d4ed66443550a7552c9b01090d2b8a78340ae933003d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.74.0 (2023-01-20)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for data bars in QuickSight table and increases pivot table field well limit.
13
+
4
14
  1.73.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.73.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
  #
@@ -6551,9 +6574,21 @@ module Aws::QuickSight
6551
6574
  req.send_request(options)
6552
6575
  end
6553
6576
 
6554
- # Creates an Amazon QuickSight user, whose identity is associated with
6577
+ # Creates an Amazon QuickSight user whose identity is associated with
6555
6578
  # the Identity and Access Management (IAM) identity or role specified in
6556
- # the request.
6579
+ # the request. When you register a new user from the Amazon QuickSight
6580
+ # API, Amazon QuickSight generates a registration URL. The user accesses
6581
+ # this registration URL to create their account. Amazon QuickSight
6582
+ # doesn't send a registration email to users who are registered from
6583
+ # the Amazon QuickSight API. If you want new users to receive a
6584
+ # registration email, then add those users in the Amazon QuickSight
6585
+ # console. For more information on registering a new user in the Amazon
6586
+ # QuickSight console, see [ Inviting users to access Amazon
6587
+ # QuickSight][1].
6588
+ #
6589
+ #
6590
+ #
6591
+ # [1]: https://docs.aws.amazon.com/quicksight/latest/user/managing-users.html#inviting-users
6557
6592
  #
6558
6593
  # @option params [required, String] :identity_type
6559
6594
  # Amazon QuickSight supports several ways of managing the identity of
@@ -9279,7 +9314,7 @@ module Aws::QuickSight
9279
9314
  params: params,
9280
9315
  config: config)
9281
9316
  context[:gem_name] = 'aws-sdk-quicksight'
9282
- context[:gem_version] = '1.73.0'
9317
+ context[:gem_version] = '1.75.0'
9283
9318
  Seahorse::Client::Request.new(handlers, context)
9284
9319
  end
9285
9320
 
@@ -269,6 +269,7 @@ module Aws::QuickSight
269
269
  DashboardVersionSummaryList = Shapes::ListShape.new(name: 'DashboardVersionSummaryList')
270
270
  DashboardVisualId = Shapes::StructureShape.new(name: 'DashboardVisualId')
271
271
  DashboardVisualPublishOptions = Shapes::StructureShape.new(name: 'DashboardVisualPublishOptions')
272
+ DataBarsOptions = Shapes::StructureShape.new(name: 'DataBarsOptions')
272
273
  DataColor = Shapes::StructureShape.new(name: 'DataColor')
273
274
  DataColorPalette = Shapes::StructureShape.new(name: 'DataColorPalette')
274
275
  DataFieldSeriesItem = Shapes::StructureShape.new(name: 'DataFieldSeriesItem')
@@ -284,6 +285,9 @@ module Aws::QuickSight
284
285
  DataPathSort = Shapes::StructureShape.new(name: 'DataPathSort')
285
286
  DataPathValue = Shapes::StructureShape.new(name: 'DataPathValue')
286
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')
287
291
  DataSet = Shapes::StructureShape.new(name: 'DataSet')
288
292
  DataSetArnsList = Shapes::ListShape.new(name: 'DataSetArnsList')
289
293
  DataSetConfiguration = Shapes::StructureShape.new(name: 'DataSetConfiguration')
@@ -470,6 +474,7 @@ module Aws::QuickSight
470
474
  ExplicitHierarchyColumnList = Shapes::ListShape.new(name: 'ExplicitHierarchyColumnList')
471
475
  ExportHiddenFieldsOption = Shapes::StructureShape.new(name: 'ExportHiddenFieldsOption')
472
476
  ExportToCSVOption = Shapes::StructureShape.new(name: 'ExportToCSVOption')
477
+ ExportWithHiddenFieldsOption = Shapes::StructureShape.new(name: 'ExportWithHiddenFieldsOption')
473
478
  Expression = Shapes::StringShape.new(name: 'Expression')
474
479
  FieldBasedTooltip = Shapes::StructureShape.new(name: 'FieldBasedTooltip')
475
480
  FieldFolder = Shapes::StructureShape.new(name: 'FieldFolder')
@@ -921,6 +926,18 @@ module Aws::QuickSight
921
926
  Query = Shapes::StringShape.new(name: 'Query')
922
927
  QueueInfo = Shapes::StructureShape.new(name: 'QueueInfo')
923
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')
924
941
  RangeEndsLabelType = Shapes::StructureShape.new(name: 'RangeEndsLabelType')
925
942
  RdsParameters = Shapes::StructureShape.new(name: 'RdsParameters')
926
943
  RecoveryWindowInDays = Shapes::IntegerShape.new(name: 'RecoveryWindowInDays')
@@ -1064,6 +1081,7 @@ module Aws::QuickSight
1064
1081
  SheetElementConfigurationOverrides = Shapes::StructureShape.new(name: 'SheetElementConfigurationOverrides')
1065
1082
  SheetElementRenderingRule = Shapes::StructureShape.new(name: 'SheetElementRenderingRule')
1066
1083
  SheetElementRenderingRuleList = Shapes::ListShape.new(name: 'SheetElementRenderingRuleList')
1084
+ SheetLayoutElementMaximizationOption = Shapes::StructureShape.new(name: 'SheetLayoutElementMaximizationOption')
1067
1085
  SheetList = Shapes::ListShape.new(name: 'SheetList')
1068
1086
  SheetName = Shapes::StringShape.new(name: 'SheetName')
1069
1087
  SheetStyle = Shapes::StructureShape.new(name: 'SheetStyle')
@@ -1129,6 +1147,8 @@ module Aws::QuickSight
1129
1147
  TableFieldOptions = Shapes::StructureShape.new(name: 'TableFieldOptions')
1130
1148
  TableFieldURLConfiguration = Shapes::StructureShape.new(name: 'TableFieldURLConfiguration')
1131
1149
  TableFieldWells = Shapes::StructureShape.new(name: 'TableFieldWells')
1150
+ TableInlineVisualization = Shapes::StructureShape.new(name: 'TableInlineVisualization')
1151
+ TableInlineVisualizationList = Shapes::ListShape.new(name: 'TableInlineVisualizationList')
1132
1152
  TableOptions = Shapes::StructureShape.new(name: 'TableOptions')
1133
1153
  TableOrientation = Shapes::StringShape.new(name: 'TableOrientation')
1134
1154
  TablePaginatedReportOptions = Shapes::StructureShape.new(name: 'TablePaginatedReportOptions')
@@ -1302,6 +1322,7 @@ module Aws::QuickSight
1302
1322
  VisiblePanelRows = Shapes::IntegerShape.new(name: 'VisiblePanelRows')
1303
1323
  VisibleRangeOptions = Shapes::StructureShape.new(name: 'VisibleRangeOptions')
1304
1324
  Visual = Shapes::StructureShape.new(name: 'Visual')
1325
+ VisualAxisSortOption = Shapes::StructureShape.new(name: 'VisualAxisSortOption')
1305
1326
  VisualCustomAction = Shapes::StructureShape.new(name: 'VisualCustomAction')
1306
1327
  VisualCustomActionList = Shapes::ListShape.new(name: 'VisualCustomActionList')
1307
1328
  VisualCustomActionName = Shapes::StringShape.new(name: 'VisualCustomActionName')
@@ -1309,6 +1330,7 @@ module Aws::QuickSight
1309
1330
  VisualCustomActionOperationList = Shapes::ListShape.new(name: 'VisualCustomActionOperationList')
1310
1331
  VisualCustomActionTrigger = Shapes::StringShape.new(name: 'VisualCustomActionTrigger')
1311
1332
  VisualList = Shapes::ListShape.new(name: 'VisualList')
1333
+ VisualMenuOption = Shapes::StructureShape.new(name: 'VisualMenuOption')
1312
1334
  VisualPalette = Shapes::StructureShape.new(name: 'VisualPalette')
1313
1335
  VisualSubtitleLabelOptions = Shapes::StructureShape.new(name: 'VisualSubtitleLabelOptions')
1314
1336
  VisualTitleLabelOptions = Shapes::StructureShape.new(name: 'VisualTitleLabelOptions')
@@ -1718,7 +1740,7 @@ module Aws::QuickSight
1718
1740
 
1719
1741
  CategoryFilter.add_member(:filter_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "FilterId"))
1720
1742
  CategoryFilter.add_member(:column, Shapes::ShapeRef.new(shape: ColumnIdentifier, required: true, location_name: "Column"))
1721
- 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"))
1722
1744
  CategoryFilter.struct_class = Types::CategoryFilter
1723
1745
 
1724
1746
  CategoryFilterConfiguration.add_member(:filter_list_configuration, Shapes::ShapeRef.new(shape: FilterListConfiguration, location_name: "FilterListConfiguration"))
@@ -2298,7 +2320,14 @@ module Aws::QuickSight
2298
2320
  DashboardPublishOptions.add_member(:ad_hoc_filtering_option, Shapes::ShapeRef.new(shape: AdHocFilteringOption, location_name: "AdHocFilteringOption"))
2299
2321
  DashboardPublishOptions.add_member(:export_to_csv_option, Shapes::ShapeRef.new(shape: ExportToCSVOption, location_name: "ExportToCSVOption"))
2300
2322
  DashboardPublishOptions.add_member(:sheet_controls_option, Shapes::ShapeRef.new(shape: SheetControlsOption, location_name: "SheetControlsOption"))
2301
- 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"))
2302
2331
  DashboardPublishOptions.struct_class = Types::DashboardPublishOptions
2303
2332
 
2304
2333
  DashboardSearchFilter.add_member(:operator, Shapes::ShapeRef.new(shape: FilterOperator, required: true, location_name: "Operator"))
@@ -2365,6 +2394,11 @@ module Aws::QuickSight
2365
2394
  DashboardVisualPublishOptions.add_member(:export_hidden_fields_option, Shapes::ShapeRef.new(shape: ExportHiddenFieldsOption, location_name: "ExportHiddenFieldsOption"))
2366
2395
  DashboardVisualPublishOptions.struct_class = Types::DashboardVisualPublishOptions
2367
2396
 
2397
+ DataBarsOptions.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "FieldId"))
2398
+ DataBarsOptions.add_member(:positive_color, Shapes::ShapeRef.new(shape: HexColor, location_name: "PositiveColor"))
2399
+ DataBarsOptions.add_member(:negative_color, Shapes::ShapeRef.new(shape: HexColor, location_name: "NegativeColor"))
2400
+ DataBarsOptions.struct_class = Types::DataBarsOptions
2401
+
2368
2402
  DataColor.add_member(:color, Shapes::ShapeRef.new(shape: HexColor, location_name: "Color"))
2369
2403
  DataColor.add_member(:data_value, Shapes::ShapeRef.new(shape: Double, location_name: "DataValue", metadata: {"box"=>true}))
2370
2404
  DataColor.struct_class = Types::DataColor
@@ -2422,6 +2456,15 @@ module Aws::QuickSight
2422
2456
 
2423
2457
  DataPathValueList.member = Shapes::ShapeRef.new(shape: DataPathValue)
2424
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
+
2425
2468
  DataSet.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
2426
2469
  DataSet.add_member(:data_set_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "DataSetId"))
2427
2470
  DataSet.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "Name"))
@@ -2918,6 +2961,7 @@ module Aws::QuickSight
2918
2961
  DescribeDashboardDefinitionResponse.add_member(:definition, Shapes::ShapeRef.new(shape: DashboardVersionDefinition, location_name: "Definition"))
2919
2962
  DescribeDashboardDefinitionResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
2920
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"))
2921
2965
  DescribeDashboardDefinitionResponse.struct_class = Types::DescribeDashboardDefinitionResponse
2922
2966
 
2923
2967
  DescribeDashboardPermissionsRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
@@ -3240,6 +3284,9 @@ module Aws::QuickSight
3240
3284
  ExportToCSVOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
3241
3285
  ExportToCSVOption.struct_class = Types::ExportToCSVOption
3242
3286
 
3287
+ ExportWithHiddenFieldsOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
3288
+ ExportWithHiddenFieldsOption.struct_class = Types::ExportWithHiddenFieldsOption
3289
+
3243
3290
  FieldBasedTooltip.add_member(:aggregation_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "AggregationVisibility"))
3244
3291
  FieldBasedTooltip.add_member(:tooltip_title_type, Shapes::ShapeRef.new(shape: TooltipTitleType, location_name: "TooltipTitleType"))
3245
3292
  FieldBasedTooltip.add_member(:tooltip_fields, Shapes::ShapeRef.new(shape: TooltipItemList, location_name: "TooltipFields"))
@@ -4900,6 +4947,56 @@ module Aws::QuickSight
4900
4947
  QuickSightUserNotFoundException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
4901
4948
  QuickSightUserNotFoundException.struct_class = Types::QuickSightUserNotFoundException
4902
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
+
4903
5000
  RangeEndsLabelType.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
4904
5001
  RangeEndsLabelType.struct_class = Types::RangeEndsLabelType
4905
5002
 
@@ -5343,6 +5440,9 @@ module Aws::QuickSight
5343
5440
 
5344
5441
  SheetElementRenderingRuleList.member = Shapes::ShapeRef.new(shape: SheetElementRenderingRule)
5345
5442
 
5443
+ SheetLayoutElementMaximizationOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
5444
+ SheetLayoutElementMaximizationOption.struct_class = Types::SheetLayoutElementMaximizationOption
5445
+
5346
5446
  SheetList.member = Shapes::ShapeRef.new(shape: Sheet)
5347
5447
 
5348
5448
  SheetStyle.add_member(:tile, Shapes::ShapeRef.new(shape: TileStyle, location_name: "Tile"))
@@ -5486,6 +5586,7 @@ module Aws::QuickSight
5486
5586
  TableConfiguration.add_member(:total_options, Shapes::ShapeRef.new(shape: TotalOptions, location_name: "TotalOptions"))
5487
5587
  TableConfiguration.add_member(:field_options, Shapes::ShapeRef.new(shape: TableFieldOptions, location_name: "FieldOptions"))
5488
5588
  TableConfiguration.add_member(:paginated_report_options, Shapes::ShapeRef.new(shape: TablePaginatedReportOptions, location_name: "PaginatedReportOptions"))
5589
+ TableConfiguration.add_member(:table_inline_visualizations, Shapes::ShapeRef.new(shape: TableInlineVisualizationList, location_name: "TableInlineVisualizations"))
5489
5590
  TableConfiguration.struct_class = Types::TableConfiguration
5490
5591
 
5491
5592
  TableFieldCustomIconContent.add_member(:icon, Shapes::ShapeRef.new(shape: TableFieldIconSetType, location_name: "Icon"))
@@ -5527,6 +5628,11 @@ module Aws::QuickSight
5527
5628
  TableFieldWells.add_member(:table_unaggregated_field_wells, Shapes::ShapeRef.new(shape: TableUnaggregatedFieldWells, location_name: "TableUnaggregatedFieldWells"))
5528
5629
  TableFieldWells.struct_class = Types::TableFieldWells
5529
5630
 
5631
+ TableInlineVisualization.add_member(:data_bars, Shapes::ShapeRef.new(shape: DataBarsOptions, location_name: "DataBars"))
5632
+ TableInlineVisualization.struct_class = Types::TableInlineVisualization
5633
+
5634
+ TableInlineVisualizationList.member = Shapes::ShapeRef.new(shape: TableInlineVisualization)
5635
+
5530
5636
  TableOptions.add_member(:orientation, Shapes::ShapeRef.new(shape: TableOrientation, location_name: "Orientation"))
5531
5637
  TableOptions.add_member(:header_style, Shapes::ShapeRef.new(shape: TableCellStyle, location_name: "HeaderStyle"))
5532
5638
  TableOptions.add_member(:cell_style, Shapes::ShapeRef.new(shape: TableCellStyle, location_name: "CellStyle"))
@@ -6321,8 +6427,12 @@ module Aws::QuickSight
6321
6427
  Visual.add_member(:sankey_diagram_visual, Shapes::ShapeRef.new(shape: SankeyDiagramVisual, location_name: "SankeyDiagramVisual"))
6322
6428
  Visual.add_member(:custom_content_visual, Shapes::ShapeRef.new(shape: CustomContentVisual, location_name: "CustomContentVisual"))
6323
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"))
6324
6431
  Visual.struct_class = Types::Visual
6325
6432
 
6433
+ VisualAxisSortOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
6434
+ VisualAxisSortOption.struct_class = Types::VisualAxisSortOption
6435
+
6326
6436
  VisualCustomAction.add_member(:custom_action_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "CustomActionId"))
6327
6437
  VisualCustomAction.add_member(:name, Shapes::ShapeRef.new(shape: VisualCustomActionName, required: true, location_name: "Name"))
6328
6438
  VisualCustomAction.add_member(:status, Shapes::ShapeRef.new(shape: WidgetStatus, location_name: "Status"))
@@ -6342,6 +6452,9 @@ module Aws::QuickSight
6342
6452
 
6343
6453
  VisualList.member = Shapes::ShapeRef.new(shape: Visual)
6344
6454
 
6455
+ VisualMenuOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
6456
+ VisualMenuOption.struct_class = Types::VisualMenuOption
6457
+
6345
6458
  VisualPalette.add_member(:chart_color, Shapes::ShapeRef.new(shape: HexColor, location_name: "ChartColor"))
6346
6459
  VisualPalette.add_member(:color_map, Shapes::ShapeRef.new(shape: DataPathColorList, location_name: "ColorMap"))
6347
6460
  VisualPalette.struct_class = Types::VisualPalette
@@ -15,7 +15,7 @@ module Aws::QuickSight
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
17
  if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
18
+ if Aws::Endpoints::Matchers.set?(endpoint)
19
19
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
20
  raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
21
  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
@@ -5309,6 +5367,30 @@ module Aws::QuickSight
5309
5367
  include Aws::Structure
5310
5368
  end
5311
5369
 
5370
+ # The options for data bars.
5371
+ #
5372
+ # @!attribute [rw] field_id
5373
+ # The field ID for the data bars options.
5374
+ # @return [String]
5375
+ #
5376
+ # @!attribute [rw] positive_color
5377
+ # The color of the positive data bar.
5378
+ # @return [String]
5379
+ #
5380
+ # @!attribute [rw] negative_color
5381
+ # The color of the negative data bar.
5382
+ # @return [String]
5383
+ #
5384
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataBarsOptions AWS API Documentation
5385
+ #
5386
+ class DataBarsOptions < Struct.new(
5387
+ :field_id,
5388
+ :positive_color,
5389
+ :negative_color)
5390
+ SENSITIVE = []
5391
+ include Aws::Structure
5392
+ end
5393
+
5312
5394
  # Determines the color that is applied to a particular data value.
5313
5395
  #
5314
5396
  # @!attribute [rw] color
@@ -5570,6 +5652,48 @@ module Aws::QuickSight
5570
5652
  include Aws::Structure
5571
5653
  end
5572
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
+
5573
5697
  # Dataset.
5574
5698
  #
5575
5699
  # @!attribute [rw] arn
@@ -8028,6 +8152,25 @@ module Aws::QuickSight
8028
8152
  # The Amazon Web Services request ID for this operation.
8029
8153
  # @return [String]
8030
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
+ #
8031
8174
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDashboardDefinitionResponse AWS API Documentation
8032
8175
  #
8033
8176
  class DescribeDashboardDefinitionResponse < Struct.new(
@@ -8038,7 +8181,8 @@ module Aws::QuickSight
8038
8181
  :theme_arn,
8039
8182
  :definition,
8040
8183
  :status,
8041
- :request_id)
8184
+ :request_id,
8185
+ :dashboard_publish_options)
8042
8186
  SENSITIVE = []
8043
8187
  include Aws::Structure
8044
8188
  end
@@ -9539,7 +9683,10 @@ module Aws::QuickSight
9539
9683
  include Aws::Structure
9540
9684
  end
9541
9685
 
9686
+ # Determines if hidden fields are included in an exported dashboard.
9687
+ #
9542
9688
  # @!attribute [rw] availability_status
9689
+ # The status of the export hidden fields options of a dashbaord.
9543
9690
  # @return [String]
9544
9691
  #
9545
9692
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ExportHiddenFieldsOption AWS API Documentation
@@ -9564,6 +9711,21 @@ module Aws::QuickSight
9564
9711
  include Aws::Structure
9565
9712
  end
9566
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
+
9567
9729
  # The setup for the detailed tooltip.
9568
9730
  #
9569
9731
  # @!attribute [rw] aggregation_visibility
@@ -15334,7 +15496,8 @@ module Aws::QuickSight
15334
15496
  # @return [String]
15335
15497
  #
15336
15498
  # @!attribute [rw] data_transforms
15337
- # Transform operations that act on this logical table.
15499
+ # Transform operations that act on this logical table. For this
15500
+ # structure to be valid, only one of the attributes can be non-null.
15338
15501
  # @return [Array<Types::TransformOperation>]
15339
15502
  #
15340
15503
  # @!attribute [rw] source
@@ -17675,6 +17838,225 @@ module Aws::QuickSight
17675
17838
  include Aws::Structure
17676
17839
  end
17677
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
+
17678
18060
  # The range ends label type of a data path label.
17679
18061
  #
17680
18062
  # @!attribute [rw] visibility
@@ -20038,6 +20420,20 @@ module Aws::QuickSight
20038
20420
  include Aws::Structure
20039
20421
  end
20040
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
+
20041
20437
  # The theme display options for sheets.
20042
20438
  #
20043
20439
  # @!attribute [rw] tile
@@ -20686,6 +21082,10 @@ module Aws::QuickSight
20686
21082
  # The paginated report options for a table visual.
20687
21083
  # @return [Types::TablePaginatedReportOptions]
20688
21084
  #
21085
+ # @!attribute [rw] table_inline_visualizations
21086
+ # A collection of inline visualizations to display within a chart.
21087
+ # @return [Array<Types::TableInlineVisualization>]
21088
+ #
20689
21089
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TableConfiguration AWS API Documentation
20690
21090
  #
20691
21091
  class TableConfiguration < Struct.new(
@@ -20694,7 +21094,8 @@ module Aws::QuickSight
20694
21094
  :table_options,
20695
21095
  :total_options,
20696
21096
  :field_options,
20697
- :paginated_report_options)
21097
+ :paginated_report_options,
21098
+ :table_inline_visualizations)
20698
21099
  SENSITIVE = []
20699
21100
  include Aws::Structure
20700
21101
  end
@@ -20884,6 +21285,21 @@ module Aws::QuickSight
20884
21285
  include Aws::Structure
20885
21286
  end
20886
21287
 
21288
+ # The inline visualization of a specific type to display within a chart.
21289
+ #
21290
+ # @!attribute [rw] data_bars
21291
+ # The configuration of the inline visualization of the data bars
21292
+ # within a chart.
21293
+ # @return [Types::DataBarsOptions]
21294
+ #
21295
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TableInlineVisualization AWS API Documentation
21296
+ #
21297
+ class TableInlineVisualization < Struct.new(
21298
+ :data_bars)
21299
+ SENSITIVE = []
21300
+ include Aws::Structure
21301
+ end
21302
+
20887
21303
  # The table options for a table visual.
20888
21304
  #
20889
21305
  # @!attribute [rw] orientation
@@ -21241,6 +21657,7 @@ module Aws::QuickSight
21241
21657
  # @return [String]
21242
21658
  #
21243
21659
  # @!attribute [rw] violated_entities
21660
+ # An error path that shows which entities caused the template error.
21244
21661
  # @return [Array<Types::Entity>]
21245
21662
  #
21246
21663
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TemplateError AWS API Documentation
@@ -21362,7 +21779,21 @@ module Aws::QuickSight
21362
21779
  # @return [Integer]
21363
21780
  #
21364
21781
  # @!attribute [rw] status
21365
- # The HTTP status of the request.
21782
+ # The status that is associated with the template.
21783
+ #
21784
+ # * `CREATION_IN_PROGRESS`
21785
+ #
21786
+ # * `CREATION_SUCCESSFUL`
21787
+ #
21788
+ # * `CREATION_FAILED`
21789
+ #
21790
+ # * `UPDATE_IN_PROGRESS`
21791
+ #
21792
+ # * `UPDATE_SUCCESSFUL`
21793
+ #
21794
+ # * `UPDATE_FAILED`
21795
+ #
21796
+ # * `DELETED`
21366
21797
  # @return [String]
21367
21798
  #
21368
21799
  # @!attribute [rw] data_set_configurations
@@ -25007,6 +25438,17 @@ module Aws::QuickSight
25007
25438
  # An empty visual.
25008
25439
  # @return [Types::EmptyVisual]
25009
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
+ #
25010
25452
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Visual AWS API Documentation
25011
25453
  #
25012
25454
  class Visual < Struct.new(
@@ -25031,7 +25473,22 @@ module Aws::QuickSight
25031
25473
  :insight_visual,
25032
25474
  :sankey_diagram_visual,
25033
25475
  :custom_content_visual,
25034
- :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)
25035
25492
  SENSITIVE = []
25036
25493
  include Aws::Structure
25037
25494
  end
@@ -25115,6 +25572,20 @@ module Aws::QuickSight
25115
25572
  include Aws::Structure
25116
25573
  end
25117
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
+
25118
25589
  # The visual display options for the visual palette.
25119
25590
  #
25120
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.73.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.73.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-18 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