aws-sdk-quicksight 1.93.0 → 1.94.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: 310e932de19c2340aa0525768e024bdec91d34b75cde9120028f787a4700a420
4
- data.tar.gz: b84bff7c269e5cedfbbceeac2eb2ae33e456f9a9627899d0360afa40186ea8a6
3
+ metadata.gz: 737941c24d1886357a50a7afcfe67e940b17d80a80f24c4082edbe82e5d80414
4
+ data.tar.gz: ed7458278c277c331c931031328fe2dec4543ad1518410b20118f43e45fd4110
5
5
  SHA512:
6
- metadata.gz: 239ba67f78005bc95f96cd0f387fbddfb9c752ee8c53c645df0aa7cad62ce5b262556bf738a80976fb4252cf9f0c8764eed47c9287469ce59201a476e1608ae3
7
- data.tar.gz: 5bb413b4e5d56fc80aaf6f6abdff1f009fb93eca0827aeed937b2944755d901320d1a65de4d3a44af12cefadc9720002d95d9aec4aa8e61e4441f2bc4a8de96d
6
+ metadata.gz: 8e30d029c727f838ad0b5de124efe77103f3b8ca3d6b4ed944651d9b83c55646b0e1080cee8b4305b3553a8df7e84114933b5efda1c1ffcc849c49df7a78ac5b
7
+ data.tar.gz: 8f81f10750ef042787dd38a68b3cb14cd04751bba97599f2274d600756ae6a2daaae025ce6f34412dff84779d56c7f3c06ad858bc9657933cb0a5866a1c7b994
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.94.0 (2023-10-19)
5
+ ------------------
6
+
7
+ * Feature - This release adds the following: 1) Trino and Starburst Database Connectors 2) Custom total for tables and pivot tables 3) Enable restricted folders 4) Add rolling dates for time equality filters 5) Refine DataPathValue and introduce DataPathType 6) Add SeriesType to ReferenceLineDataConfiguration
8
+
4
9
  1.93.0 (2023-10-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.93.0
1
+ 1.94.0
@@ -780,6 +780,10 @@ module Aws::QuickSight
780
780
  # definition objects. This skips the validation step for specific
781
781
  # errors.
782
782
  #
783
+ # @option params [Array<String>] :folder_arns
784
+ # When you create the analysis, Amazon QuickSight adds the analysis to
785
+ # these folders.
786
+ #
783
787
  # @return [Types::CreateAnalysisResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
784
788
  #
785
789
  # * {Types::CreateAnalysisResponse#arn #arn} => String
@@ -901,6 +905,10 @@ module Aws::QuickSight
901
905
  # definition objects. This option skips the validation step for specific
902
906
  # errors.
903
907
  #
908
+ # @option params [Array<String>] :folder_arns
909
+ # When you create the dashboard, Amazon QuickSight adds the dashboard to
910
+ # these folders.
911
+ #
904
912
  # @return [Types::CreateDashboardResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
905
913
  #
906
914
  # * {Types::CreateDashboardResponse#arn #arn} => String
@@ -986,6 +994,10 @@ module Aws::QuickSight
986
994
  # @option params [Array<Types::DatasetParameter>] :dataset_parameters
987
995
  # The parameter declarations of the dataset.
988
996
  #
997
+ # @option params [Array<String>] :folder_arns
998
+ # When you create the dataset, Amazon QuickSight adds the dataset to
999
+ # these folders.
1000
+ #
989
1001
  # @return [Types::CreateDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
990
1002
  #
991
1003
  # * {Types::CreateDataSetResponse#arn #arn} => String
@@ -1214,6 +1226,7 @@ module Aws::QuickSight
1214
1226
  # },
1215
1227
  # },
1216
1228
  # ],
1229
+ # folder_arns: ["Arn"],
1217
1230
  # })
1218
1231
  #
1219
1232
  # @example Response structure
@@ -1276,6 +1289,10 @@ module Aws::QuickSight
1276
1289
  # Contains a map of the key-value pairs for the resource tag or tags
1277
1290
  # assigned to the data source.
1278
1291
  #
1292
+ # @option params [Array<String>] :folder_arns
1293
+ # When you create the data source, Amazon QuickSight adds the data
1294
+ # source to these folders.
1295
+ #
1279
1296
  # @return [Types::CreateDataSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1280
1297
  #
1281
1298
  # * {Types::CreateDataSourceResponse#arn #arn} => String
@@ -1401,6 +1418,17 @@ module Aws::QuickSight
1401
1418
  # port: 1, # required
1402
1419
  # sql_endpoint_path: "SqlEndpointPath", # required
1403
1420
  # },
1421
+ # starburst_parameters: {
1422
+ # host: "Host", # required
1423
+ # port: 1, # required
1424
+ # catalog: "Catalog", # required
1425
+ # product_type: "GALAXY", # accepts GALAXY, ENTERPRISE
1426
+ # },
1427
+ # trino_parameters: {
1428
+ # host: "Host", # required
1429
+ # port: 1, # required
1430
+ # catalog: "Catalog", # required
1431
+ # },
1404
1432
  # },
1405
1433
  # credentials: {
1406
1434
  # credential_pair: {
@@ -1517,6 +1545,17 @@ module Aws::QuickSight
1517
1545
  # port: 1, # required
1518
1546
  # sql_endpoint_path: "SqlEndpointPath", # required
1519
1547
  # },
1548
+ # starburst_parameters: {
1549
+ # host: "Host", # required
1550
+ # port: 1, # required
1551
+ # catalog: "Catalog", # required
1552
+ # product_type: "GALAXY", # accepts GALAXY, ENTERPRISE
1553
+ # },
1554
+ # trino_parameters: {
1555
+ # host: "Host", # required
1556
+ # port: 1, # required
1557
+ # catalog: "Catalog", # required
1558
+ # },
1520
1559
  # },
1521
1560
  # ],
1522
1561
  # },
@@ -1541,6 +1580,7 @@ module Aws::QuickSight
1541
1580
  # value: "TagValue", # required
1542
1581
  # },
1543
1582
  # ],
1583
+ # folder_arns: ["Arn"],
1544
1584
  # })
1545
1585
  #
1546
1586
  # @example Response structure
@@ -1607,7 +1647,7 @@ module Aws::QuickSight
1607
1647
  # aws_account_id: "AwsAccountId", # required
1608
1648
  # folder_id: "RestrictiveResourceId", # required
1609
1649
  # name: "FolderName",
1610
- # folder_type: "SHARED", # accepts SHARED
1650
+ # folder_type: "SHARED", # accepts SHARED, RESTRICTED
1611
1651
  # parent_folder_arn: "Arn",
1612
1652
  # permissions: [
1613
1653
  # {
@@ -4374,6 +4414,13 @@ module Aws::QuickSight
4374
4414
  # resp.override_parameters.data_sources[0].data_source_parameters.databricks_parameters.host #=> String
4375
4415
  # resp.override_parameters.data_sources[0].data_source_parameters.databricks_parameters.port #=> Integer
4376
4416
  # resp.override_parameters.data_sources[0].data_source_parameters.databricks_parameters.sql_endpoint_path #=> String
4417
+ # resp.override_parameters.data_sources[0].data_source_parameters.starburst_parameters.host #=> String
4418
+ # resp.override_parameters.data_sources[0].data_source_parameters.starburst_parameters.port #=> Integer
4419
+ # resp.override_parameters.data_sources[0].data_source_parameters.starburst_parameters.catalog #=> String
4420
+ # resp.override_parameters.data_sources[0].data_source_parameters.starburst_parameters.product_type #=> String, one of "GALAXY", "ENTERPRISE"
4421
+ # resp.override_parameters.data_sources[0].data_source_parameters.trino_parameters.host #=> String
4422
+ # resp.override_parameters.data_sources[0].data_source_parameters.trino_parameters.port #=> Integer
4423
+ # resp.override_parameters.data_sources[0].data_source_parameters.trino_parameters.catalog #=> String
4377
4424
  # resp.override_parameters.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
4378
4425
  # resp.override_parameters.data_sources[0].ssl_properties.disable_ssl #=> Boolean
4379
4426
  # resp.override_parameters.data_sources[0].credentials.credential_pair.username #=> String
@@ -5084,6 +5131,13 @@ module Aws::QuickSight
5084
5131
  # resp.data_source.data_source_parameters.databricks_parameters.host #=> String
5085
5132
  # resp.data_source.data_source_parameters.databricks_parameters.port #=> Integer
5086
5133
  # resp.data_source.data_source_parameters.databricks_parameters.sql_endpoint_path #=> String
5134
+ # resp.data_source.data_source_parameters.starburst_parameters.host #=> String
5135
+ # resp.data_source.data_source_parameters.starburst_parameters.port #=> Integer
5136
+ # resp.data_source.data_source_parameters.starburst_parameters.catalog #=> String
5137
+ # resp.data_source.data_source_parameters.starburst_parameters.product_type #=> String, one of "GALAXY", "ENTERPRISE"
5138
+ # resp.data_source.data_source_parameters.trino_parameters.host #=> String
5139
+ # resp.data_source.data_source_parameters.trino_parameters.port #=> Integer
5140
+ # resp.data_source.data_source_parameters.trino_parameters.catalog #=> String
5087
5141
  # resp.data_source.alternate_data_source_parameters #=> Array
5088
5142
  # resp.data_source.alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
5089
5143
  # resp.data_source.alternate_data_source_parameters[0].athena_parameters.work_group #=> String
@@ -5145,6 +5199,13 @@ module Aws::QuickSight
5145
5199
  # resp.data_source.alternate_data_source_parameters[0].databricks_parameters.host #=> String
5146
5200
  # resp.data_source.alternate_data_source_parameters[0].databricks_parameters.port #=> Integer
5147
5201
  # resp.data_source.alternate_data_source_parameters[0].databricks_parameters.sql_endpoint_path #=> String
5202
+ # resp.data_source.alternate_data_source_parameters[0].starburst_parameters.host #=> String
5203
+ # resp.data_source.alternate_data_source_parameters[0].starburst_parameters.port #=> Integer
5204
+ # resp.data_source.alternate_data_source_parameters[0].starburst_parameters.catalog #=> String
5205
+ # resp.data_source.alternate_data_source_parameters[0].starburst_parameters.product_type #=> String, one of "GALAXY", "ENTERPRISE"
5206
+ # resp.data_source.alternate_data_source_parameters[0].trino_parameters.host #=> String
5207
+ # resp.data_source.alternate_data_source_parameters[0].trino_parameters.port #=> Integer
5208
+ # resp.data_source.alternate_data_source_parameters[0].trino_parameters.catalog #=> String
5148
5209
  # resp.data_source.vpc_connection_properties.vpc_connection_arn #=> String
5149
5210
  # resp.data_source.ssl_properties.disable_ssl #=> Boolean
5150
5211
  # resp.data_source.error_info.type #=> String, one of "ACCESS_DENIED", "COPY_SOURCE_NOT_FOUND", "TIMEOUT", "ENGINE_VERSION_NOT_SUPPORTED", "UNKNOWN_HOST", "GENERIC_SQL_FAILURE", "CONFLICT", "UNKNOWN"
@@ -5233,7 +5294,7 @@ module Aws::QuickSight
5233
5294
  # resp.folder.folder_id #=> String
5234
5295
  # resp.folder.arn #=> String
5235
5296
  # resp.folder.name #=> String
5236
- # resp.folder.folder_type #=> String, one of "SHARED"
5297
+ # resp.folder.folder_type #=> String, one of "SHARED", "RESTRICTED"
5237
5298
  # resp.folder.folder_path #=> Array
5238
5299
  # resp.folder.folder_path[0] #=> String
5239
5300
  # resp.folder.created_time #=> Time
@@ -7473,6 +7534,13 @@ module Aws::QuickSight
7473
7534
  # resp.data_sources[0].data_source_parameters.databricks_parameters.host #=> String
7474
7535
  # resp.data_sources[0].data_source_parameters.databricks_parameters.port #=> Integer
7475
7536
  # resp.data_sources[0].data_source_parameters.databricks_parameters.sql_endpoint_path #=> String
7537
+ # resp.data_sources[0].data_source_parameters.starburst_parameters.host #=> String
7538
+ # resp.data_sources[0].data_source_parameters.starburst_parameters.port #=> Integer
7539
+ # resp.data_sources[0].data_source_parameters.starburst_parameters.catalog #=> String
7540
+ # resp.data_sources[0].data_source_parameters.starburst_parameters.product_type #=> String, one of "GALAXY", "ENTERPRISE"
7541
+ # resp.data_sources[0].data_source_parameters.trino_parameters.host #=> String
7542
+ # resp.data_sources[0].data_source_parameters.trino_parameters.port #=> Integer
7543
+ # resp.data_sources[0].data_source_parameters.trino_parameters.catalog #=> String
7476
7544
  # resp.data_sources[0].alternate_data_source_parameters #=> Array
7477
7545
  # resp.data_sources[0].alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
7478
7546
  # resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.work_group #=> String
@@ -7534,6 +7602,13 @@ module Aws::QuickSight
7534
7602
  # resp.data_sources[0].alternate_data_source_parameters[0].databricks_parameters.host #=> String
7535
7603
  # resp.data_sources[0].alternate_data_source_parameters[0].databricks_parameters.port #=> Integer
7536
7604
  # resp.data_sources[0].alternate_data_source_parameters[0].databricks_parameters.sql_endpoint_path #=> String
7605
+ # resp.data_sources[0].alternate_data_source_parameters[0].starburst_parameters.host #=> String
7606
+ # resp.data_sources[0].alternate_data_source_parameters[0].starburst_parameters.port #=> Integer
7607
+ # resp.data_sources[0].alternate_data_source_parameters[0].starburst_parameters.catalog #=> String
7608
+ # resp.data_sources[0].alternate_data_source_parameters[0].starburst_parameters.product_type #=> String, one of "GALAXY", "ENTERPRISE"
7609
+ # resp.data_sources[0].alternate_data_source_parameters[0].trino_parameters.host #=> String
7610
+ # resp.data_sources[0].alternate_data_source_parameters[0].trino_parameters.port #=> Integer
7611
+ # resp.data_sources[0].alternate_data_source_parameters[0].trino_parameters.catalog #=> String
7537
7612
  # resp.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
7538
7613
  # resp.data_sources[0].ssl_properties.disable_ssl #=> Boolean
7539
7614
  # resp.data_sources[0].error_info.type #=> String, one of "ACCESS_DENIED", "COPY_SOURCE_NOT_FOUND", "TIMEOUT", "ENGINE_VERSION_NOT_SUPPORTED", "UNKNOWN_HOST", "GENERIC_SQL_FAILURE", "CONFLICT", "UNKNOWN"
@@ -7639,7 +7714,7 @@ module Aws::QuickSight
7639
7714
  # resp.folder_summary_list[0].arn #=> String
7640
7715
  # resp.folder_summary_list[0].folder_id #=> String
7641
7716
  # resp.folder_summary_list[0].name #=> String
7642
- # resp.folder_summary_list[0].folder_type #=> String, one of "SHARED"
7717
+ # resp.folder_summary_list[0].folder_type #=> String, one of "SHARED", "RESTRICTED"
7643
7718
  # resp.folder_summary_list[0].created_time #=> Time
7644
7719
  # resp.folder_summary_list[0].last_updated_time #=> Time
7645
7720
  # resp.folder_summary_list[0].sharing_model #=> String, one of "ACCOUNT", "NAMESPACE"
@@ -9296,7 +9371,7 @@ module Aws::QuickSight
9296
9371
  # resp.folder_summary_list[0].arn #=> String
9297
9372
  # resp.folder_summary_list[0].folder_id #=> String
9298
9373
  # resp.folder_summary_list[0].name #=> String
9299
- # resp.folder_summary_list[0].folder_type #=> String, one of "SHARED"
9374
+ # resp.folder_summary_list[0].folder_type #=> String, one of "SHARED", "RESTRICTED"
9300
9375
  # resp.folder_summary_list[0].created_time #=> Time
9301
9376
  # resp.folder_summary_list[0].last_updated_time #=> Time
9302
9377
  # resp.folder_summary_list[0].sharing_model #=> String, one of "ACCOUNT", "NAMESPACE"
@@ -9711,6 +9786,17 @@ module Aws::QuickSight
9711
9786
  # port: 1, # required
9712
9787
  # sql_endpoint_path: "SqlEndpointPath", # required
9713
9788
  # },
9789
+ # starburst_parameters: {
9790
+ # host: "Host", # required
9791
+ # port: 1, # required
9792
+ # catalog: "Catalog", # required
9793
+ # product_type: "GALAXY", # accepts GALAXY, ENTERPRISE
9794
+ # },
9795
+ # trino_parameters: {
9796
+ # host: "Host", # required
9797
+ # port: 1, # required
9798
+ # catalog: "Catalog", # required
9799
+ # },
9714
9800
  # },
9715
9801
  # vpc_connection_properties: {
9716
9802
  # vpc_connection_arn: "Arn", # required
@@ -10985,6 +11071,17 @@ module Aws::QuickSight
10985
11071
  # port: 1, # required
10986
11072
  # sql_endpoint_path: "SqlEndpointPath", # required
10987
11073
  # },
11074
+ # starburst_parameters: {
11075
+ # host: "Host", # required
11076
+ # port: 1, # required
11077
+ # catalog: "Catalog", # required
11078
+ # product_type: "GALAXY", # accepts GALAXY, ENTERPRISE
11079
+ # },
11080
+ # trino_parameters: {
11081
+ # host: "Host", # required
11082
+ # port: 1, # required
11083
+ # catalog: "Catalog", # required
11084
+ # },
10988
11085
  # },
10989
11086
  # credentials: {
10990
11087
  # credential_pair: {
@@ -11101,6 +11198,17 @@ module Aws::QuickSight
11101
11198
  # port: 1, # required
11102
11199
  # sql_endpoint_path: "SqlEndpointPath", # required
11103
11200
  # },
11201
+ # starburst_parameters: {
11202
+ # host: "Host", # required
11203
+ # port: 1, # required
11204
+ # catalog: "Catalog", # required
11205
+ # product_type: "GALAXY", # accepts GALAXY, ENTERPRISE
11206
+ # },
11207
+ # trino_parameters: {
11208
+ # host: "Host", # required
11209
+ # port: 1, # required
11210
+ # catalog: "Catalog", # required
11211
+ # },
11104
11212
  # },
11105
11213
  # ],
11106
11214
  # },
@@ -12623,7 +12731,7 @@ module Aws::QuickSight
12623
12731
  params: params,
12624
12732
  config: config)
