@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
@@ -194,6 +194,34 @@ declare const CreateTemplateCommand_base: {
194
194
  * },
195
195
  * ],
196
196
  * },
197
+ * ControlSortConfigurations: [ // ControlSortConfigurationList
198
+ * { // ControlSortConfiguration
199
+ * SelectableValuesSort: { // SelectableValuesSort
200
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
201
+ * },
202
+ * ControlColumnSort: { // AggregationSortConfiguration
203
+ * Column: {
204
+ * DataSetIdentifier: "STRING_VALUE", // required
205
+ * ColumnName: "STRING_VALUE", // required
206
+ * },
207
+ * SortDirection: "ASC" || "DESC", // required
208
+ * AggregationFunction: { // AggregationFunction
209
+ * NumericalAggregationFunction: { // NumericalAggregationFunction
210
+ * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
211
+ * PercentileAggregation: { // PercentileAggregation
212
+ * PercentileValue: Number("double"),
213
+ * },
214
+ * },
215
+ * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
216
+ * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
217
+ * AttributeAggregationFunction: { // AttributeAggregationFunction
218
+ * SimpleAttributeAggregation: "UNIQUE_VALUE",
219
+ * ValueForMultipleValues: "STRING_VALUE",
220
+ * },
221
+ * },
222
+ * },
223
+ * },
224
+ * ],
197
225
  * },
198
226
  * Dropdown: { // ParameterDropDownControl
199
227
  * ParameterControlId: "STRING_VALUE", // required
@@ -247,6 +275,31 @@ declare const CreateTemplateCommand_base: {
247
275
  * ],
248
276
  * },
249
277
  * CommitMode: "AUTO" || "MANUAL",
278
+ * ControlSortConfigurations: [
279
+ * {
280
+ * SelectableValuesSort: {
281
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
282
+ * },
283
+ * ControlColumnSort: {
284
+ * Column: "<ColumnIdentifier>", // required
285
+ * SortDirection: "ASC" || "DESC", // required
286
+ * AggregationFunction: {
287
+ * NumericalAggregationFunction: {
288
+ * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
289
+ * PercentileAggregation: {
290
+ * PercentileValue: Number("double"),
291
+ * },
292
+ * },
293
+ * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
294
+ * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
295
+ * AttributeAggregationFunction: {
296
+ * SimpleAttributeAggregation: "UNIQUE_VALUE",
297
+ * ValueForMultipleValues: "STRING_VALUE",
298
+ * },
299
+ * },
300
+ * },
301
+ * },
302
+ * ],
250
303
  * },
251
304
  * TextField: { // ParameterTextFieldControl
252
305
  * ParameterControlId: "STRING_VALUE", // required
@@ -365,13 +418,35 @@ declare const CreateTemplateCommand_base: {
365
418
  * SourceControls: [
366
419
  * {
367
420
  * SourceSheetControlId: "STRING_VALUE",
368
- * ColumnToMatch: {
369
- * DataSetIdentifier: "STRING_VALUE", // required
370
- * ColumnName: "STRING_VALUE", // required
371
- * },
421
+ * ColumnToMatch: "<ColumnIdentifier>",
372
422
  * },
373
423
  * ],
374
424
  * },
425
+ * ControlSortConfigurations: [
426
+ * {
427
+ * SelectableValuesSort: {
428
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
429
+ * },
430
+ * ControlColumnSort: {
431
+ * Column: "<ColumnIdentifier>", // required
432
+ * SortDirection: "ASC" || "DESC", // required
433
+ * AggregationFunction: {
434
+ * NumericalAggregationFunction: {
435
+ * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
436
+ * PercentileAggregation: {
437
+ * PercentileValue: Number("double"),
438
+ * },
439
+ * },
440
+ * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
441
+ * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
442
+ * AttributeAggregationFunction: {
443
+ * SimpleAttributeAggregation: "UNIQUE_VALUE",
444
+ * ValueForMultipleValues: "STRING_VALUE",
445
+ * },
446
+ * },
447
+ * },
448
+ * },
449
+ * ],
375
450
  * },
376
451
  * Dropdown: { // FilterDropDownControl
377
452
  * FilterControlId: "STRING_VALUE", // required
@@ -399,6 +474,31 @@ declare const CreateTemplateCommand_base: {
399
474
  * ],
400
475
  * },
