@aws-sdk/client-quicksight 3.1030.0 → 3.1032.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist-cjs/index.js +7 -0
  2. package/dist-cjs/schemas/schemas_0.js +90 -56
  3. package/dist-es/models/enums.js +6 -0
  4. package/dist-es/schemas/schemas_0.js +58 -24
  5. package/dist-types/commands/CreateAnalysisCommand.d.ts +136 -71
  6. package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +1 -0
  7. package/dist-types/commands/CreateDashboardCommand.d.ts +136 -71
  8. package/dist-types/commands/CreateDataSourceCommand.d.ts +9 -1
  9. package/dist-types/commands/CreateTemplateCommand.d.ts +136 -71
  10. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +136 -71
  11. package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +4 -0
  12. package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +1 -0
  13. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +136 -71
  14. package/dist-types/commands/DescribeDataSourceCommand.d.ts +9 -1
  15. package/dist-types/commands/DescribeRoleCustomPermissionCommand.d.ts +2 -1
  16. package/dist-types/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +136 -71
  18. package/dist-types/commands/GenerateEmbedUrlForRegisteredUserCommand.d.ts +6 -0
  19. package/dist-types/commands/GenerateEmbedUrlForRegisteredUserWithIdentityCommand.d.ts +6 -0
  20. package/dist-types/commands/ListCustomPermissionsCommand.d.ts +1 -0
  21. package/dist-types/commands/ListDataSourcesCommand.d.ts +9 -1
  22. package/dist-types/commands/SearchDataSourcesCommand.d.ts +1 -1
  23. package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +4 -0
  24. package/dist-types/commands/UpdateAnalysisCommand.d.ts +136 -71
  25. package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +1 -0
  26. package/dist-types/commands/UpdateDashboardCommand.d.ts +136 -71
  27. package/dist-types/commands/UpdateDataSourceCommand.d.ts +8 -0
  28. package/dist-types/commands/UpdateTemplateCommand.d.ts +136 -71
  29. package/dist-types/commands/UpdateTopicRefreshScheduleCommand.d.ts +2 -1
  30. package/dist-types/commands/UpdateUserCommand.d.ts +1 -1
  31. package/dist-types/commands/UpdateUserCustomPermissionCommand.d.ts +1 -2
  32. package/dist-types/models/enums.d.ts +14 -0
  33. package/dist-types/models/models_0.d.ts +72 -43
  34. package/dist-types/models/models_1.d.ts +43 -109
  35. package/dist-types/models/models_2.d.ts +207 -60
  36. package/dist-types/models/models_3.d.ts +69 -78
  37. package/dist-types/models/models_4.d.ts +87 -210
  38. package/dist-types/models/models_5.d.ts +211 -1
  39. package/dist-types/schemas/schemas_0.d.ts +4 -0
  40. package/dist-types/ts3.4/commands/DescribeRoleCustomPermissionCommand.d.ts +2 -4
  41. package/dist-types/ts3.4/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/UpdateTopicRefreshScheduleCommand.d.ts +2 -4
  43. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/UpdateUserCustomPermissionCommand.d.ts +4 -2
  45. package/dist-types/ts3.4/models/enums.d.ts +8 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +14 -10
  47. package/dist-types/ts3.4/models/models_1.d.ts +11 -25
  48. package/dist-types/ts3.4/models/models_2.d.ts +107 -15
  49. package/dist-types/ts3.4/models/models_3.d.ts +19 -21
  50. package/dist-types/ts3.4/models/models_4.d.ts +24 -30
  51. package/dist-types/ts3.4/models/models_5.d.ts +32 -0
  52. package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
  53. package/package.json +33 -33
@@ -258,6 +258,34 @@ declare const CreateDashboardCommand_base: {
258
258
  * },
259
259
  * ],
260
260
  * },