12625
12733
  context[:gem_name] = 'aws-sdk-quicksight'
12626
- context[:gem_version] = '1.93.0'
12734
+ context[:gem_version] = '1.94.0'
12627
12735
  Seahorse::Client::Request.new(handlers, context)
12628
12736
  end
12629
12737
 
@@ -379,6 +379,7 @@ module Aws::QuickSight
379
379
  DataPathColorList = Shapes::ListShape.new(name: 'DataPathColorList')
380
380
  DataPathLabelType = Shapes::StructureShape.new(name: 'DataPathLabelType')
381
381
  DataPathSort = Shapes::StructureShape.new(name: 'DataPathSort')
382
+ DataPathType = Shapes::StructureShape.new(name: 'DataPathType')
382
383
  DataPathValue = Shapes::StructureShape.new(name: 'DataPathValue')
383
384
  DataPathValueList = Shapes::ListShape.new(name: 'DataPathValueList')
384
385
  DataPointDrillUpDownOption = Shapes::StructureShape.new(name: 'DataPointDrillUpDownOption')
@@ -682,6 +683,7 @@ module Aws::QuickSight
682
683
  FilterVisualScope = Shapes::StringShape.new(name: 'FilterVisualScope')
683
684
  FilteredVisualsList = Shapes::ListShape.new(name: 'FilteredVisualsList')