401
476
  * CommitMode: "AUTO" || "MANUAL",
477
+ * ControlSortConfigurations: [
478
+ * {
479
+ * SelectableValuesSort: {
480
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
481
+ * },
482
+ * ControlColumnSort: {
483
+ * Column: "<ColumnIdentifier>", // required
484
+ * SortDirection: "ASC" || "DESC", // required
485
+ * AggregationFunction: {
486
+ * NumericalAggregationFunction: {
487
+ * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
488
+ * PercentileAggregation: {
489
+ * PercentileValue: Number("double"),
490
+ * },
491
+ * },
492
+ * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
493
+ * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
494
+ * AttributeAggregationFunction: {
495
+ * SimpleAttributeAggregation: "UNIQUE_VALUE",
496
+ * ValueForMultipleValues: "STRING_VALUE",
497
+ * },
498
+ * },
499
+ * },
500
+ * },
501
+ * ],
402
502
  * },
403
503
  * TextField: { // FilterTextFieldControl
404
504
  * FilterControlId: "STRING_VALUE", // required
@@ -670,9 +770,9 @@ declare const CreateTemplateCommand_base: {
670
770
  * NumericalMeasureField: { // NumericalMeasureField
671
771
  * FieldId: "STRING_VALUE", // required
672
772
  * Column: "<ColumnIdentifier>", // required
673
- * AggregationFunction: { // NumericalAggregationFunction
773
+ * AggregationFunction: {
674
774
  * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
675
- * PercentileAggregation: { // PercentileAggregation
775
+ * PercentileAggregation: {
676
776
  * PercentileValue: Number("double"),
677
777
  * },
678
778
  * },
@@ -795,16 +895,11 @@ declare const CreateTemplateCommand_base: {
795
895
  * ColumnSort: { // ColumnSort
796
896
  * SortBy: "<ColumnIdentifier>", // required
797
897
  * Direction: "ASC" || "DESC", // required
798
- * AggregationFunction: { // AggregationFunction
799
- * NumericalAggregationFunction: {
800
- * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
801
- * PercentileAggregation: {
802
- * PercentileValue: Number("double"),
803
- * },
804
- * },
898
+ * AggregationFunction: {
899
+ * NumericalAggregationFunction: "<NumericalAggregationFunction>",
805
900
  * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
806
901
  * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
807
- * AttributeAggregationFunction: { // AttributeAggregationFunction
902
+ * AttributeAggregationFunction: {
808
903
  * SimpleAttributeAggregation: "UNIQUE_VALUE",
809
904
  * ValueForMultipleValues: "STRING_VALUE",
810
905
  * },
@@ -1051,20 +1146,7 @@ declare const CreateTemplateCommand_base: {
1051
1146
  * Column: "<ColumnIdentifier>", // required
1052
1147
  * Label: "STRING_VALUE",
1053
1148
  * Visibility: "HIDDEN" || "VISIBLE",
1054
- * Aggregation: {
1055
- * NumericalAggregationFunction: {
1056
- * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
1057
- * PercentileAggregation: {
1058
- * PercentileValue: Number("double"),
1059
- * },
1060
- * },
1061
- * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
1062
- * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
1063
- * AttributeAggregationFunction: {
1064
- * SimpleAttributeAggregation: "UNIQUE_VALUE",
1065
- * ValueForMultipleValues: "STRING_VALUE",
1066
- * },
1067
- * },
1149
+ * Aggregation: "<AggregationFunction>",
1068
1150
  * TooltipTarget: "BOTH" || "BAR" || "LINE",
1069
1151
  * },
1070
1152
  * },
@@ -1344,12 +1426,7 @@ declare const CreateTemplateCommand_base: {
1344
1426
  * NumericalMeasureField: {
1345
1427
  * FieldId: "STRING_VALUE", // required
1346
1428
  * Column: "<ColumnIdentifier>", // required
1347
- * AggregationFunction: {
1348
- * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
1349
- * PercentileAggregation: {
1350
- * PercentileValue: Number("double"),
1351
- * },
1352
- * },
1429
+ * AggregationFunction: "<NumericalAggregationFunction>",
1353
1430
  * FormatConfiguration: "<NumberFormatConfiguration>",
1354
1431
  * },
1355
1432
  * CategoricalMeasureField: {
@@ -1384,20 +1461,7 @@ declare const CreateTemplateCommand_base: {
1384
1461
  * Column: {
1385
1462
  * SortBy: "<ColumnIdentifier>", // required
1386
1463
  * Direction: "ASC" || "DESC", // required
1387
- * AggregationFunction: {
1388
- * NumericalAggregationFunction: {
1389
- * SimpleNumericalAggregation: "SUM" || "AVERAGE" || "MIN" || "MAX" || "COUNT" || "DISTINCT_COUNT" || "VAR" || "VARP" || "STDEV" || "STDEVP" || "MEDIAN",
1390
- * PercentileAggregation: {
1391
- * PercentileValue: Number("double"),
1392
- * },
1393
- * },
1394
- * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
1395
- * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
1396
- * AttributeAggregationFunction: {
1397
- * SimpleAttributeAggregation: "UNIQUE_VALUE",
1398
- * ValueForMultipleValues: "STRING_VALUE",
1399
- * },
1400
- * },
1464
+ * AggregationFunction: "<AggregationFunction>",
1401
1465
  * },
1402
1466
  * DataPath: { // DataPathSort
1403
1467
  * Direction: "ASC" || "DESC", // required
@@ -1603,15 +1667,7 @@ declare const CreateTemplateCommand_base: {
1603
1667
  * Column: "<ColumnIdentifier>", // required
1604
1668
  * Label: "STRING_VALUE",
1605
1669
  * Visibility: "HIDDEN" || "VISIBLE",
1606
- * Aggregation: {
1607
- * NumericalAggregationFunction: "<NumericalAggregationFunction>",
1608
- * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
1609
- * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
1610
- * AttributeAggregationFunction: {
1611
- * SimpleAttributeAggregation: "UNIQUE_VALUE",
1612
- * ValueForMultipleValues: "STRING_VALUE",
1613
- * },
1614
- * },
1670
+ * Aggregation: "<AggregationFunction>",
1615
1671
  * TooltipTarget: "BOTH" || "BAR" || "LINE",
1616
1672
  * },
1617
1673
  * },
@@ -1851,15 +1907,7 @@ declare const CreateTemplateCommand_base: {
1851
1907
  * ColumnSort: {
1852
1908
  * SortBy: "<ColumnIdentifier>", // required
1853
1909
  * Direction: "ASC" || "DESC", // required
1854
- * AggregationFunction: {
1855
- * NumericalAggregationFunction: "<NumericalAggregationFunction>",
1856
- * CategoricalAggregationFunction: "COUNT" || "DISTINCT_COUNT",
1857
- * DateAggregationFunction: "COUNT" || "DISTINCT_COUNT" || "MIN" || "MAX",
1858
- * AttributeAggregationFunction: {
1859
- * SimpleAttributeAggregation: "UNIQUE_VALUE",
1860
- * ValueForMultipleValues: "STRING_VALUE",
1861
- * },
1862
- * },
1910
+ * AggregationFunction: "<AggregationFunction>",
1863
1911
  * },
1864
1912
  * },
1865
1913
  * ],
@@ -7078,6 +7126,18 @@ declare const CreateTemplateCommand_base: {
7078
7126
  * "STRING_VALUE",
7079
7127
  * ],
7080
7128
  * },
7129
+ * ControlSortConfigurations: [
7130
+ * {
7131
+ * SelectableValuesSort: {
7132
+ * Direction: "ASC" || "DESC" || "USER_DEFINED_ORDER", // required
7133
+ * },
7134
+ * ControlColumnSort: {
7135
+ * Column: "<ColumnIdentifier>", // required
7136
+ * SortDirection: "ASC" || "DESC", // required
7137
+ * AggregationFunction: "<AggregationFunction>",
7138
+ * },
7139
+ * },
7140
+ * ],
7081
7141
  * },
7082
7142
  * DefaultDropdownOptions: { // DefaultFilterDropDownControlOptions
7083
7143
  * DisplayOptions: {
@@ -7090,6 +7150,7 @@ declare const CreateTemplateCommand_base: {
7090
7150
  * Values: "<ParameterSelectableValueList>",
7091
7151
  * },
7092
7152
  * CommitMode: "AUTO" || "MANUAL",
7153
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7093
7154
  * },
7094
7155
  * DefaultTextFieldOptions: { // DefaultTextFieldControlOptions
7095
7156
  * DisplayOptions: {
@@ -7172,6 +7233,7 @@ declare const CreateTemplateCommand_base: {
7172
7233
  * SelectableValues: {
7173
7234
  * Values: "<ParameterSelectableValueList>",
7174
7235
  * },
7236
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7175
7237
  * },
7176
7238
  * DefaultDropdownOptions: {
7177
7239
  * DisplayOptions: {
@@ -7182,6 +7244,7 @@ declare const CreateTemplateCommand_base: {
7182
7244
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7183
7245
  * SelectableValues: "<FilterSelectableValues>",
7184
7246
  * CommitMode: "AUTO" || "MANUAL",
7247
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7185
7248
  * },
7186
7249
  * DefaultTextFieldOptions: {
7187
7250
  * DisplayOptions: {
@@ -7253,6 +7316,7 @@ declare const CreateTemplateCommand_base: {
7253
7316
  * },
7254
7317
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7255
7318
  * SelectableValues: "<FilterSelectableValues>",
7319
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7256
7320
  * },
7257
7321
  * DefaultDropdownOptions: {
7258
7322
  * DisplayOptions: {
@@ -7263,6 +7327,7 @@ declare const CreateTemplateCommand_base: {
7263
7327
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7264
7328
  * SelectableValues: "<FilterSelectableValues>",
7265
7329
  * CommitMode: "AUTO" || "MANUAL",
7330
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7266
7331
  * },
7267
7332
  * DefaultTextFieldOptions: {
7268
7333
  * DisplayOptions: {
@@ -7322,12 +7387,14 @@ declare const CreateTemplateCommand_base: {
7322
7387
  * DisplayOptions: "<ListControlDisplayOptions>",
7323
7388
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7324
7389
  * SelectableValues: "<FilterSelectableValues>",
7390
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7325
7391
  * },
7326
7392
  * DefaultDropdownOptions: {
7327
7393
  * DisplayOptions: "<DropDownControlDisplayOptions>",
7328
7394
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7329
7395
  * SelectableValues: "<FilterSelectableValues>",
7330
7396
  * CommitMode: "AUTO" || "MANUAL",
7397
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7331
7398
  * },
7332
7399
  * DefaultTextFieldOptions: {
7333
7400
  * DisplayOptions: "<TextFieldControlDisplayOptions>",
@@ -7388,12 +7455,14 @@ declare const CreateTemplateCommand_base: {
7388
7455
  * DisplayOptions: "<ListControlDisplayOptions>",
7389
7456
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7390
7457
  * SelectableValues: "<FilterSelectableValues>",
7458
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7391
7459
  * },
7392
7460
  * DefaultDropdownOptions: {
7393
7461
  * DisplayOptions: "<DropDownControlDisplayOptions>",
7394
7462
  * Type: "MULTI_SELECT" || "SINGLE_SELECT",
7395
7463
  * SelectableValues: "<FilterSelectableValues>",
7396
7464
  * CommitMode: "AUTO" || "MANUAL",
7465
+ * ControlSortConfigurations: "<ControlSortConfigurationList>",
7397
7466
  * },
7398
7467
  * DefaultTextFieldOptions: {
7399
7468
  * DisplayOptions: "<TextFieldControlDisplayOptions>",
@@ -7441,11 +7510,7 @@ declare const CreateTemplateCommand_base: {
7441
7510
  * Column: "<ColumnIdentifier>", // required
7442
7511
  * Limit: Number("int"),
7443
7512
  * AggregationSortConfigurations: [ // AggregationSortConfigurationList // required
7444
- * { // AggregationSortConfiguration
7445
- * Column: "<ColumnIdentifier>", // required
7446
- * SortDirection: "ASC" || "DESC", // required
7447
- * AggregationFunction: "<AggregationFunction>",
7448
- * },
7513
+ * "<AggregationSortConfiguration>",
7449
7514
  * ],
7450
7515
  * TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
7451
7516
  * ParameterName: "STRING_VALUE",