@aws-sdk/client-quicksight 3.1031.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 +5 -5
@@ -173,6 +173,34 @@ declare const UpdateTemplateCommand_base: {
173
173
  * },
174
174
  * ],
175
175
  * },
176
+ * ControlSortConfigurations: [ // ControlSortConfigurationList
177
+ * { // ControlSortConfiguration
178
+ * SelectableValuesSort: { // SelectableValuesSort
179
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
180
+ * },
181
+ * ControlColumnSort: { // AggregationSortConfiguration
182
+ * Column: {
183
+ * DataSetIdentifier: "STRING_VALUE", // required
184
+ * ColumnName: "STRING_VALUE", // required
185
+ * },
186
+ * SortDirection: "ASC" || "DESC", // required
187
+ * AggregationFunction: { // AggregationFunction
188
+ * NumericalAggregationFunction: { // NumericalAggregationFunction
189
+ * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
190
+ * PercentileAggregation: { // PercentileAggregation
191
+ * PercentileValue: Number("double"),
192
+ * },
193
+ * },
194
+ * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
195
+ * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
196
+ * AttributeAggregationFunction: { // AttributeAggregationFunction
197
+ * SimpleAttributeAggregation: "UNIQUE_VALUE",
198
+ * ValueForMultipleValues: "STRING_VALUE",
199
+ * },
200
+ * },
201
+ * },
202
+ * },
203
+ * ],
176
204
  * },
177
205
  * Dropdown: { // ParameterDropDownControl
178
206
  * ParameterControlId: "STRING_VALUE", // required
@@ -226,6 +254,31 @@ declare const UpdateTemplateCommand_base: {
226
254
  * ],
227
255
  * },
228
256
  * CommitMode: "AUTO" || "MANUAL",
257
+ * ControlSortConfigurations: [
258
+ * {
259
+ * SelectableValuesSort: {
260
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
261
+ * },
262
+ * ControlColumnSort: {
263
+ * Column: "<ColumnIdentifier>", // required
264
+ * SortDirection: "ASC" || "DESC", // required
265
+ * AggregationFunction: {
266
+ * NumericalAggregationFunction: {
267
+ * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
268
+ * PercentileAggregation: {
269
+ * PercentileValue: Number("double"),
270
+ * },
271
+ * },
272
+ * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
273
+ * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
274
+ * AttributeAggregationFunction: {
275
+ * SimpleAttributeAggregation: "UNIQUE_VALUE",
276
+ * ValueForMultipleValues: "STRING_VALUE",
277
+ * },
278
+ * },
279
+ * },
280
+ * },
281
+ * ],
229
282
  * },
230
283
  * TextField: { // ParameterTextFieldControl
231
284
  * ParameterControlId: "STRING_VALUE", // required
@@ -344,13 +397,35 @@ declare const UpdateTemplateCommand_base: {
344
397
  * SourceControls: [
345
398
  * {
346
399
  * SourceSheetControlId: "STRING_VALUE",
347
- * ColumnToMatch: {
348
- * DataSetIdentifier: "STRING_VALUE", // required
349
- * ColumnName: "STRING_VALUE", // required
350
- * },
400
+ * ColumnToMatch: "<ColumnIdentifier>",
351
401
  * },
352
402
  * ],
353
403
  * },
404
+ * ControlSortConfigurations: [
405
+ * {
406
+ * SelectableValuesSort: {
407
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
408
+ * },
409
+ * ControlColumnSort: {
410
+ * Column: "<ColumnIdentifier>", // required
411
+ * SortDirection: "ASC" || "DESC", // required
412
+ * AggregationFunction: {
413
+ * NumericalAggregationFunction: {
414
+ * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
415
+ * PercentileAggregation: {
416
+ * PercentileValue: Number("double"),
417
+ * },
418
+ * },
419
+ * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
420
+ * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
421
+ * AttributeAggregationFunction: {
422
+ * SimpleAttributeAggregation: "UNIQUE_VALUE",
423
+ * ValueForMultipleValues: "STRING_VALUE",
424
+ * },
425
+ * },
426
+ * },
427
+ * },
428
+ * ],
354
429
  * },
355
430
  * Dropdown: { // FilterDropDownControl
356
431
  * FilterControlId: "STRING_VALUE", // required
@@ -378,6 +453,31 @@ declare const UpdateTemplateCommand_base: {
378
453
  * ],
379
454
  * },