684
685
  Folder = Shapes::StructureShape.new(name: 'Folder')
686
+ FolderArnList = Shapes::ListShape.new(name: 'FolderArnList')
685
687
  FolderColumnList = Shapes::ListShape.new(name: 'FolderColumnList')
686
688
  FolderFilterAttribute = Shapes::StringShape.new(name: 'FolderFilterAttribute')
687
689
  FolderMember = Shapes::StructureShape.new(name: 'FolderMember')
@@ -1095,6 +1097,7 @@ module Aws::QuickSight
1095
1097
  PivotTableConfiguration = Shapes::StructureShape.new(name: 'PivotTableConfiguration')
1096
1098
  PivotTableDataPathOption = Shapes::StructureShape.new(name: 'PivotTableDataPathOption')
1097
1099
  PivotTableDataPathOptionList = Shapes::ListShape.new(name: 'PivotTableDataPathOptionList')
1100
+ PivotTableDataPathType = Shapes::StringShape.new(name: 'PivotTableDataPathType')
1098
1101
  PivotTableDimensionList = Shapes::ListShape.new(name: 'PivotTableDimensionList')
1099
1102
  PivotTableFieldCollapseState = Shapes::StringShape.new(name: 'PivotTableFieldCollapseState')
1100
1103
  PivotTableFieldCollapseStateOption = Shapes::StructureShape.new(name: 'PivotTableFieldCollapseStateOption')