261
+ * ControlSortConfigurations: [ // ControlSortConfigurationList
262
+ * { // ControlSortConfiguration
263
+ * SelectableValuesSort: { // SelectableValuesSort
264
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
265
+ * },
266
+ * ControlColumnSort: { // AggregationSortConfiguration
267
+ * Column: {
268
+ * DataSetIdentifier: "STRING_VALUE", // required
269
+ * ColumnName: "STRING_VALUE", // required
270
+ * },
271
+ * SortDirection: "ASC" || "DESC", // required
272
+ * AggregationFunction: { // AggregationFunction
273
+ * NumericalAggregationFunction: { // NumericalAggregationFunction
274
+ * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
275
+ * PercentileAggregation: { // PercentileAggregation
276
+ * PercentileValue: Number("double"),
277
+ * },
278
+ * },
279
+ * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
280
+ * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
281
+ * AttributeAggregationFunction: { // AttributeAggregationFunction
282
+ * SimpleAttributeAggregation: "UNIQUE_VALUE",
283
+ * ValueForMultipleValues: "STRING_VALUE",
284
+ * },
285
+ * },
286
+ * },
287
+ * },
288
+ * ],
261
289
  * },
262
290
  * Dropdown: { // ParameterDropDownControl
263
291
  * ParameterControlId: "STRING_VALUE", // required
@@ -311,6 +339,31 @@ declare const CreateDashboardCommand_base: {
311
339
  * ],
312
340
  * },
313
341
  * CommitMode: "AUTO" || "MANUAL",
342
+ * ControlSortConfigurations: [
343
+ * {
344
+ * SelectableValuesSort: {
345
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
346
+ * },
347
+ * ControlColumnSort: {
348
+ * Column: "<ColumnIdentifier>", // required
349
+ * SortDirection: "ASC" || "DESC", // required
350
+ * AggregationFunction: {
351
+ * NumericalAggregationFunction: {
352
+ * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
353
+ * PercentileAggregation: {
354
+ * PercentileValue: Number("double"),
355
+ * },
356
+ * },
357
+ * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
358
+ * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
359
+ * AttributeAggregationFunction: {
360
+ * SimpleAttributeAggregation: "UNIQUE_VALUE",
361
+ * ValueForMultipleValues: "STRING_VALUE",
362
+ * },
363
+ * },
364
+ * },
365
+ * },
366
+ * ],
314
367
  * },
315
368
  * TextField: { // ParameterTextFieldControl
316
369
  * ParameterControlId: "STRING_VALUE", // required
@@ -429,13 +482,35 @@ declare const CreateDashboardCommand_base: {
429
482
  * SourceControls: [
430
483
  * {
431
484
  * SourceSheetControlId: "STRING_VALUE",
432
- * ColumnToMatch: {
433
- * DataSetIdentifier: "STRING_VALUE", // required
434
- * ColumnName: "STRING_VALUE", // required
435
- * },
485
+ * ColumnToMatch: "<ColumnIdentifier>",
436
486
  * },
437
487
  * ],
438
488
  * },
489
+ * ControlSortConfigurations: [
490
+ * {
491
+ * SelectableValuesSort: {
492
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
493
+ * },
494
+ * ControlColumnSort: {
495
+ * Column: "<ColumnIdentifier>", // required
496
+ * SortDirection: "ASC" || "DESC", // required
497
+ * AggregationFunction: {
498
+ * NumericalAggregationFunction: {
499
+ * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
500
+ * PercentileAggregation: {
501
+ * PercentileValue: Number("double"),
502
+ * },
503
+ * },
504
+ * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
505
+ * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
506
+ * AttributeAggregationFunction: {
507
+ * SimpleAttributeAggregation: "UNIQUE_VALUE",
508
+ * ValueForMultipleValues: "STRING_VALUE",
509
+ * },
510
+ * },
511
+ * },
512
+ * },
513
+ * ],
439
514
  * },
440
515
  * Dropdown: { // FilterDropDownControl
441
516
  * FilterControlId: "STRING_VALUE", // required
@@ -463,6 +538,31 @@ declare const CreateDashboardCommand_base: {
463
538
  * ],
464
539
  * },
465
540
  * CommitMode: "AUTO" || "MANUAL",