380
455
  * CommitMode: "AUTO" || "MANUAL",
456
+ * ControlSortConfigurations: [
457
+ * {
458
+ * SelectableValuesSort: {
459
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
460
+ * },
461
+ * ControlColumnSort: {
462
+ * Column: "<ColumnIdentifier>", // required
463
+ * SortDirection: "ASC" || "DESC", // required
464
+ * AggregationFunction: {
465
+ * NumericalAggregationFunction: {
466
+ * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
467
+ * PercentileAggregation: {
468
+ * PercentileValue: Number("double"),
469
+ * },
470
+ * },
471
+ * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
472
+ * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
473
+ * AttributeAggregationFunction: {
474
+ * SimpleAttributeAggregation: "UNIQUE_VALUE",
475
+ * ValueForMultipleValues: "STRING_VALUE",
476
+ * },
477
+ * },
478
+ * },
479
+ * },
480
+ * ],
381
481
  * },
382
482
  * TextField: { // FilterTextFieldControl
383
483
  * FilterControlId: "STRING_VALUE", // required
@@ -649,9 +749,9 @@ declare const UpdateTemplateCommand_base: {
649
749
  * NumericalMeasureField: { // NumericalMeasureField
650
750
  * FieldId: "STRING_VALUE", // required
651
751
  * Column: "<ColumnIdentifier>", // required
652
- * AggregationFunction: { // NumericalAggregationFunction
752
+ * AggregationFunction: {
653
753
  * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
654
- * PercentileAggregation: { // PercentileAggregation
754
+ * PercentileAggregation: {
655
755
  * PercentileValue: Number("double"),
656
756
  * },
657
757
  * },
@@ -774,16 +874,11 @@ declare const UpdateTemplateCommand_base: {
774
874
  * ColumnSort: { // ColumnSort
775
875
  * SortBy: "<ColumnIdentifier>", // required
776
876
  * Direction: "ASC" || "DESC", // required
777
- * AggregationFunction: { // AggregationFunction
778
- * NumericalAggregationFunction: {
779
- * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
780
- * PercentileAggregation: {
781
- * PercentileValue: Number("double"),
782
- * },
783
- * },
877
+ * AggregationFunction: {
878
+ * NumericalAggregationFunction: "<NumericalAggregationFunction>",
784
879
  * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
785
880
  * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
786
- * AttributeAggregationFunction: { // AttributeAggregationFunction
881
+ * AttributeAggregationFunction: {
787
882
  * SimpleAttributeAggregation: "UNIQUE_VALUE",
788
883
  * ValueForMultipleValues: "STRING_VALUE",
789
884
  * },
@@ -1030,20 +1125,7 @@ declare const UpdateTemplateCommand_base: {
1030
1125
  * Column: "<ColumnIdentifier>", // required
1031
1126
  * Label: "STRING_VALUE",
1032
1127
  * Visibility: "HIDDEN" || "VISIBLE",
1033
- * Aggregation: {
1034
- * NumericalAggregationFunction: {
1035
- * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
1036
- * PercentileAggregation: {
1037
- * PercentileValue: Number("double"),
1038
- * },
1039
- * },
1040
- * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
1041
- * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
1042
- * AttributeAggregationFunction: {
1043
- * SimpleAttributeAggregation: "UNIQUE_VALUE",
1044
- * ValueForMultipleValues: "STRING_VALUE",
1045
- * },
1046
- * },
1128
+ * Aggregation: "<AggregationFunction>",
1047
1129
  * TooltipTarget: "BOTH" || "BAR" || "LINE",
1048
1130
  * },
1049
1131
  * },
@@ -1323,12 +1405,7 @@ declare const UpdateTemplateCommand_base: {
1323
1405
  * NumericalMeasureField: {
1324
1406
  * FieldId: "STRING_VALUE", // required
1325
1407
  * Column: "<ColumnIdentifier>", // required
1326
- * AggregationFunction: {
1327
- * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
1328
- * PercentileAggregation: {
1329
- * PercentileValue: Number("double"),
1330
- * },
1331
- * },
1408
+ * AggregationFunction: "<NumericalAggregationFunction>",
1332
1409
  * FormatConfiguration: "<NumberFormatConfiguration>",
1333
1410
  * },
1334
1411
  * CategoricalMeasureField: {
@@ -1363,20 +1440,7 @@ declare const UpdateTemplateCommand_base: {
1363
1440
  * Column: {
1364
1441
  * SortBy: "<ColumnIdentifier>", // required
1365
1442
  * Direction: "ASC" || "DESC", // required
1366
- * AggregationFunction: {
1367
- * NumericalAggregationFunction: {
1368
- * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
1369
- * PercentileAggregation: {
1370
- * PercentileValue: Number("double"),
1371
- * },
1372
- * },
1373
- * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
1374
- * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
1375
- * AttributeAggregationFunction: {
1376
- * SimpleAttributeAggregation: "UNIQUE_VALUE",
1377
- * ValueForMultipleValues: "STRING_VALUE",
1378
- * },
1379
- * },
1443
+ * AggregationFunction: "<AggregationFunction>",
1380
1444
  * },
1381
1445
  * DataPath: { // DataPathSort
1382
1446
  * Direction: "ASC" || "DESC", // required
@@ -1582,15 +1646,7 @@ declare const UpdateTemplateCommand_base: {
1582
1646
  * Column: "<ColumnIdentifier>", // required
1583
1647
  * Label: "STRING_VALUE",
1584
1648
  * Visibility: "HIDDEN" || "VISIBLE",
1585
- * Aggregation: {
1586
- * NumericalAggregationFunction: "<NumericalAggregationFunction>",
1587
- * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
1588
- * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
1589
- * AttributeAggregationFunction: {
1590
- * SimpleAttributeAggregation: "UNIQUE_VALUE",
1591
- * ValueForMultipleValues: "STRING_VALUE",
1592
- * },
1593
- * },
1649
+ * Aggregation: "<AggregationFunction>",
1594
1650
  * TooltipTarget: "BOTH" || "BAR" || "LINE",
1595
1651
  * },
1596
1652
  * },
@@ -1830,15 +1886,7 @@ declare const UpdateTemplateCommand_base: {
1830
1886
  * ColumnSort: {
1831
1887
  * SortBy: "<ColumnIdentifier>", // required
1832
1888
  * Direction: "ASC" || "DESC", // required
1833
- * AggregationFunction: {
1834
- * NumericalAggregationFunction: "<NumericalAggregationFunction>",
1835
- * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
1836
- * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
1837
- * AttributeAggregationFunction: {
1838
- * SimpleAttributeAggregation: "UNIQUE_VALUE",
1839
- * ValueForMultipleValues: "STRING_VALUE",
1840
- * },
1841
- * },
1889
+ * AggregationFunction: "<AggregationFunction>",
1842
1890
  * },
1843
1891
  * },
1844
1892
  * ],
@@ -7057,6 +7105,18 @@ declare const UpdateTemplateCommand_base: {
7057
7105
  * "STRING_VALUE",
7058
7106
  * ],
7059
7107
  * },
7108
+ * ControlSortConfigurations: [
7109
+ * {
7110
+ * SelectableValuesSort: {
7111
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
7112
+ * },
7113
+ * ControlColumnSort: {
7114
+ * Column: "<ColumnIdentifier>", // required
7115
+ * SortDirection: "ASC" || "DESC", // required
7116
+ * AggregationFunction: "<AggregationFunction>",
7117
+ * },
7118
+ * },
7119
+ * ],
7060
7120
  * },
7061
7121
  * DefaultDropdownOptions: { // DefaultFilterDropDownControlOptions
7062
7122
  * DisplayOptions: {
@@ -7069,6 +7129,7 @@ declare const UpdateTemplateCommand_base: {
7069
7129
  * Values: "<ParameterSelectableValueList>",
7070
7130
  * },
7071
7131
  * CommitMode: "AUTO" || "MANUAL",
7132
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7072
7133
  * },
7073
7134
  * DefaultTextFieldOptions: { // DefaultTextFieldControlOptions
7074
7135
  * DisplayOptions: {
@@ -7151,6 +7212,7 @@ declare const UpdateTemplateCommand_base: {
7151
7212
  * SelectableValues: {
7152
7213
  * Values: "<ParameterSelectableValueList>",
7153
7214
  * },
7215
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7154
7216
  * },
7155
7217
  * DefaultDropdownOptions: {
7156
7218
  * DisplayOptions: {
@@ -7161,6 +7223,7 @@ declare const UpdateTemplateCommand_base: {
7161
7223
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7162
7224
  * SelectableValues: "<FilterSelectableValues>",
7163
7225
  * CommitMode: "AUTO" || "MANUAL",
7226
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7164
7227
  * },
7165
7228
  * DefaultTextFieldOptions: {
7166
7229
  * DisplayOptions: {
@@ -7232,6 +7295,7 @@ declare const UpdateTemplateCommand_base: {
7232
7295
  * },
7233
7296
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7234
7297
  * SelectableValues: "<FilterSelectableValues>",
7298
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7235
7299
  * },
7236
7300
  * DefaultDropdownOptions: {
7237
7301
  * DisplayOptions: {
@@ -7242,6 +7306,7 @@ declare const UpdateTemplateCommand_base: {
7242
7306
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7243
7307
  * SelectableValues: "<FilterSelectableValues>",
7244
7308
  * CommitMode: "AUTO" || "MANUAL",
7309
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7245
7310
  * },
7246
7311
  * DefaultTextFieldOptions: {
7247
7312
  * DisplayOptions: {
@@ -7301,12 +7366,14 @@ declare const UpdateTemplateCommand_base: {
7301
7366
  * DisplayOptions: "<ListControlDisplayOptions>",
7302
7367
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7303
7368
  * SelectableValues: "<FilterSelectableValues>",
7369
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7304
7370
  * },
7305
7371
  * DefaultDropdownOptions: {
7306
7372
  * DisplayOptions: "<DropDownControlDisplayOptions>",
7307
7373
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7308
7374
  * SelectableValues: "<FilterSelectableValues>",
7309
7375
  * CommitMode: "AUTO" || "MANUAL",
7376
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7310
7377
  * },
7311
7378
  * DefaultTextFieldOptions: {
7312
7379
  * DisplayOptions: "<TextFieldControlDisplayOptions>",
@@ -7367,12 +7434,14 @@ declare const UpdateTemplateCommand_base: {
7367
7434
  * DisplayOptions: "<ListControlDisplayOptions>",
7368
7435
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7369
7436
  * SelectableValues: "<FilterSelectableValues>",
7437
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7370
7438
  * },
7371
7439
  * DefaultDropdownOptions: {
7372
7440
  * DisplayOptions: "<DropDownControlDisplayOptions>",
7373
7441
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7374
7442
  * SelectableValues: "<FilterSelectableValues>",
7375
7443
  * CommitMode: "AUTO" || "MANUAL",
7444
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7376
7445
  * },
7377
7446
  * DefaultTextFieldOptions: {
7378
7447
  * DisplayOptions: "<TextFieldControlDisplayOptions>",
@@ -7420,11 +7489,7 @@ declare const UpdateTemplateCommand_base: {
7420
7489
  * Column: "<ColumnIdentifier>", // required
7421
7490
  * Limit: Number("int"),
7422
7491
  * AggregationSortConfigurations: [ // AggregationSortConfigurationList // required
7423
- * { // AggregationSortConfiguration
7424
- * Column: "<ColumnIdentifier>", // required
7425
- * SortDirection: "ASC" || "DESC", // required
7426
- * AggregationFunction: "<AggregationFunction>",
7427
- * },
7492
+ * "<AggregationSortConfiguration>",
7428
7493
  * ],
7429
7494
  * TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
7430
7495
  * ParameterName: "STRING_VALUE",
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { UpdateTopicRefreshScheduleRequest, UpdateTopicRefreshScheduleResponse } from "../models/models_4";
3
+ import type { UpdateTopicRefreshScheduleRequest } from "../models/models_4";
4
+ import type { UpdateTopicRefreshScheduleResponse } from "../models/models_5";
4
5
  import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
5
6
  /**
6
7
  * @public
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_4";
3
+ import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_5";
4
4
  import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
5
5
  /**
6
6
  * @public
@@ -1,7 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { UpdateUserCustomPermissionRequest } from "../models/models_4";
4
- import type { UpdateUserCustomPermissionResponse } from "../models/models_5";
3
+ import type { UpdateUserCustomPermissionRequest, UpdateUserCustomPermissionResponse } from "../models/models_5";
5
4
  import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
6
5
  /**
7
6
  * @public
@@ -710,6 +710,19 @@ export declare const SheetControlDateTimePickerType: {
710
710
  * @public
711
711
  */
712
712
  export type SheetControlDateTimePickerType = (typeof SheetControlDateTimePickerType)[keyof typeof SheetControlDateTimePickerType];
713
+ /**
714
+ * @public
715
+ * @enum
716
+ */
717
+ export declare const ControlSortDirection: {
718
+ readonly ASC: "ASC";
719
+ readonly DESC: "DESC";
720
+ readonly USER_DEFINED_ORDER: "USER_DEFINED_ORDER";
721
+ };
722
+ /**
723
+ * @public
724
+ */
725
+ export type ControlSortDirection = (typeof ControlSortDirection)[keyof typeof ControlSortDirection];
713
726
  /**
714
727
  * @public
715
728
  * @enum
@@ -3009,6 +3022,7 @@ export declare const DataSourceType: {
3009
3022
  readonly REDSHIFT: "REDSHIFT";
3010
3023
  readonly S3: "S3";
3011
3024
  readonly S3_KNOWLEDGE_BASE: "S3_KNOWLEDGE_BASE";
3025
+ readonly S3_TABLES: "S3_TABLES";
3012
3026
  readonly SALESFORCE: "SALESFORCE";
3013
3027
  readonly SERVICENOW: "SERVICENOW";
3014
3028
  readonly SHAREPOINT: "SHAREPOINT";
@@ -1,4 +1,4 @@
1
- import type { ActionConnectorErrorType, ActionConnectorSearchFilterNameEnum, ActionConnectorType, AggType, AnalysisErrorType, AnchorOption, AuthorizationCodeGrantCredentialsSource, AxisBinding, CategoricalAggregationFunction, CategoryFilterMatchOperator, CategoryFilterSelectAllOptions, ClientCredentialsSource, ColumnRole, CommitMode, ConnectionAuthType, CrossDatasetTypes, DashboardBehavior, DataLabelContent, DataLabelOverlap, DataLabelPosition, DataPrepSimpleAggregationFunctionType, DateAggregationFunction, DayOfTheWeek, DecalPatternType, DecalStyleType, DigitGroupingStyle, Edition, FilterNullOption, FilterOperator, FilterVisualScope, FontDecoration, FontStyle, FontWeightName, HorizontalTextAlignment, ImageCustomActionTrigger, LayoutElementType, LegendPosition, NegativeValueDisplayMode, NumberScale, NumericEqualityMatchOperator, NumericFilterSelectAllOptions, NumericSeparatorSymbol, OtherCategories, PanelBorderStyle, PaperOrientation, PaperSize, ParameterValueType, PivotTableDataPathType, QBusinessInsightsStatus, QueryExecutionMode, ReferenceLineLabelHorizontalPosition, ReferenceLineLabelVerticalPosition, ReferenceLinePatternType, ReferenceLineSeriesType, ReferenceLineValueLabelRelativePosition, RelativeDateType, RelativeFontSize, ResizeOption, ResourceStatus, SectionPageBreakStatus, SelectAllValueOptions, SelectedFieldOptions, SelectedTooltipType, SheetContentType, SheetControlDateTimePickerType, SheetControlListType, SheetControlSliderType, SheetImageScalingType, SheetLayoutGroupMemberType, SimpleAttributeAggregationFunction, SimpleNumericalAggregationFunction, SmallMultiplesAxisPlacement, SmallMultiplesAxisScale, SortDirection, SpecialValue, TargetVisualOptions, TimeGranularity, TooltipTarget, TooltipTitleType, TopicTimeGranularity, URLTargetConfiguration, ValueWhenUnsetOption, Visibility, VisualCustomActionTrigger, VisualHighlightTrigger, WidgetStatus } from "./enums";
1
+ import type { ActionConnectorErrorType, ActionConnectorSearchFilterNameEnum, ActionConnectorType, AggType, AnalysisErrorType, AnchorOption, AuthorizationCodeGrantCredentialsSource, AxisBinding, CategoricalAggregationFunction, CategoryFilterMatchOperator, CategoryFilterSelectAllOptions, ClientCredentialsSource, ColumnRole, CommitMode, ConnectionAuthType, ControlSortDirection, CrossDatasetTypes, DashboardBehavior, DataLabelContent, DataLabelOverlap, DataLabelPosition, DataPrepSimpleAggregationFunctionType, DateAggregationFunction, DayOfTheWeek, DecalPatternType, DecalStyleType, DigitGroupingStyle, Edition, FilterNullOption, FilterOperator, FilterVisualScope, FontDecoration, FontStyle, FontWeightName, HorizontalTextAlignment, ImageCustomActionTrigger, LayoutElementType, LegendPosition, NegativeValueDisplayMode, NumberScale, NumericEqualityMatchOperator, NumericFilterSelectAllOptions, NumericSeparatorSymbol, OtherCategories, PanelBorderStyle, PaperOrientation, PaperSize, ParameterValueType, PivotTableDataPathType, QBusinessInsightsStatus, QueryExecutionMode, ReferenceLineLabelHorizontalPosition, ReferenceLineLabelVerticalPosition, ReferenceLinePatternType, ReferenceLineSeriesType, ReferenceLineValueLabelRelativePosition, RelativeDateType, RelativeFontSize, ResizeOption, ResourceStatus, SectionPageBreakStatus, SelectAllValueOptions, SelectedFieldOptions, SelectedTooltipType, SheetContentType, SheetControlDateTimePickerType, SheetControlListType, SheetControlSliderType, SheetImageScalingType, SheetLayoutGroupMemberType, SimpleAttributeAggregationFunction, SimpleNumericalAggregationFunction, SmallMultiplesAxisPlacement, SmallMultiplesAxisScale, SortDirection, SpecialValue, TargetVisualOptions, TimeGranularity, TooltipTarget, TooltipTitleType, TopicTimeGranularity, URLTargetConfiguration, ValueWhenUnsetOption, Visibility, VisualCustomActionTrigger, VisualHighlightTrigger, WidgetStatus } from "./enums";
2
2
  /**
3
3
  * <p>The Quick Sight customizations associated with your Amazon Web Services account or a Quick Sight namespace in a specific Amazon Web Services Region.</p>
4
4
  * @public
@@ -2677,6 +2677,47 @@ export interface DefaultDateTimePickerControlOptions {
2677
2677
  */
2678
2678
  CommitMode?: CommitMode | undefined;
2679
2679
  }
2680
+ /**
2681
+ * <p>The sort configuration for selectable values in a control.</p>
2682
+ * @public
2683
+ */
2684
+ export interface SelectableValuesSort {
2685
+ /**
2686
+ * <p>The sort direction for the selectable values. Choose one of the following options:</p>
2687
+ * <ul>
2688
+ * <li>
2689
+ * <p>
2690
+ * <code>ASC</code>: Sort in ascending order.</p>
2691
+ * </li>
2692
+ * <li>
2693
+ * <p>
2694
+ * <code>DESC</code>: Sort in descending order.</p>
2695
+ * </li>
2696
+ * <li>
2697
+ * <p>
2698
+ * <code>USER_DEFINED_ORDER</code>: Preserve the order in which the values were entered.</p>
2699
+ * </li>
2700
+ * </ul>
2701
+ * @public
2702
+ */
2703
+ Direction: ControlSortDirection | undefined;
2704
+ }
2705
+ /**
2706
+ * <p>The sort configuration for control values. This is a tagged union type. Specify either <code>SelectableValuesSort</code> or <code>ControlColumnSort</code>, but not both.</p>
2707
+ * @public
2708
+ */
2709
+ export interface ControlSortConfiguration {
2710
+ /**
2711
+ * <p>The sort configuration for user-specified values in the control. Use this option to sort values that are manually entered by users in a dropdown or list control.</p>
2712
+ * @public
2713
+ */
2714
+ SelectableValuesSort?: SelectableValuesSort | undefined;
2715
+ /**
2716
+ * <p>The sort configuration for controls that are tied to a dataset column. Use this option to sort control values by an aggregate of a column.</p>
2717
+ * @public
2718
+ */
2719
+ ControlColumnSort?: AggregationSortConfiguration | undefined;
2720
+ }
2680
2721
  /**
2681
2722
  * <p>The configuration of the <code>Select all</code> options in a list control.</p>
2682
2723
  * @public
@@ -2756,6 +2797,11 @@ export interface DefaultFilterDropDownControlOptions {
2756
2797
  * @public
2757
2798
  */
2758
2799
  CommitMode?: CommitMode | undefined;
2800
+ /**
2801
+ * <p>The sort configuration for the values displayed in the control. Only one sort configuration can be applied per control.</p>
2802
+ * @public
2803
+ */
2804
+ ControlSortConfigurations?: ControlSortConfiguration[] | undefined;
2759
2805
  }
2760
2806
  /**
2761
2807
  * <p>The configuration of the search options in a list control.</p>
@@ -2824,6 +2870,11 @@ export interface DefaultFilterListControlOptions {
2824
2870
  * @public
2825
2871
  */
2826
2872
  SelectableValues?: FilterSelectableValues | undefined;
2873
+ /**
2874
+ * <p>The sort configuration for the values displayed in the control. Only one sort configuration can be applied per control.</p>
2875
+ * @public
2876
+ */
2877
+ ControlSortConfigurations?: ControlSortConfiguration[] | undefined;
2827
2878
  }
2828
2879
  /**
2829
2880
  * <p>The display options of a control.</p>
@@ -4390,6 +4441,11 @@ export interface FilterDropDownControl {
4390
4441
  * @public
4391
4442
  */
4392
4443
  CommitMode?: CommitMode | undefined;
4444
+ /**
4445
+ * <p>The sort configuration for the values displayed in the control. Only one sort configuration can be applied per control.</p>
4446
+ * @public
4447
+ */
4448
+ ControlSortConfigurations?: ControlSortConfiguration[] | undefined;
4393
4449
  }
4394
4450
  /**
4395
4451
  * <p>A control to display a list of buttons or boxes. This is used to select either a single value or multiple values.</p>
@@ -4441,6 +4497,11 @@ export interface FilterListControl {
4441
4497
  * @public
4442
4498
  */
4443
4499
  CascadingControlConfiguration?: CascadingControlConfiguration | undefined;
4500
+ /**
4501
+ * <p>The sort configuration for the values displayed in the control. Only one sort configuration can be applied per control.</p>
4502
+ * @public
4503
+ */
4504
+ ControlSortConfigurations?: ControlSortConfiguration[] | undefined;
4444
4505
  }
4445
4506
  /**
4446
4507
  * <p>A control from a date filter that is used to specify the relative date.</p>
@@ -5354,6 +5415,11 @@ export interface ParameterDropDownControl {
5354
5415
  * @public
5355
5416
  */
5356
5417
  CommitMode?: CommitMode | undefined;
5418
+ /**
5419
+ * <p>The sort configuration for the values displayed in the control. Only one sort configuration can be applied per control.</p>
5420
+ * @public
5421
+ */
5422
+ ControlSortConfigurations?: ControlSortConfiguration[] | undefined;
5357
5423
  }
5358
5424
  /**
5359
5425
  * <p>A control to display a list with buttons or boxes that are used to select either a single value or multiple values.</p>
@@ -5395,6 +5461,11 @@ export interface ParameterListControl {
5395
5461
  * @public
5396
5462
  */
5397
5463
  CascadingControlConfiguration?: CascadingControlConfiguration | undefined;
5464
+ /**
5465
+ * <p>The sort configuration for the values displayed in the control. Only one sort configuration can be applied per control.</p>
5466
+ * @public
5467
+ */
5468
+ ControlSortConfigurations?: ControlSortConfiguration[] | undefined;
5398
5469
  }
5399
5470
  /**
5400
5471
  * <p>A control to display a horizontal toggle bar. This is used to change a value by sliding the toggle.</p>
@@ -7405,45 +7476,3 @@ export interface DataPathType {
7405
7476
  */
7406
7477
  PivotTableDataPathType?: PivotTableDataPathType | undefined;
7407
7478
  }
7408
- /**
7409
- * <p>The data path that needs to be sorted.</p>
7410
- * @public
7411
- */
7412
- export interface DataPathValue {
7413
- /**
7414
- * <p>The field ID of the field that needs to be sorted.</p>
7415
- * @public
7416
- */
7417
- FieldId?: string | undefined;
7418
- /**
7419
- * <p>The actual value of the field that needs to be sorted.</p>
7420
- * @public
7421
- */
7422
- FieldValue?: string | undefined;
7423
- /**
7424
- * <p>The type configuration of the field.</p>
7425
- * @public
7426
- */
7427
- DataPathType?: DataPathType | undefined;
7428
- }
7429
- /**
7430
- * <p>The color map that determines the color options for a particular element.</p>
7431
- * @public
7432
- */
7433
- export interface DataPathColor {
7434
- /**
7435
- * <p>The element that the color needs to be applied to.</p>
7436
- * @public
7437
- */
7438
- Element: DataPathValue | undefined;
7439
- /**
7440
- * <p>The color that needs to be applied to the element.</p>
7441
- * @public
7442
- */
7443
- Color: string | undefined;
7444
- /**
7445
- * <p>The time granularity of the field that the color needs to be applied to.</p>
7446
- * @public
7447
- */
7448
- TimeGranularity?: TimeGranularity | undefined;
7449
- }