@@ -1170,6 +1173,7 @@ module Aws::QuickSight
1170
1173
  ReferenceLineLabelVerticalPosition = Shapes::StringShape.new(name: 'ReferenceLineLabelVerticalPosition')
1171
1174
  ReferenceLineList = Shapes::ListShape.new(name: 'ReferenceLineList')
1172
1175
  ReferenceLinePatternType = Shapes::StringShape.new(name: 'ReferenceLinePatternType')
1176
+ ReferenceLineSeriesType = Shapes::StringShape.new(name: 'ReferenceLineSeriesType')
1173
1177
  ReferenceLineStaticDataConfiguration = Shapes::StructureShape.new(name: 'ReferenceLineStaticDataConfiguration')
1174
1178
  ReferenceLineStyleConfiguration = Shapes::StructureShape.new(name: 'ReferenceLineStyleConfiguration')
1175
1179
  ReferenceLineValueLabelConfiguration = Shapes::StructureShape.new(name: 'ReferenceLineValueLabelConfiguration')
@@ -1339,6 +1343,7 @@ module Aws::QuickSight
1339
1343
  SimpleAttributeAggregationFunction = Shapes::StringShape.new(name: 'SimpleAttributeAggregationFunction')
1340
1344
  SimpleClusterMarker = Shapes::StructureShape.new(name: 'SimpleClusterMarker')
1341
1345
  SimpleNumericalAggregationFunction = Shapes::StringShape.new(name: 'SimpleNumericalAggregationFunction')
1346
+ SimpleTotalAggregationFunction = Shapes::StringShape.new(name: 'SimpleTotalAggregationFunction')
1342
1347
  SiteBaseUrl = Shapes::StringShape.new(name: 'SiteBaseUrl')
1343
1348
  SliderControlDisplayOptions = Shapes::StructureShape.new(name: 'SliderControlDisplayOptions')
1344
1349
  SmallMultiplesAxisPlacement = Shapes::StringShape.new(name: 'SmallMultiplesAxisPlacement')
@@ -1383,6 +1388,8 @@ module Aws::QuickSight
1383
1388
  SqlQuery = Shapes::StringShape.new(name: 'SqlQuery')
1384
1389
  SqlServerParameters = Shapes::StructureShape.new(name: 'SqlServerParameters')
1385
1390
  SslProperties = Shapes::StructureShape.new(name: 'SslProperties')
1391
+ StarburstParameters = Shapes::StructureShape.new(name: 'StarburstParameters')
1392
+ StarburstProductType = Shapes::StringShape.new(name: 'StarburstProductType')
1386
1393
  StartAssetBundleExportJobRequest = Shapes::StructureShape.new(name: 'StartAssetBundleExportJobRequest')
1387
1394
  StartAssetBundleExportJobResponse = Shapes::StructureShape.new(name: 'StartAssetBundleExportJobResponse')
1388
1395
  StartAssetBundleImportJobRequest = Shapes::StructureShape.new(name: 'StartAssetBundleImportJobRequest')
@@ -1551,6 +1558,9 @@ module Aws::QuickSight
1551
1558
  TopicSummary = Shapes::StructureShape.new(name: 'TopicSummary')
1552
1559
  TopicTimeGranularity = Shapes::StringShape.new(name: 'TopicTimeGranularity')
1553
1560
  TotalAggregationComputation = Shapes::StructureShape.new(name: 'TotalAggregationComputation')
1561
+ TotalAggregationFunction = Shapes::StructureShape.new(name: 'TotalAggregationFunction')
1562
+ TotalAggregationOption = Shapes::StructureShape.new(name: 'TotalAggregationOption')
1563
+ TotalAggregationOptionList = Shapes::ListShape.new(name: 'TotalAggregationOptionList')
1554
1564
  TotalOptions = Shapes::StructureShape.new(name: 'TotalOptions')
1555
1565
  TransformOperation = Shapes::StructureShape.new(name: 'TransformOperation')
1556
1566
  TransformOperationList = Shapes::ListShape.new(name: 'TransformOperationList')
@@ -1562,6 +1572,7 @@ module Aws::QuickSight
1562
1572
  TreeMapSortConfiguration = Shapes::StructureShape.new(name: 'TreeMapSortConfiguration')
1563
1573
  TreeMapVisual = Shapes::StructureShape.new(name: 'TreeMapVisual')
1564
1574
  TrendArrowOptions = Shapes::StructureShape.new(name: 'TrendArrowOptions')
1575
+ TrinoParameters = Shapes::StructureShape.new(name: 'TrinoParameters')
1565
1576
  TwitterParameters = Shapes::StructureShape.new(name: 'TwitterParameters')
1566
1577
  TypeCastFormat = Shapes::StringShape.new(name: 'TypeCastFormat')
1567
1578
  TypeParameters = Shapes::MapShape.new(name: 'TypeParameters')
@@ -2565,6 +2576,7 @@ module Aws::QuickSight
2565
2576
  CreateAnalysisRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
2566
2577
  CreateAnalysisRequest.add_member(:definition, Shapes::ShapeRef.new(shape: AnalysisDefinition, location_name: "Definition"))
2567
2578
  CreateAnalysisRequest.add_member(:validation_strategy, Shapes::ShapeRef.new(shape: ValidationStrategy, location_name: "ValidationStrategy"))
2579
+ CreateAnalysisRequest.add_member(:folder_arns, Shapes::ShapeRef.new(shape: FolderArnList, location_name: "FolderArns"))
2568
2580
  CreateAnalysisRequest.struct_class = Types::CreateAnalysisRequest
2569
2581
 
2570
2582
  CreateAnalysisResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -2589,6 +2601,7 @@ module Aws::QuickSight