541
+ * ControlSortConfigurations: [
542
+ * {
543
+ * SelectableValuesSort: {
544
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
545
+ * },
546
+ * ControlColumnSort: {
547
+ * Column: "<ColumnIdentifier>", // required
548
+ * SortDirection: "ASC" || "DESC", // required
549
+ * AggregationFunction: {
550
+ * NumericalAggregationFunction: {
551
+ * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
552
+ * PercentileAggregation: {
553
+ * PercentileValue: Number("double"),
554
+ * },
555
+ * },
556
+ * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
557
+ * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
558
+ * AttributeAggregationFunction: {
559
+ * SimpleAttributeAggregation: "UNIQUE_VALUE",
560
+ * ValueForMultipleValues: "STRING_VALUE",
561
+ * },
562
+ * },
563
+ * },
564
+ * },
565
+ * ],
466
566
  * },
467
567
  * TextField: { // FilterTextFieldControl
468
568
  * FilterControlId: "STRING_VALUE", // required
@@ -734,9 +834,9 @@ declare const CreateDashboardCommand_base: {
734
834
  * NumericalMeasureField: { // NumericalMeasureField
735
835
  * FieldId: "STRING_VALUE", // required
736
836
  * Column: "<ColumnIdentifier>", // required
737
- * AggregationFunction: { // NumericalAggregationFunction
837
+ * AggregationFunction: {
738
838
  * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
739
- * PercentileAggregation: { // PercentileAggregation
839
+ * PercentileAggregation: {
740
840
  * PercentileValue: Number("double"),
741
841
  * },
742
842
  * },
@@ -859,16 +959,11 @@ declare const CreateDashboardCommand_base: {
859
959
  * ColumnSort: { // ColumnSort
860
960
  * SortBy: "<ColumnIdentifier>", // required
861
961
  * Direction: "ASC" || "DESC", // required
862
- * AggregationFunction: { // AggregationFunction
863
- * NumericalAggregationFunction: {
864
- * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
865
- * PercentileAggregation: {
866
- * PercentileValue: Number("double"),
867
- * },
868
- * },
962
+ * AggregationFunction: {
963
+ * NumericalAggregationFunction: "<NumericalAggregationFunction>",
869
964
  * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
870
965
  * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
871
- * AttributeAggregationFunction: { // AttributeAggregationFunction
966
+ * AttributeAggregationFunction: {
872
967
  * SimpleAttributeAggregation: "UNIQUE_VALUE",
873
968
  * ValueForMultipleValues: "STRING_VALUE",
874
969
  * },
@@ -1115,20 +1210,7 @@ declare const CreateDashboardCommand_base: {
1115
1210
  * Column: "<ColumnIdentifier>", // required
1116
1211
  * Label: "STRING_VALUE",
1117
1212
  * Visibility: "HIDDEN" || "VISIBLE",
1118
- * Aggregation: {
1119
- * NumericalAggregationFunction: {
1120
- * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
1121
- * PercentileAggregation: {
1122
- * PercentileValue: Number("double"),
1123
- * },
1124
- * },
1125
- * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
1126
- * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
1127
- * AttributeAggregationFunction: {
1128
- * SimpleAttributeAggregation: "UNIQUE_VALUE",
1129
- * ValueForMultipleValues: "STRING_VALUE",
1130
- * },
1131
- * },
1213
+ * Aggregation: "<AggregationFunction>",
1132
1214
  * TooltipTarget: "BOTH" || "BAR" || "LINE",
1133
1215
  * },
1134
1216
  * },
@@ -1408,12 +1490,7 @@ declare const CreateDashboardCommand_base: {
1408
1490
  * NumericalMeasureField: {
1409
1491
  * FieldId: "STRING_VALUE", // required
1410
1492
  * Column: "<ColumnIdentifier>", // required
1411
- * AggregationFunction: {
1412
- * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
1413
- * PercentileAggregation: {
1414
- * PercentileValue: Number("double"),
1415
- * },
1416
- * },
1493
+ * AggregationFunction: "<NumericalAggregationFunction>",
1417
1494
  * FormatConfiguration: "<NumberFormatConfiguration>",
1418
1495
  * },
1419
1496
  * CategoricalMeasureField: {
@@ -1448,20 +1525,7 @@ declare const CreateDashboardCommand_base: {
1448
1525
  * Column: {
1449
1526
  * SortBy: "<ColumnIdentifier>", // required
1450
1527
  * Direction: "ASC" || "DESC", // required
1451
- * AggregationFunction: {
1452
- * NumericalAggregationFunction: {
1453
- * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
1454
- * PercentileAggregation: {
1455
- * PercentileValue: Number("double"),
1456
- * },
1457
- * },
1458
- * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
1459
- * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
1460
- * AttributeAggregationFunction: {
1461
- * SimpleAttributeAggregation: "UNIQUE_VALUE",
1462
- * ValueForMultipleValues: "STRING_VALUE",
1463
- * },
1464
- * },
1528
+ * AggregationFunction: "<AggregationFunction>",
1465
1529
  * },
1466
1530
  * DataPath: { // DataPathSort
1467
1531
  * Direction: "ASC" || "DESC", // required
@@ -1667,15 +1731,7 @@ declare const CreateDashboardCommand_base: {
1667
1731
  * Column: "<ColumnIdentifier>", // required
1668
1732
  * Label: "STRING_VALUE",
1669
1733
  * Visibility: "HIDDEN" || "VISIBLE",
1670
- * Aggregation: {
1671
- * NumericalAggregationFunction: "<NumericalAggregationFunction>",
1672
- * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
1673
- * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
1674
- * AttributeAggregationFunction: {
1675
- * SimpleAttributeAggregation: "UNIQUE_VALUE",
1676
- * ValueForMultipleValues: "STRING_VALUE",
1677
- * },
1678
- * },
1734
+ * Aggregation: "<AggregationFunction>",
1679
1735
  * TooltipTarget: "BOTH" || "BAR" || "LINE",
1680
1736
  * },
1681
1737
  * },
@@ -1915,15 +1971,7 @@ declare const CreateDashboardCommand_base: {
1915
1971
  * ColumnSort: {
1916
1972
  * SortBy: "<ColumnIdentifier>", // required
1917
1973
  * Direction: "ASC" || "DESC", // required
1918
- * AggregationFunction: {
1919
- * NumericalAggregationFunction: "<NumericalAggregationFunction>",
1920
- * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
1921
- * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
1922
- * AttributeAggregationFunction: {
1923
- * SimpleAttributeAggregation: "UNIQUE_VALUE",
1924
- * ValueForMultipleValues: "STRING_VALUE",
1925
- * },
1926
- * },
1974
+ * AggregationFunction: "<AggregationFunction>",
1927
1975
  * },
1928
1976
  * },
1929
1977
  * ],
@@ -7140,6 +7188,18 @@ declare const CreateDashboardCommand_base: {
7140
7188
  * "STRING_VALUE",
7141
7189
  * ],
7142
7190
  * },
7191
+ * ControlSortConfigurations: [
7192
+ * {
7193
+ * SelectableValuesSort: {
7194
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
7195
+ * },
7196
+ * ControlColumnSort: {
7197
+ * Column: "<ColumnIdentifier>", // required
7198
+ * SortDirection: "ASC" || "DESC", // required
7199
+ * AggregationFunction: "<AggregationFunction>",
7200
+ * },
7201
+ * },
7202
+ * ],
7143
7203
  * },
7144
7204
  * DefaultDropdownOptions: { // DefaultFilterDropDownControlOptions
7145
7205
  * DisplayOptions: {
@@ -7152,6 +7212,7 @@ declare const CreateDashboardCommand_base: {
7152
7212
  * Values: "<ParameterSelectableValueList>",
7153
7213
  * },
7154
7214
  * CommitMode: "AUTO" || "MANUAL",
7215
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7155
7216
  * },
7156
7217
  * DefaultTextFieldOptions: { // DefaultTextFieldControlOptions
7157
7218
  * DisplayOptions: {
@@ -7234,6 +7295,7 @@ declare const CreateDashboardCommand_base: {
7234
7295
  * SelectableValues: {
7235
7296
  * Values: "<ParameterSelectableValueList>",
7236
7297
  * },
7298
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7237
7299
  * },
7238
7300
  * DefaultDropdownOptions: {
7239
7301
  * DisplayOptions: {
@@ -7244,6 +7306,7 @@ declare const CreateDashboardCommand_base: {
7244
7306
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7245
7307
  * SelectableValues: "<FilterSelectableValues>",
7246
7308
  * CommitMode: "AUTO" || "MANUAL",
7309
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7247
7310
  * },
7248
7311
  * DefaultTextFieldOptions: {
7249
7312
  * DisplayOptions: {
@@ -7315,6 +7378,7 @@ declare const CreateDashboardCommand_base: {
7315
7378
  * },
7316
7379
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7317
7380
  * SelectableValues: "<FilterSelectableValues>",
7381
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7318
7382
  * },
7319
7383
  * DefaultDropdownOptions: {
7320
7384
  * DisplayOptions: {
@@ -7325,6 +7389,7 @@ declare const CreateDashboardCommand_base: {
7325
7389
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7326
7390
  * SelectableValues: "<FilterSelectableValues>",
7327
7391
  * CommitMode: "AUTO" || "MANUAL",
7392
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7328
7393
  * },
7329
7394
  * DefaultTextFieldOptions: {
7330
7395
  * DisplayOptions: {
@@ -7384,12 +7449,14 @@ declare const CreateDashboardCommand_base: {
7384
7449
  * DisplayOptions: "<ListControlDisplayOptions>",
7385
7450
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7386
7451
  * SelectableValues: "<FilterSelectableValues>",
7452
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7387
7453
  * },
7388
7454
  * DefaultDropdownOptions: {
7389
7455
  * DisplayOptions: "<DropDownControlDisplayOptions>",
7390
7456
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7391
7457
  * SelectableValues: "<FilterSelectableValues>",
7392
7458
  * CommitMode: "AUTO" || "MANUAL",
7459
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7393
7460
  * },
7394
7461
  * DefaultTextFieldOptions: {
7395
7462
  * DisplayOptions: "<TextFieldControlDisplayOptions>",
@@ -7450,12 +7517,14 @@ declare const CreateDashboardCommand_base: {
7450
7517
  * DisplayOptions: "<ListControlDisplayOptions>",
7451
7518
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7452
7519
  * SelectableValues: "<FilterSelectableValues>",
7520
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7453
7521
  * },
7454
7522
  * DefaultDropdownOptions: {
7455
7523
  * DisplayOptions: "<DropDownControlDisplayOptions>",
7456
7524
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7457
7525
  * SelectableValues: "<FilterSelectableValues>",
7458
7526
  * CommitMode: "AUTO" || "MANUAL",
7527
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7459
7528
  * },
7460
7529
  * DefaultTextFieldOptions: {
7461
7530
  * DisplayOptions: "<TextFieldControlDisplayOptions>",
@@ -7503,11 +7572,7 @@ declare const CreateDashboardCommand_base: {
7503
7572
  * Column: "<ColumnIdentifier>", // required
7504
7573
  * Limit: Number("int"),
7505
7574
  * AggregationSortConfigurations: [ // AggregationSortConfigurationList // required
7506
- * { // AggregationSortConfiguration
7507
- * Column: "<ColumnIdentifier>", // required
7508
- * SortDirection: "ASC" || "DESC", // required
7509
- * AggregationFunction: "<AggregationFunction>",
7510
- * },
7575
+ * "<AggregationSortConfiguration>",
7511
7576
  * ],
7512
7577
  * TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
7513
7578
  * ParameterName: "STRING_VALUE",
@@ -40,7 +40,7 @@ declare const CreateDataSourceCommand_base: {
40
40
  * AwsAccountId: "STRING_VALUE", // required
41
41
  * DataSourceId: "STRING_VALUE", // required
42
42
  * Name: "STRING_VALUE", // required
43
- * Type: "ADOBE_ANALYTICS" || "AMAZON_ELASTICSEARCH" || "ATHENA" || "AURORA" || "AURORA_POSTGRESQL" || "AWS_IOT_ANALYTICS" || "GITHUB" || "JIRA" || "MARIADB" || "MYSQL" || "ORACLE" || "POSTGRESQL" || "PRESTO" || "REDSHIFT" || "S3" || "SALESFORCE" || "SERVICENOW" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "TWITTER" || "TIMESTREAM" || "AMAZON_OPENSEARCH" || "EXASOL" || "DATABRICKS" || "STARBURST" || "TRINO" || "BIGQUERY" || "GOOGLESHEETS" || "GOOGLE_DRIVE" || "CONFLUENCE" || "SHAREPOINT" || "ONE_DRIVE" || "WEB_CRAWLER" || "S3_KNOWLEDGE_BASE" || "QBUSINESS", // required
43
+ * Type: "ADOBE_ANALYTICS" || "AMAZON_ELASTICSEARCH" || "ATHENA" || "AURORA" || "AURORA_POSTGRESQL" || "AWS_IOT_ANALYTICS" || "GITHUB" || "JIRA" || "MARIADB" || "MYSQL" || "ORACLE" || "POSTGRESQL" || "PRESTO" || "REDSHIFT" || "S3" || "S3_TABLES" || "SALESFORCE" || "SERVICENOW" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "TWITTER" || "TIMESTREAM" || "AMAZON_OPENSEARCH" || "EXASOL" || "DATABRICKS" || "STARBURST" || "TRINO" || "BIGQUERY" || "GOOGLESHEETS" || "GOOGLE_DRIVE" || "CONFLUENCE" || "SHAREPOINT" || "ONE_DRIVE" || "WEB_CRAWLER" || "S3_KNOWLEDGE_BASE" || "QBUSINESS", // required
44
44
  * DataSourceParameters: { // DataSourceParameters Union: only one key present
45
45
  * AmazonElasticsearchParameters: { // AmazonElasticsearchParameters
46
46
  * Domain: "STRING_VALUE", // required
@@ -48,6 +48,7 @@ declare const CreateDataSourceCommand_base: {
48
48
  * AthenaParameters: { // AthenaParameters
49
49
  * WorkGroup: "STRING_VALUE",
50
50
  * RoleArn: "STRING_VALUE",
51
+ * ConsumerAccountRoleArn: "STRING_VALUE",
51
52
  * IdentityCenterConfiguration: { // IdentityCenterConfiguration
52
53
  * EnableIdentityPropagation: true || false,
53
54
  * },
@@ -122,6 +123,9 @@ declare const CreateDataSourceCommand_base: {
122
123
  * },
123
124
  * RoleArn: "STRING_VALUE",
124
125
  * },
126
+ * S3TablesParameters: { // S3TablesParameters
127
+ * TableBucketArn: "STRING_VALUE",
128
+ * },
125
129
  * S3KnowledgeBaseParameters: { // S3KnowledgeBaseParameters
126
130
  * RoleArn: "STRING_VALUE",
127
131
  * BucketUrl: "STRING_VALUE", // required
@@ -238,6 +242,7 @@ declare const CreateDataSourceCommand_base: {
238
242
  * AthenaParameters: {
239
243
  * WorkGroup: "STRING_VALUE",
240
244
  * RoleArn: "STRING_VALUE",
245
+ * ConsumerAccountRoleArn: "STRING_VALUE",
241
246
  * IdentityCenterConfiguration: {
242
247
  * EnableIdentityPropagation: true || false,
243
248
  * },
@@ -312,6 +317,9 @@ declare const CreateDataSourceCommand_base: {
312
317
  * },
313
318
  * RoleArn: "STRING_VALUE",
314
319
  * },
320
+ * S3TablesParameters: {
321
+ * TableBucketArn: "STRING_VALUE",
322
+ * },
315
323
  * S3KnowledgeBaseParameters: {
316
324
  * RoleArn: "STRING_VALUE",
317
325
  * BucketUrl: "STRING_VALUE", // required