2589
2601
  CreateDashboardRequest.add_member(:theme_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ThemeArn"))
2590
2602
  CreateDashboardRequest.add_member(:definition, Shapes::ShapeRef.new(shape: DashboardVersionDefinition, location_name: "Definition"))
2591
2603
  CreateDashboardRequest.add_member(:validation_strategy, Shapes::ShapeRef.new(shape: ValidationStrategy, location_name: "ValidationStrategy"))
2604
+ CreateDashboardRequest.add_member(:folder_arns, Shapes::ShapeRef.new(shape: FolderArnList, location_name: "FolderArns"))
2592
2605
  CreateDashboardRequest.struct_class = Types::CreateDashboardRequest
2593
2606
 
2594
2607
  CreateDashboardResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -2614,6 +2627,7 @@ module Aws::QuickSight
2614
2627
  CreateDataSetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
2615
2628
  CreateDataSetRequest.add_member(:data_set_usage_configuration, Shapes::ShapeRef.new(shape: DataSetUsageConfiguration, location_name: "DataSetUsageConfiguration"))
2616
2629
  CreateDataSetRequest.add_member(:dataset_parameters, Shapes::ShapeRef.new(shape: DatasetParameterList, location_name: "DatasetParameters"))
2630
+ CreateDataSetRequest.add_member(:folder_arns, Shapes::ShapeRef.new(shape: FolderArnList, location_name: "FolderArns"))
2617
2631
  CreateDataSetRequest.struct_class = Types::CreateDataSetRequest
2618
2632
 
2619
2633
  CreateDataSetResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -2634,6 +2648,7 @@ module Aws::QuickSight
2634
2648
  CreateDataSourceRequest.add_member(:vpc_connection_properties, Shapes::ShapeRef.new(shape: VpcConnectionProperties, location_name: "VpcConnectionProperties"))
2635
2649
  CreateDataSourceRequest.add_member(:ssl_properties, Shapes::ShapeRef.new(shape: SslProperties, location_name: "SslProperties"))
2636
2650
  CreateDataSourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
2651
+ CreateDataSourceRequest.add_member(:folder_arns, Shapes::ShapeRef.new(shape: FolderArnList, location_name: "FolderArns"))
2637
2652
  CreateDataSourceRequest.struct_class = Types::CreateDataSourceRequest
2638
2653
 
2639
2654
  CreateDataSourceResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -3089,8 +3104,12 @@ module Aws::QuickSight
3089
3104
  DataPathSort.add_member(:sort_paths, Shapes::ShapeRef.new(shape: DataPathValueList, required: true, location_name: "SortPaths"))
3090
3105
  DataPathSort.struct_class = Types::DataPathSort
3091
3106
 
3092
- DataPathValue.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "FieldId"))
3093
- DataPathValue.add_member(:field_value, Shapes::ShapeRef.new(shape: FieldValue, required: true, location_name: "FieldValue"))
3107
+ DataPathType.add_member(:pivot_table_data_path_type, Shapes::ShapeRef.new(shape: PivotTableDataPathType, location_name: "PivotTableDataPathType"))
3108
+ DataPathType.struct_class = Types::DataPathType
3109
+
3110
+ DataPathValue.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, location_name: "FieldId"))
3111
+ DataPathValue.add_member(:field_value, Shapes::ShapeRef.new(shape: FieldValue, location_name: "FieldValue"))
3112
+ DataPathValue.add_member(:data_path_type, Shapes::ShapeRef.new(shape: DataPathType, location_name: "DataPathType"))
3094
3113
  DataPathValue.struct_class = Types::DataPathValue
3095
3114
 
3096
3115
  DataPathValueList.member = Shapes::ShapeRef.new(shape: DataPathValue)
@@ -3223,6 +3242,8 @@ module Aws::QuickSight
3223
3242
  DataSourceParameters.add_member(:amazon_open_search_parameters, Shapes::ShapeRef.new(shape: AmazonOpenSearchParameters, location_name: "AmazonOpenSearchParameters"))
3224
3243
  DataSourceParameters.add_member(:exasol_parameters, Shapes::ShapeRef.new(shape: ExasolParameters, location_name: "ExasolParameters"))
3225
3244
  DataSourceParameters.add_member(:databricks_parameters, Shapes::ShapeRef.new(shape: DatabricksParameters, location_name: "DatabricksParameters"))
3245
+ DataSourceParameters.add_member(:starburst_parameters, Shapes::ShapeRef.new(shape: StarburstParameters, location_name: "StarburstParameters"))
3246
+ DataSourceParameters.add_member(:trino_parameters, Shapes::ShapeRef.new(shape: TrinoParameters, location_name: "TrinoParameters"))
3226
3247
  DataSourceParameters.struct_class = Types::DataSourceParameters
3227
3248
 
3228
3249
  DataSourceParametersList.member = Shapes::ShapeRef.new(shape: DataSourceParameters)
@@ -4407,6 +4428,8 @@ module Aws::QuickSight
4407
4428
  Folder.add_member(:sharing_model, Shapes::ShapeRef.new(shape: SharingModel, location_name: "SharingModel"))
4408
4429
  Folder.struct_class = Types::Folder
4409
4430
 
4431
+ FolderArnList.member = Shapes::ShapeRef.new(shape: Arn)
4432
+
4410
4433
  FolderColumnList.member = Shapes::ShapeRef.new(shape: String)
4411
4434
 
4412
4435
  FolderMember.add_member(:member_id, Shapes::ShapeRef.new(shape: RestrictiveResourceId, location_name: "MemberId"))
@@ -6015,6 +6038,7 @@ module Aws::QuickSight
6015
6038
  PivotTotalOptions.add_member(:total_cell_style, Shapes::ShapeRef.new(shape: TableCellStyle, location_name: "TotalCellStyle"))
6016
6039
  PivotTotalOptions.add_member(:value_cell_style, Shapes::ShapeRef.new(shape: TableCellStyle, location_name: "ValueCellStyle"))
6017
6040
  PivotTotalOptions.add_member(:metric_header_cell_style, Shapes::ShapeRef.new(shape: TableCellStyle, location_name: "MetricHeaderCellStyle"))
6041
+ PivotTotalOptions.add_member(:total_aggregation_options, Shapes::ShapeRef.new(shape: TotalAggregationOptionList, location_name: "TotalAggregationOptions"))
6018
6042
  PivotTotalOptions.struct_class = Types::PivotTotalOptions
6019
6043
 
6020
6044
  PostgreSqlParameters.add_member(:host, Shapes::ShapeRef.new(shape: Host, required: true, location_name: "Host"))
@@ -6152,6 +6176,7 @@ module Aws::QuickSight
6152
6176
  ReferenceLineDataConfiguration.add_member(:static_configuration, Shapes::ShapeRef.new(shape: ReferenceLineStaticDataConfiguration, location_name: "StaticConfiguration"))
6153
6177
  ReferenceLineDataConfiguration.add_member(:dynamic_configuration, Shapes::ShapeRef.new(shape: ReferenceLineDynamicDataConfiguration, location_name: "DynamicConfiguration"))
6154
6178
  ReferenceLineDataConfiguration.add_member(:axis_binding, Shapes::ShapeRef.new(shape: AxisBinding, location_name: "AxisBinding"))
6179
+ ReferenceLineDataConfiguration.add_member(:series_type, Shapes::ShapeRef.new(shape: ReferenceLineSeriesType, location_name: "SeriesType"))
6155
6180
  ReferenceLineDataConfiguration.struct_class = Types::ReferenceLineDataConfiguration
6156
6181
 
6157
6182
  ReferenceLineDynamicDataConfiguration.add_member(:column, Shapes::ShapeRef.new(shape: ColumnIdentifier, required: true, location_name: "Column"))
@@ -6790,6 +6815,12 @@ module Aws::QuickSight
6790
6815
  SslProperties.add_member(:disable_ssl, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisableSsl"))
6791
6816
  SslProperties.struct_class = Types::SslProperties
6792
6817
 
6818
+ StarburstParameters.add_member(:host, Shapes::ShapeRef.new(shape: Host, required: true, location_name: "Host"))
6819
+ StarburstParameters.add_member(:port, Shapes::ShapeRef.new(shape: Port, required: true, location_name: "Port"))
6820
+ StarburstParameters.add_member(:catalog, Shapes::ShapeRef.new(shape: Catalog, required: true, location_name: "Catalog"))
6821
+ StarburstParameters.add_member(:product_type, Shapes::ShapeRef.new(shape: StarburstProductType, location_name: "ProductType"))
6822
+ StarburstParameters.struct_class = Types::StarburstParameters
6823
+
6793
6824
  StartAssetBundleExportJobRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
6794
6825
  StartAssetBundleExportJobRequest.add_member(:asset_bundle_export_job_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "AssetBundleExportJobId"))
6795
6826
  StartAssetBundleExportJobRequest.add_member(:resource_arns, Shapes::ShapeRef.new(shape: AssetBundleResourceArns, required: true, location_name: "ResourceArns"))
@@ -7225,6 +7256,7 @@ module Aws::QuickSight
7225
7256
  TimeEqualityFilter.add_member(:value, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Value"))
7226
7257
  TimeEqualityFilter.add_member(:parameter_name, Shapes::ShapeRef.new(shape: ParameterName, location_name: "ParameterName"))
7227
7258
  TimeEqualityFilter.add_member(:time_granularity, Shapes::ShapeRef.new(shape: TimeGranularity, location_name: "TimeGranularity"))
7259
+ TimeEqualityFilter.add_member(:rolling_date, Shapes::ShapeRef.new(shape: RollingDateConfiguration, location_name: "RollingDate"))
7228
7260
  TimeEqualityFilter.struct_class = Types::TimeEqualityFilter
7229
7261
 
7230
7262
  TimeRangeDrillDownFilter.add_member(:column, Shapes::ShapeRef.new(shape: ColumnIdentifier, required: true, location_name: "Column"))
@@ -7427,11 +7459,21 @@ module Aws::QuickSight
7427
7459
  TotalAggregationComputation.add_member(:value, Shapes::ShapeRef.new(shape: MeasureField, location_name: "Value"))
7428
7460
  TotalAggregationComputation.struct_class = Types::TotalAggregationComputation
7429
7461
 
7462
+ TotalAggregationFunction.add_member(:simple_total_aggregation_function, Shapes::ShapeRef.new(shape: SimpleTotalAggregationFunction, location_name: "SimpleTotalAggregationFunction"))
7463
+ TotalAggregationFunction.struct_class = Types::TotalAggregationFunction
7464
+
7465
+ TotalAggregationOption.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "FieldId"))
7466
+ TotalAggregationOption.add_member(:total_aggregation_function, Shapes::ShapeRef.new(shape: TotalAggregationFunction, required: true, location_name: "TotalAggregationFunction"))
7467
+ TotalAggregationOption.struct_class = Types::TotalAggregationOption
7468
+
7469
+ TotalAggregationOptionList.member = Shapes::ShapeRef.new(shape: TotalAggregationOption)
7470
+
7430
7471
  TotalOptions.add_member(:totals_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "TotalsVisibility"))
7431
7472
  TotalOptions.add_member(:placement, Shapes::ShapeRef.new(shape: TableTotalsPlacement, location_name: "Placement"))
7432
7473
  TotalOptions.add_member(:scroll_status, Shapes::ShapeRef.new(shape: TableTotalsScrollStatus, location_name: "ScrollStatus"))
7433
7474
  TotalOptions.add_member(:custom_label, Shapes::ShapeRef.new(shape: String, location_name: "CustomLabel"))
7434
7475
  TotalOptions.add_member(:total_cell_style, Shapes::ShapeRef.new(shape: TableCellStyle, location_name: "TotalCellStyle"))
7476
+ TotalOptions.add_member(:total_aggregation_options, Shapes::ShapeRef.new(shape: TotalAggregationOptionList, location_name: "TotalAggregationOptions"))
7435
7477
  TotalOptions.struct_class = Types::TotalOptions
7436
7478
 
7437
7479
  TransformOperation.add_member(:project_operation, Shapes::ShapeRef.new(shape: ProjectOperation, location_name: "ProjectOperation"))
@@ -7484,6 +7526,11 @@ module Aws::QuickSight
7484
7526
  TrendArrowOptions.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
7485
7527
  TrendArrowOptions.struct_class = Types::TrendArrowOptions
7486
7528
 
7529
+ TrinoParameters.add_member(:host, Shapes::ShapeRef.new(shape: Host, required: true, location_name: "Host"))
7530
+ TrinoParameters.add_member(:port, Shapes::ShapeRef.new(shape: Port, required: true, location_name: "Port"))
7531
+ TrinoParameters.add_member(:catalog, Shapes::ShapeRef.new(shape: Catalog, required: true, location_name: "Catalog"))
7532
+ TrinoParameters.struct_class = Types::TrinoParameters
7533
+
7487
7534
  TwitterParameters.add_member(:query, Shapes::ShapeRef.new(shape: Query, required: true, location_name: "Query"))
7488
7535
  TwitterParameters.add_member(:max_rows, Shapes::ShapeRef.new(shape: PositiveInteger, required: true, location_name: "MaxRows"))
7489
7536
  TwitterParameters.struct_class = Types::TwitterParameters
@@ -32,7 +32,7 @@ module Aws::QuickSight
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://quicksight-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -4096,6 +4096,11 @@ module Aws::QuickSight
4096
4096
  # errors.
4097
4097
  # @return [Types::ValidationStrategy]
4098
4098
  #
4099
+ # @!attribute [rw] folder_arns
4100
+ # When you create the analysis, Amazon QuickSight adds the analysis to
4101
+ # these folders.
4102
+ # @return [Array<String>]
4103
+ #
4099
4104
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateAnalysisRequest AWS API Documentation
4100
4105
  #
4101
4106
  class CreateAnalysisRequest < Struct.new(
@@ -4108,7 +4113,8 @@ module Aws::QuickSight
4108
4113
  :theme_arn,
4109
4114
  :tags,
4110
4115
  :definition,
4111
- :validation_strategy)
4116
+ :validation_strategy,
4117
+ :folder_arns)
4112
4118
  SENSITIVE = []
4113
4119
  include Aws::Structure
4114
4120
  end
@@ -4257,6 +4263,11 @@ module Aws::QuickSight
4257
4263
  # specific errors.
4258
4264
  # @return [Types::ValidationStrategy]
4259
4265
  #
4266
+ # @!attribute [rw] folder_arns
4267
+ # When you create the dashboard, Amazon QuickSight adds the dashboard
4268
+ # to these folders.
4269
+ # @return [Array<String>]
4270
+ #
4260
4271
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDashboardRequest AWS API Documentation
4261
4272
  #
4262
4273
  class CreateDashboardRequest < Struct.new(
@@ -4271,7 +4282,8 @@ module Aws::QuickSight
4271
4282
  :dashboard_publish_options,
4272
4283
  :theme_arn,
4273
4284
  :definition,
4274
- :validation_strategy)
4285
+ :validation_strategy,
4286
+ :folder_arns)
4275
4287
  SENSITIVE = []
4276
4288
  include Aws::Structure
4277
4289
  end
@@ -4384,6 +4396,11 @@ module Aws::QuickSight
4384
4396
  # The parameter declarations of the dataset.
4385
4397
  # @return [Array<Types::DatasetParameter>]
4386
4398
  #
4399
+ # @!attribute [rw] folder_arns
4400
+ # When you create the dataset, Amazon QuickSight adds the dataset to
4401
+ # these folders.
4402
+ # @return [Array<String>]
4403
+ #
4387
4404
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDataSetRequest AWS API Documentation
4388
4405
  #
4389
4406
  class CreateDataSetRequest < Struct.new(
@@ -4401,7 +4418,8 @@ module Aws::QuickSight
4401
4418
  :column_level_permission_rules,
4402
4419
  :tags,
4403
4420
  :data_set_usage_configuration,
4404
- :dataset_parameters)
4421
+ :dataset_parameters,
4422
+ :folder_arns)
4405
4423
  SENSITIVE = []
4406
4424
  include Aws::Structure
4407
4425
  end
@@ -4496,6 +4514,11 @@ module Aws::QuickSight
4496
4514
  # assigned to the data source.
4497
4515
  # @return [Array<Types::Tag>]
4498
4516
  #
4517
+ # @!attribute [rw] folder_arns
4518
+ # When you create the data source, Amazon QuickSight adds the data
4519
+ # source to these folders.
4520
+ # @return [Array<String>]
4521
+ #
4499
4522
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDataSourceRequest AWS API Documentation
4500
4523
  #
4501
4524
  class CreateDataSourceRequest < Struct.new(
@@ -4508,7 +4531,8 @@ module Aws::QuickSight
4508
4531
  :permissions,
4509
4532
  :vpc_connection_properties,
4510
4533
  :ssl_properties,
4511
- :tags)
4534
+ :tags,
4535
+ :folder_arns)
4512
4536
  SENSITIVE = [:credentials]
4513
4537
  include Aws::Structure
4514
4538
  end
@@ -6869,6 +6893,35 @@ module Aws::QuickSight
6869
6893
  include Aws::Structure
6870
6894
  end
6871
6895
 
6896
+ # The type of the data path value.
6897
+ #
6898
+ # @!attribute [rw] pivot_table_data_path_type
6899
+ # The type of data path value utilized in a pivot table. Choose one of
6900
+ # the following options:
6901
+ #
6902
+ # * `HIERARCHY_ROWS_LAYOUT_COLUMN` - The type of data path for the
6903
+ # rows layout column, when `RowsLayout` is set to `HIERARCHY`.
6904
+ #
6905
+ # * `MULTIPLE_ROW_METRICS_COLUMN` - The type of data path for the
6906
+ # metric column when the row is set to Metric Placement.
6907
+ #
6908
+ # * `EMPTY_COLUMN_HEADER` - The type of data path for the column with
6909
+ # empty column header, when there is no field in `ColumnsFieldWell`
6910
+ # and the row is set to Metric Placement.
6911
+ #
6912
+ # * `COUNT_METRIC_COLUMN` - The type of data path for the column with
6913
+ # `COUNT` as the metric, when there is no field in the
6914
+ # `ValuesFieldWell`.
6915
+ # @return [String]
6916
+ #
6917
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataPathType AWS API Documentation
6918
+ #
6919
+ class DataPathType < Struct.new(
6920
+ :pivot_table_data_path_type)
6921
+ SENSITIVE = []
6922
+ include Aws::Structure
6923
+ end
6924
+
6872
6925
  # The data path that needs to be sorted.
6873
6926
  #
6874
6927
  # @!attribute [rw] field_id
@@ -6879,11 +6932,16 @@ module Aws::QuickSight
6879
6932
  # The actual value of the field that needs to be sorted.
6880
6933
  # @return [String]
6881
6934
  #
6935
+ # @!attribute [rw] data_path_type
6936
+ # The type configuration of the field.
6937
+ # @return [Types::DataPathType]
6938
+ #
6882
6939
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataPathValue AWS API Documentation
6883
6940
  #
6884
6941
  class DataPathValue < Struct.new(
6885
6942
  :field_id,
6886
- :field_value)
6943
+ :field_value,
6944
+ :data_path_type)
6887
6945
  SENSITIVE = [:field_value]
6888
6946
  include Aws::Structure
6889
6947
  end
@@ -7506,10 +7564,19 @@ module Aws::QuickSight
7506
7564
  # @return [Types::ExasolParameters]
7507
7565
  #
7508
7566
  # @!attribute [rw] databricks_parameters
7509
- # The required parameters that are needed to connect to a Databricks
7510
- # data source.
7567
+ # The parameters that are required to connect to a Databricks data
7568
+ # source.
7511
7569
  # @return [Types::DatabricksParameters]
7512
7570
  #
7571
+ # @!attribute [rw] starburst_parameters
7572
+ # The parameters that are required to connect to a Starburst data
7573
+ # source.
7574
+ # @return [Types::StarburstParameters]
7575
+ #
7576
+ # @!attribute [rw] trino_parameters
7577
+ # The parameters that are required to connect to a Trino data source.
7578
+ # @return [Types::TrinoParameters]
7579
+ #
7513
7580
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSourceParameters AWS API Documentation
7514
7581
  #
7515
7582
  class DataSourceParameters < Struct.new(
@@ -7535,7 +7602,9 @@ module Aws::QuickSight
7535
7602
  :twitter_parameters,
7536
7603
  :amazon_open_search_parameters,
7537
7604
  :exasol_parameters,
7538
- :databricks_parameters)
7605
+ :databricks_parameters,
7606
+ :starburst_parameters,
7607
+ :trino_parameters)
7539
7608
  SENSITIVE = []
7540
7609
  include Aws::Structure
7541
7610
  end
@@ -7643,8 +7712,8 @@ module Aws::QuickSight
7643
7712
  include Aws::Structure
7644
7713
  end
7645
7714
 
7646
- # The required parameters that are needed to connect to a Databricks
7647
- # data source.
7715
+ # The parameters that are required to connect to a Databricks data
7716
+ # source.
7648
7717
  #
7649
7718
  # @!attribute [rw] host
7650
7719
  # The host name of the Databricks data source.
@@ -21124,6 +21193,10 @@ module Aws::QuickSight
21124
21193
  # The cell styling options for the total of header cells.
21125
21194
  # @return [Types::TableCellStyle]
21126
21195
  #
21196
+ # @!attribute [rw] total_aggregation_options
21197
+ # The total aggregation options for each value field.
21198
+ # @return [Array<Types::TotalAggregationOption>]
21199
+ #
21127
21200
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PivotTotalOptions AWS API Documentation
21128
21201
  #
21129
21202
  class PivotTotalOptions < Struct.new(
@@ -21133,7 +21206,8 @@ module Aws::QuickSight
21133
21206
  :custom_label,
21134
21207
  :total_cell_style,
21135
21208
  :value_cell_style,
21136
- :metric_header_cell_style)
21209
+ :metric_header_cell_style,
21210
+ :total_aggregation_options)
21137
21211
  SENSITIVE = []
21138
21212
  include Aws::Structure
21139
21213
  end
@@ -21775,9 +21849,18 @@ module Aws::QuickSight
21775
21849
  # The axis binding type of the reference line. Choose one of the
21776
21850
  # following options:
21777
21851
  #
21778
- # * PrimaryY
21852
+ # * `PrimaryY`
21779
21853
  #
21780
- # * SecondaryY
21854
+ # * `SecondaryY`
21855
+ # @return [String]
21856
+ #
21857
+ # @!attribute [rw] series_type
21858
+ # The series type of the reference line data configuration. Choose one
21859
+ # of the following options:
21860
+ #
21861
+ # * `BAR`
21862
+ #
21863
+ # * `LINE`
21781
21864
  # @return [String]
21782
21865
  #
21783
21866
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ReferenceLineDataConfiguration AWS API Documentation
@@ -21785,7 +21868,8 @@ module Aws::QuickSight
21785
21868
  class ReferenceLineDataConfiguration < Struct.new(
21786
21869
  :static_configuration,
21787
21870
  :dynamic_configuration,
21788
- :axis_binding)
21871
+ :axis_binding,
21872
+ :series_type)
21789
21873
  SENSITIVE = []
21790
21874
  include Aws::Structure
21791
21875
  end
@@ -25028,6 +25112,36 @@ module Aws::QuickSight
25028
25112
  include Aws::Structure
25029
25113
  end
25030
25114
 
25115
+ # The parameters that are required to connect to a Starburst data
25116
+ # source.
25117
+ #
25118
+ # @!attribute [rw] host
25119
+ # The host name of the Starburst data source.
25120
+ # @return [String]
25121
+ #
25122
+ # @!attribute [rw] port
25123
+ # The port for the Starburst data source.
25124
+ # @return [Integer]
25125
+ #
25126
+ # @!attribute [rw] catalog
25127
+ # The catalog name for the Starburst data source.
25128
+ # @return [String]
25129
+ #
25130
+ # @!attribute [rw] product_type
25131
+ # The product type for the Starburst data source.
25132
+ # @return [String]
25133
+ #
25134
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StarburstParameters AWS API Documentation
25135
+ #
25136
+ class StarburstParameters < Struct.new(
25137
+ :host,
25138
+ :port,
25139
+ :catalog,
25140
+ :product_type)
25141
+ SENSITIVE = []
25142
+ include Aws::Structure
25143
+ end
25144
+
25031
25145
  # @!attribute [rw] aws_account_id
25032
25146
  # The ID of the Amazon Web Services account to export assets from.
25033
25147
  # @return [String]
@@ -27054,13 +27168,14 @@ module Aws::QuickSight
27054
27168
  # @!attribute [rw] value
27055
27169
  # The value of a `TimeEquality` filter.
27056
27170
  #
27057
- # This field is mutually exclusive to `ParameterName`.
27171
+ # This field is mutually exclusive to `RollingDate` and
27172
+ # `ParameterName`.
27058
27173
  # @return [Time]
27059
27174
  #
27060
27175
  # @!attribute [rw] parameter_name
27061
27176
  # The parameter whose value should be used for the filter value.
27062
27177
  #
27063
- # This field is mutually exclusive to `Value`.
27178
+ # This field is mutually exclusive to `Value` and `RollingDate`.
27064
27179
  # @return [String]
27065
27180
  #
27066
27181
  # @!attribute [rw] time_granularity
@@ -27068,6 +27183,12 @@ module Aws::QuickSight
27068
27183
  # values.
27069
27184
  # @return [String]
27070
27185
  #
27186
+ # @!attribute [rw] rolling_date
27187
+ # The rolling date input for the `TimeEquality` filter.
27188
+ #
27189
+ # This field is mutually exclusive to `Value` and `ParameterName`.
27190
+ # @return [Types::RollingDateConfiguration]
27191
+ #
27071
27192
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TimeEqualityFilter AWS API Documentation
27072
27193
  #
27073
27194
  class TimeEqualityFilter < Struct.new(
@@ -27075,7 +27196,8 @@ module Aws::QuickSight
27075
27196
  :column,
27076
27197
  :value,
27077
27198
  :parameter_name,
27078
- :time_granularity)
27199
+ :time_granularity,
27200
+ :rolling_date)
27079
27201
  SENSITIVE = []
27080
27202
  include Aws::Structure
27081
27203
  end
@@ -28087,6 +28209,40 @@ module Aws::QuickSight
28087
28209
  include Aws::Structure
28088
28210
  end
28089
28211
 
28212
+ # An aggregation function that aggregates the total values of a measure.
28213
+ #
28214
+ # @!attribute [rw] simple_total_aggregation_function
28215
+ # A built in aggregation function for total values.
28216
+ # @return [String]
28217
+ #
28218
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TotalAggregationFunction AWS API Documentation
28219
+ #
28220
+ class TotalAggregationFunction < Struct.new(
28221
+ :simple_total_aggregation_function)
28222
+ SENSITIVE = []
28223
+ include Aws::Structure
28224
+ end
28225
+
28226
+ # The total aggregation settings map of a field id.
28227
+ #
28228
+ # @!attribute [rw] field_id
28229
+ # The field id that's associated with the total aggregation option.
28230
+ # @return [String]
28231
+ #
28232
+ # @!attribute [rw] total_aggregation_function
28233
+ # The total aggregation function that you want to set for a specified
28234
+ # field id.
28235
+ # @return [Types::TotalAggregationFunction]
28236
+ #
28237
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TotalAggregationOption AWS API Documentation
28238
+ #
28239
+ class TotalAggregationOption < Struct.new(
28240
+ :field_id,
28241
+ :total_aggregation_function)
28242
+ SENSITIVE = []
28243
+ include Aws::Structure
28244
+ end
28245
+
28090
28246
  # The total options for a table visual.
28091
28247
  #
28092
28248
  # @!attribute [rw] totals_visibility
@@ -28109,6 +28265,10 @@ module Aws::QuickSight
28109
28265
  # Cell styling options for the total cells.
28110
28266
  # @return [Types::TableCellStyle]
28111
28267
  #
28268
+ # @!attribute [rw] total_aggregation_options
28269
+ # The total aggregation settings for each value field.
28270
+ # @return [Array<Types::TotalAggregationOption>]
28271
+ #
28112
28272
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TotalOptions AWS API Documentation
28113
28273
  #
28114
28274
  class TotalOptions < Struct.new(
@@ -28116,7 +28276,8 @@ module Aws::QuickSight
28116
28276
  :placement,
28117
28277
  :scroll_status,
28118
28278
  :custom_label,
28119
- :total_cell_style)
28279
+ :total_cell_style,
28280
+ :total_aggregation_options)
28120
28281
  SENSITIVE = []
28121
28282
  include Aws::Structure
28122
28283
  end
@@ -28360,6 +28521,30 @@ module Aws::QuickSight
28360
28521
  include Aws::Structure
28361
28522
  end
28362
28523
 
28524
+ # The parameters that are required to connect to a Trino data source.
28525
+ #
28526
+ # @!attribute [rw] host
28527
+ # The host name of the Trino data source.
28528
+ # @return [String]
28529
+ #
28530
+ # @!attribute [rw] port
28531
+ # The port for the Trino data source.
28532
+ # @return [Integer]
28533
+ #
28534
+ # @!attribute [rw] catalog
28535
+ # The catalog name for the Trino data source.
28536
+ # @return [String]
28537
+ #
28538
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TrinoParameters AWS API Documentation
28539
+ #
28540
+ class TrinoParameters < Struct.new(
28541
+ :host,
28542
+ :port,
28543
+ :catalog)
28544
+ SENSITIVE = []
28545
+ include Aws::Structure
28546
+ end
28547
+
28363
28548
  # The parameters for Twitter.
28364
28549
  #
28365
28550
  # @!attribute [rw] query
@@ -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.93.0'
55
+ GEM_VERSION = '1.94.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.93.0
4
+ version: 1.94.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-10-06 00:00:00.000000000 Z
11
+ date: 2023-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core