@aws-sdk/client-quicksight 3.431.0 → 3.433.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.
- package/dist-cjs/commands/StartAssetBundleImportJobCommand.js +2 -2
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +17 -9
- package/dist-cjs/models/models_1.js +20 -9
- package/dist-cjs/models/models_2.js +17 -25
- package/dist-cjs/models/models_3.js +22 -15
- package/dist-cjs/models/models_4.js +16 -1
- package/dist-cjs/protocols/Aws_restJson1.js +8 -0
- package/dist-es/commands/StartAssetBundleImportJobCommand.js +1 -1
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +14 -6
- package/dist-es/models/models_1.js +15 -4
- package/dist-es/models/models_2.js +13 -22
- package/dist-es/models/models_3.js +22 -13
- package/dist-es/models/models_4.js +14 -1
- package/dist-es/protocols/Aws_restJson1.js +8 -0
- package/dist-types/commands/CreateAnalysisCommand.d.ts +47 -12
- package/dist-types/commands/CreateDashboardCommand.d.ts +47 -12
- package/dist-types/commands/CreateDataSetCommand.d.ts +3 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +25 -0
- package/dist-types/commands/CreateFolderCommand.d.ts +1 -1
- package/dist-types/commands/CreateTemplateCommand.d.ts +44 -12
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +44 -12
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +11 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +44 -12
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +22 -0
- package/dist-types/commands/DescribeFolderCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +44 -12
- package/dist-types/commands/ListDataSourcesCommand.d.ts +22 -0
- package/dist-types/commands/ListFoldersCommand.d.ts +1 -1
- package/dist-types/commands/SearchFoldersCommand.d.ts +2 -2
- package/dist-types/commands/SearchGroupsCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +12 -1
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +44 -12
- package/dist-types/commands/UpdateDashboardCommand.d.ts +44 -12
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +22 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +44 -12
- package/dist-types/models/models_0.d.ts +111 -106
- package/dist-types/models/models_1.d.ts +137 -122
- package/dist-types/models/models_2.d.ts +320 -310
- package/dist-types/models/models_3.d.ts +309 -290
- package/dist-types/models/models_4.d.ts +290 -2
- package/dist-types/ts3.4/commands/SearchFoldersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAssetBundleImportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +29 -26
- package/dist-types/ts3.4/models/models_1.d.ts +40 -31
- package/dist-types/ts3.4/models/models_2.d.ts +161 -83
- package/dist-types/ts3.4/models/models_3.d.ts +81 -70
- package/dist-types/ts3.4/models/models_4.d.ts +70 -1
- package/package.json +32 -32
|
@@ -871,6 +871,14 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
871
871
|
* },
|
|
872
872
|
* },
|
|
873
873
|
* },
|
|
874
|
+
* TotalAggregationOptions: [ // TotalAggregationOptionList
|
|
875
|
+
* { // TotalAggregationOption
|
|
876
|
+
* FieldId: "STRING_VALUE", // required
|
|
877
|
+
* TotalAggregationFunction: { // TotalAggregationFunction
|
|
878
|
+
* SimpleTotalAggregationFunction: "DEFAULT" || "SUM" || "AVERAGE" || "MIN" || "MAX" || "NONE",
|
|
879
|
+
* },
|
|
880
|
+
* },
|
|
881
|
+
* ],
|
|
874
882
|
* },
|
|
875
883
|
* FieldOptions: { // TableFieldOptions
|
|
876
884
|
* SelectedFieldOptions: [ // TableFieldOptionList
|
|
@@ -1243,8 +1251,11 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
1243
1251
|
* Direction: "ASC" || "DESC", // required
|
|
1244
1252
|
* SortPaths: [ // DataPathValueList // required
|
|
1245
1253
|
* { // DataPathValue
|
|
1246
|
-
* FieldId: "STRING_VALUE",
|
|
1247
|
-
* FieldValue: "STRING_VALUE",
|
|
1254
|
+
* FieldId: "STRING_VALUE",
|
|
1255
|
+
* FieldValue: "STRING_VALUE",
|
|
1256
|
+
* DataPathType: { // DataPathType
|
|
1257
|
+
* PivotTableDataPathType: "HIERARCHY_ROWS_LAYOUT_COLUMN" || "MULTIPLE_ROW_METRICS_COLUMN" || "EMPTY_COLUMN_HEADER" || "COUNT_METRIC_COLUMN",
|
|
1258
|
+
* },
|
|
1248
1259
|
* },
|
|
1249
1260
|
* ],
|
|
1250
1261
|
* },
|
|
@@ -1359,6 +1370,14 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
1359
1370
|
* TotalCellStyle: "<TableCellStyle>",
|
|
1360
1371
|
* ValueCellStyle: "<TableCellStyle>",
|
|
1361
1372
|
* MetricHeaderCellStyle: "<TableCellStyle>",
|
|
1373
|
+
* TotalAggregationOptions: [
|
|
1374
|
+
* {
|
|
1375
|
+
* FieldId: "STRING_VALUE", // required
|
|
1376
|
+
* TotalAggregationFunction: {
|
|
1377
|
+
* SimpleTotalAggregationFunction: "DEFAULT" || "SUM" || "AVERAGE" || "MIN" || "MAX" || "NONE",
|
|
1378
|
+
* },
|
|
1379
|
+
* },
|
|
1380
|
+
* ],
|
|
1362
1381
|
* },
|
|
1363
1382
|
* ColumnTotalOptions: {
|
|
1364
1383
|
* TotalsVisibility: "HIDDEN" || "VISIBLE",
|
|
@@ -1368,6 +1387,14 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
1368
1387
|
* TotalCellStyle: "<TableCellStyle>",
|
|
1369
1388
|
* ValueCellStyle: "<TableCellStyle>",
|
|
1370
1389
|
* MetricHeaderCellStyle: "<TableCellStyle>",
|
|
1390
|
+
* TotalAggregationOptions: [
|
|
1391
|
+
* {
|
|
1392
|
+
* FieldId: "STRING_VALUE", // required
|
|
1393
|
+
* TotalAggregationFunction: {
|
|
1394
|
+
* SimpleTotalAggregationFunction: "DEFAULT" || "SUM" || "AVERAGE" || "MIN" || "MAX" || "NONE",
|
|
1395
|
+
* },
|
|
1396
|
+
* },
|
|
1397
|
+
* ],
|
|
1371
1398
|
* },
|
|
1372
1399
|
* },
|
|
1373
1400
|
* FieldOptions: { // PivotTableFieldOptions
|
|
@@ -1382,8 +1409,11 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
1382
1409
|
* { // PivotTableDataPathOption
|
|
1383
1410
|
* DataPathList: [ // required
|
|
1384
1411
|
* {
|
|
1385
|
-
* FieldId: "STRING_VALUE",
|
|
1386
|
-
* FieldValue: "STRING_VALUE",
|
|
1412
|
+
* FieldId: "STRING_VALUE",
|
|
1413
|
+
* FieldValue: "STRING_VALUE",
|
|
1414
|
+
* DataPathType: {
|
|
1415
|
+
* PivotTableDataPathType: "HIERARCHY_ROWS_LAYOUT_COLUMN" || "MULTIPLE_ROW_METRICS_COLUMN" || "EMPTY_COLUMN_HEADER" || "COUNT_METRIC_COLUMN",
|
|
1416
|
+
* },
|
|
1387
1417
|
* },
|
|
1388
1418
|
* ],
|
|
1389
1419
|
* Width: "STRING_VALUE",
|
|
@@ -1947,6 +1977,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
1947
1977
|
* Calculation: "<NumericalAggregationFunction>", // required
|
|
1948
1978
|
* },
|
|
1949
1979
|
* AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
1980
|
+
* SeriesType: "BAR" || "LINE",
|
|
1950
1981
|
* },
|
|
1951
1982
|
* StyleConfiguration: { // ReferenceLineStyleConfiguration
|
|
1952
1983
|
* Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -3155,6 +3186,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
3155
3186
|
* Calculation: "<NumericalAggregationFunction>", // required
|
|
3156
3187
|
* },
|
|
3157
3188
|
* AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3189
|
+
* SeriesType: "BAR" || "LINE",
|
|
3158
3190
|
* },
|
|
3159
3191
|
* StyleConfiguration: {
|
|
3160
3192
|
* Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -3639,6 +3671,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
3639
3671
|
* Calculation: "<NumericalAggregationFunction>", // required
|
|
3640
3672
|
* },
|
|
3641
3673
|
* AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3674
|
+
* SeriesType: "BAR" || "LINE",
|
|
3642
3675
|
* },
|
|
3643
3676
|
* StyleConfiguration: {
|
|
3644
3677
|
* Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -3712,6 +3745,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
3712
3745
|
* Calculation: "<NumericalAggregationFunction>", // required
|
|
3713
3746
|
* },
|
|
3714
3747
|
* AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3748
|
+
* SeriesType: "BAR" || "LINE",
|
|
3715
3749
|
* },
|
|
3716
3750
|
* StyleConfiguration: {
|
|
3717
3751
|
* Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -4382,6 +4416,10 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
4382
4416
|
* Value: new Date("TIMESTAMP"),
|
|
4383
4417
|
* ParameterName: "STRING_VALUE",
|
|
4384
4418
|
* TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
|
|
4419
|
+
* RollingDate: {
|
|
4420
|
+
* DataSetIdentifier: "STRING_VALUE",
|
|
4421
|
+
* Expression: "STRING_VALUE", // required
|
|
4422
|
+
* },
|
|
4385
4423
|
* },
|
|
4386
4424
|
* TimeRangeFilter: { // TimeRangeFilter
|
|
4387
4425
|
* FilterId: "STRING_VALUE", // required
|
|
@@ -4390,18 +4428,12 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
4390
4428
|
* IncludeMaximum: true || false,
|
|
4391
4429
|
* RangeMinimumValue: { // TimeRangeFilterValue
|
|
4392
4430
|
* StaticValue: new Date("TIMESTAMP"),
|
|
4393
|
-
* RollingDate:
|
|
4394
|
-
* DataSetIdentifier: "STRING_VALUE",
|
|
4395
|
-
* Expression: "STRING_VALUE", // required
|
|
4396
|
-
* },
|
|
4431
|
+
* RollingDate: "<RollingDateConfiguration>",
|
|
4397
4432
|
* Parameter: "STRING_VALUE",
|
|
4398
4433
|
* },
|
|
4399
4434
|
* RangeMaximumValue: {
|
|
4400
4435
|
* StaticValue: new Date("TIMESTAMP"),
|
|
4401
|
-
* RollingDate:
|
|
4402
|
-
* DataSetIdentifier: "STRING_VALUE",
|
|
4403
|
-
* Expression: "STRING_VALUE", // required
|
|
4404
|
-
* },
|
|
4436
|
+
* RollingDate: "<RollingDateConfiguration>",
|
|
4405
4437
|
* Parameter: "STRING_VALUE",
|
|
4406
4438
|
* },
|
|
4407
4439
|
* NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
|
|
@@ -843,6 +843,14 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
843
843
|
* // },
|
|
844
844
|
* // },
|
|
845
845
|
* // },
|
|
846
|
+
* // TotalAggregationOptions: [ // TotalAggregationOptionList
|
|
847
|
+
* // { // TotalAggregationOption
|
|
848
|
+
* // FieldId: "STRING_VALUE", // required
|
|
849
|
+
* // TotalAggregationFunction: { // TotalAggregationFunction
|
|
850
|
+
* // SimpleTotalAggregationFunction: "DEFAULT" || "SUM" || "AVERAGE" || "MIN" || "MAX" || "NONE",
|
|
851
|
+
* // },
|
|
852
|
+
* // },
|
|
853
|
+
* // ],
|
|
846
854
|
* // },
|
|
847
855
|
* // FieldOptions: { // TableFieldOptions
|
|
848
856
|
* // SelectedFieldOptions: [ // TableFieldOptionList
|
|
@@ -1215,8 +1223,11 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
1215
1223
|
* // Direction: "ASC" || "DESC", // required
|
|
1216
1224
|
* // SortPaths: [ // DataPathValueList // required
|
|
1217
1225
|
* // { // DataPathValue
|
|
1218
|
-
* // FieldId: "STRING_VALUE",
|
|
1219
|
-
* // FieldValue: "STRING_VALUE",
|
|
1226
|
+
* // FieldId: "STRING_VALUE",
|
|
1227
|
+
* // FieldValue: "STRING_VALUE",
|
|
1228
|
+
* // DataPathType: { // DataPathType
|
|
1229
|
+
* // PivotTableDataPathType: "HIERARCHY_ROWS_LAYOUT_COLUMN" || "MULTIPLE_ROW_METRICS_COLUMN" || "EMPTY_COLUMN_HEADER" || "COUNT_METRIC_COLUMN",
|
|
1230
|
+
* // },
|
|
1220
1231
|
* // },
|
|
1221
1232
|
* // ],
|
|
1222
1233
|
* // },
|
|
@@ -1331,6 +1342,14 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
1331
1342
|
* // TotalCellStyle: "<TableCellStyle>",
|
|
1332
1343
|
* // ValueCellStyle: "<TableCellStyle>",
|
|
1333
1344
|
* // MetricHeaderCellStyle: "<TableCellStyle>",
|
|
1345
|
+
* // TotalAggregationOptions: [
|
|
1346
|
+
* // {
|
|
1347
|
+
* // FieldId: "STRING_VALUE", // required
|
|
1348
|
+
* // TotalAggregationFunction: {
|
|
1349
|
+
* // SimpleTotalAggregationFunction: "DEFAULT" || "SUM" || "AVERAGE" || "MIN" || "MAX" || "NONE",
|
|
1350
|
+
* // },
|
|
1351
|
+
* // },
|
|
1352
|
+
* // ],
|
|
1334
1353
|
* // },
|
|
1335
1354
|
* // ColumnTotalOptions: {
|
|
1336
1355
|
* // TotalsVisibility: "HIDDEN" || "VISIBLE",
|
|
@@ -1340,6 +1359,14 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
1340
1359
|
* // TotalCellStyle: "<TableCellStyle>",
|
|
1341
1360
|
* // ValueCellStyle: "<TableCellStyle>",
|
|
1342
1361
|
* // MetricHeaderCellStyle: "<TableCellStyle>",
|
|
1362
|
+
* // TotalAggregationOptions: [
|
|
1363
|
+
* // {
|
|
1364
|
+
* // FieldId: "STRING_VALUE", // required
|
|
1365
|
+
* // TotalAggregationFunction: {
|
|
1366
|
+
* // SimpleTotalAggregationFunction: "DEFAULT" || "SUM" || "AVERAGE" || "MIN" || "MAX" || "NONE",
|
|
1367
|
+
* // },
|
|
1368
|
+
* // },
|
|
1369
|
+
* // ],
|
|
1343
1370
|
* // },
|
|
1344
1371
|
* // },
|
|
1345
1372
|
* // FieldOptions: { // PivotTableFieldOptions
|
|
@@ -1354,8 +1381,11 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
1354
1381
|
* // { // PivotTableDataPathOption
|
|
1355
1382
|
* // DataPathList: [ // required
|
|
1356
1383
|
* // {
|
|
1357
|
-
* // FieldId: "STRING_VALUE",
|
|
1358
|
-
* // FieldValue: "STRING_VALUE",
|
|
1384
|
+
* // FieldId: "STRING_VALUE",
|
|
1385
|
+
* // FieldValue: "STRING_VALUE",
|
|
1386
|
+
* // DataPathType: {
|
|
1387
|
+
* // PivotTableDataPathType: "HIERARCHY_ROWS_LAYOUT_COLUMN" || "MULTIPLE_ROW_METRICS_COLUMN" || "EMPTY_COLUMN_HEADER" || "COUNT_METRIC_COLUMN",
|
|
1388
|
+
* // },
|
|
1359
1389
|
* // },
|
|
1360
1390
|
* // ],
|
|
1361
1391
|
* // Width: "STRING_VALUE",
|
|
@@ -1919,6 +1949,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
1919
1949
|
* // Calculation: "<NumericalAggregationFunction>", // required
|
|
1920
1950
|
* // },
|
|
1921
1951
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
1952
|
+
* // SeriesType: "BAR" || "LINE",
|
|
1922
1953
|
* // },
|
|
1923
1954
|
* // StyleConfiguration: { // ReferenceLineStyleConfiguration
|
|
1924
1955
|
* // Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -3127,6 +3158,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
3127
3158
|
* // Calculation: "<NumericalAggregationFunction>", // required
|
|
3128
3159
|
* // },
|
|
3129
3160
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3161
|
+
* // SeriesType: "BAR" || "LINE",
|
|
3130
3162
|
* // },
|
|
3131
3163
|
* // StyleConfiguration: {
|
|
3132
3164
|
* // Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -3611,6 +3643,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
3611
3643
|
* // Calculation: "<NumericalAggregationFunction>", // required
|
|
3612
3644
|
* // },
|
|
3613
3645
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3646
|
+
* // SeriesType: "BAR" || "LINE",
|
|
3614
3647
|
* // },
|
|
3615
3648
|
* // StyleConfiguration: {
|
|
3616
3649
|
* // Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -3684,6 +3717,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
3684
3717
|
* // Calculation: "<NumericalAggregationFunction>", // required
|
|
3685
3718
|
* // },
|
|
3686
3719
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3720
|
+
* // SeriesType: "BAR" || "LINE",
|
|
3687
3721
|
* // },
|
|
3688
3722
|
* // StyleConfiguration: {
|
|
3689
3723
|
* // Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -4354,6 +4388,10 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
4354
4388
|
* // Value: new Date("TIMESTAMP"),
|
|
4355
4389
|
* // ParameterName: "STRING_VALUE",
|
|
4356
4390
|
* // TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
|
|
4391
|
+
* // RollingDate: {
|
|
4392
|
+
* // DataSetIdentifier: "STRING_VALUE",
|
|
4393
|
+
* // Expression: "STRING_VALUE", // required
|
|
4394
|
+
* // },
|
|
4357
4395
|
* // },
|
|
4358
4396
|
* // TimeRangeFilter: { // TimeRangeFilter
|
|
4359
4397
|
* // FilterId: "STRING_VALUE", // required
|
|
@@ -4362,18 +4400,12 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
|
|
|
4362
4400
|
* // IncludeMaximum: true || false,
|
|
4363
4401
|
* // RangeMinimumValue: { // TimeRangeFilterValue
|
|
4364
4402
|
* // StaticValue: new Date("TIMESTAMP"),
|
|
4365
|
-
* // RollingDate:
|
|
4366
|
-
* // DataSetIdentifier: "STRING_VALUE",
|
|
4367
|
-
* // Expression: "STRING_VALUE", // required
|
|
4368
|
-
* // },
|
|
4403
|
+
* // RollingDate: "<RollingDateConfiguration>",
|
|
4369
4404
|
* // Parameter: "STRING_VALUE",
|
|
4370
4405
|
* // },
|
|
4371
4406
|
* // RangeMaximumValue: {
|
|
4372
4407
|
* // StaticValue: new Date("TIMESTAMP"),
|
|
4373
|
-
* // RollingDate:
|
|
4374
|
-
* // DataSetIdentifier: "STRING_VALUE",
|
|
4375
|
-
* // Expression: "STRING_VALUE", // required
|
|
4376
|
-
* // },
|
|
4408
|
+
* // RollingDate: "<RollingDateConfiguration>",
|
|
4377
4409
|
* // Parameter: "STRING_VALUE",
|
|
4378
4410
|
* // },
|
|
4379
4411
|
* // NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
|
|
@@ -204,6 +204,17 @@ export interface DescribeAssetBundleImportJobCommandOutput extends DescribeAsset
|
|
|
204
204
|
* // Port: Number("int"), // required
|
|
205
205
|
* // SqlEndpointPath: "STRING_VALUE", // required
|
|
206
206
|
* // },
|
|
207
|
+
* // StarburstParameters: { // StarburstParameters
|
|
208
|
+
* // Host: "STRING_VALUE", // required
|
|
209
|
+
* // Port: Number("int"), // required
|
|
210
|
+
* // Catalog: "STRING_VALUE", // required
|
|
211
|
+
* // ProductType: "GALAXY" || "ENTERPRISE",
|
|
212
|
+
* // },
|
|
213
|
+
* // TrinoParameters: { // TrinoParameters
|
|
214
|
+
* // Host: "STRING_VALUE", // required
|
|
215
|
+
* // Port: Number("int"), // required
|
|
216
|
+
* // Catalog: "STRING_VALUE", // required
|
|
217
|
+
* // },
|
|
207
218
|
* // },
|
|
208
219
|
* // VpcConnectionProperties: { // VpcConnectionProperties
|
|
209
220
|
* // VpcConnectionArn: "STRING_VALUE", // required
|
|
@@ -845,6 +845,14 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
845
845
|
* // },
|
|
846
846
|
* // },
|
|
847
847
|
* // },
|
|
848
|
+
* // TotalAggregationOptions: [ // TotalAggregationOptionList
|
|
849
|
+
* // { // TotalAggregationOption
|
|
850
|
+
* // FieldId: "STRING_VALUE", // required
|
|
851
|
+
* // TotalAggregationFunction: { // TotalAggregationFunction
|
|
852
|
+
* // SimpleTotalAggregationFunction: "DEFAULT" || "SUM" || "AVERAGE" || "MIN" || "MAX" || "NONE",
|
|
853
|
+
* // },
|
|
854
|
+
* // },
|
|
855
|
+
* // ],
|
|
848
856
|
* // },
|
|
849
857
|
* // FieldOptions: { // TableFieldOptions
|
|
850
858
|
* // SelectedFieldOptions: [ // TableFieldOptionList
|
|
@@ -1217,8 +1225,11 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
1217
1225
|
* // Direction: "ASC" || "DESC", // required
|
|
1218
1226
|
* // SortPaths: [ // DataPathValueList // required
|
|
1219
1227
|
* // { // DataPathValue
|
|
1220
|
-
* // FieldId: "STRING_VALUE",
|
|
1221
|
-
* // FieldValue: "STRING_VALUE",
|
|
1228
|
+
* // FieldId: "STRING_VALUE",
|
|
1229
|
+
* // FieldValue: "STRING_VALUE",
|
|
1230
|
+
* // DataPathType: { // DataPathType
|
|
1231
|
+
* // PivotTableDataPathType: "HIERARCHY_ROWS_LAYOUT_COLUMN" || "MULTIPLE_ROW_METRICS_COLUMN" || "EMPTY_COLUMN_HEADER" || "COUNT_METRIC_COLUMN",
|
|
1232
|
+
* // },
|
|
1222
1233
|
* // },
|
|
1223
1234
|
* // ],
|
|
1224
1235
|
* // },
|
|
@@ -1333,6 +1344,14 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
1333
1344
|
* // TotalCellStyle: "<TableCellStyle>",
|
|
1334
1345
|
* // ValueCellStyle: "<TableCellStyle>",
|
|
1335
1346
|
* // MetricHeaderCellStyle: "<TableCellStyle>",
|
|
1347
|
+
* // TotalAggregationOptions: [
|
|
1348
|
+
* // {
|
|
1349
|
+
* // FieldId: "STRING_VALUE", // required
|
|
1350
|
+
* // TotalAggregationFunction: {
|
|
1351
|
+
* // SimpleTotalAggregationFunction: "DEFAULT" || "SUM" || "AVERAGE" || "MIN" || "MAX" || "NONE",
|
|
1352
|
+
* // },
|
|
1353
|
+
* // },
|
|
1354
|
+
* // ],
|
|
1336
1355
|
* // },
|
|
1337
1356
|
* // ColumnTotalOptions: {
|
|
1338
1357
|
* // TotalsVisibility: "HIDDEN" || "VISIBLE",
|
|
@@ -1342,6 +1361,14 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
1342
1361
|
* // TotalCellStyle: "<TableCellStyle>",
|
|
1343
1362
|
* // ValueCellStyle: "<TableCellStyle>",
|
|
1344
1363
|
* // MetricHeaderCellStyle: "<TableCellStyle>",
|
|
1364
|
+
* // TotalAggregationOptions: [
|
|
1365
|
+
* // {
|
|
1366
|
+
* // FieldId: "STRING_VALUE", // required
|
|
1367
|
+
* // TotalAggregationFunction: {
|
|
1368
|
+
* // SimpleTotalAggregationFunction: "DEFAULT" || "SUM" || "AVERAGE" || "MIN" || "MAX" || "NONE",
|
|
1369
|
+
* // },
|
|
1370
|
+
* // },
|
|
1371
|
+
* // ],
|
|
1345
1372
|
* // },
|
|
1346
1373
|
* // },
|
|
1347
1374
|
* // FieldOptions: { // PivotTableFieldOptions
|
|
@@ -1356,8 +1383,11 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
1356
1383
|
* // { // PivotTableDataPathOption
|
|
1357
1384
|
* // DataPathList: [ // required
|
|
1358
1385
|
* // {
|
|
1359
|
-
* // FieldId: "STRING_VALUE",
|
|
1360
|
-
* // FieldValue: "STRING_VALUE",
|
|
1386
|
+
* // FieldId: "STRING_VALUE",
|
|
1387
|
+
* // FieldValue: "STRING_VALUE",
|
|
1388
|
+
* // DataPathType: {
|
|
1389
|
+
* // PivotTableDataPathType: "HIERARCHY_ROWS_LAYOUT_COLUMN" || "MULTIPLE_ROW_METRICS_COLUMN" || "EMPTY_COLUMN_HEADER" || "COUNT_METRIC_COLUMN",
|
|
1390
|
+
* // },
|
|
1361
1391
|
* // },
|
|
1362
1392
|
* // ],
|
|
1363
1393
|
* // Width: "STRING_VALUE",
|
|
@@ -1921,6 +1951,7 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
1921
1951
|
* // Calculation: "<NumericalAggregationFunction>", // required
|
|
1922
1952
|
* // },
|
|
1923
1953
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
1954
|
+
* // SeriesType: "BAR" || "LINE",
|
|
1924
1955
|
* // },
|
|
1925
1956
|
* // StyleConfiguration: { // ReferenceLineStyleConfiguration
|
|
1926
1957
|
* // Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -3129,6 +3160,7 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
3129
3160
|
* // Calculation: "<NumericalAggregationFunction>", // required
|
|
3130
3161
|
* // },
|
|
3131
3162
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3163
|
+
* // SeriesType: "BAR" || "LINE",
|
|
3132
3164
|
* // },
|
|
3133
3165
|
* // StyleConfiguration: {
|
|
3134
3166
|
* // Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -3613,6 +3645,7 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
3613
3645
|
* // Calculation: "<NumericalAggregationFunction>", // required
|
|
3614
3646
|
* // },
|
|
3615
3647
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3648
|
+
* // SeriesType: "BAR" || "LINE",
|
|
3616
3649
|
* // },
|
|
3617
3650
|
* // StyleConfiguration: {
|
|
3618
3651
|
* // Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -3686,6 +3719,7 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
3686
3719
|
* // Calculation: "<NumericalAggregationFunction>", // required
|
|
3687
3720
|
* // },
|
|
3688
3721
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3722
|
+
* // SeriesType: "BAR" || "LINE",
|
|
3689
3723
|
* // },
|
|
3690
3724
|
* // StyleConfiguration: {
|
|
3691
3725
|
* // Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -4356,6 +4390,10 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
4356
4390
|
* // Value: new Date("TIMESTAMP"),
|
|
4357
4391
|
* // ParameterName: "STRING_VALUE",
|
|
4358
4392
|
* // TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
|
|
4393
|
+
* // RollingDate: {
|
|
4394
|
+
* // DataSetIdentifier: "STRING_VALUE",
|
|
4395
|
+
* // Expression: "STRING_VALUE", // required
|
|
4396
|
+
* // },
|
|
4359
4397
|
* // },
|
|
4360
4398
|
* // TimeRangeFilter: { // TimeRangeFilter
|
|
4361
4399
|
* // FilterId: "STRING_VALUE", // required
|
|
@@ -4364,18 +4402,12 @@ export interface DescribeDashboardDefinitionCommandOutput extends DescribeDashbo
|
|
|
4364
4402
|
* // IncludeMaximum: true || false,
|
|
4365
4403
|
* // RangeMinimumValue: { // TimeRangeFilterValue
|
|
4366
4404
|
* // StaticValue: new Date("TIMESTAMP"),
|
|
4367
|
-
* // RollingDate:
|
|
4368
|
-
* // DataSetIdentifier: "STRING_VALUE",
|
|
4369
|
-
* // Expression: "STRING_VALUE", // required
|
|
4370
|
-
* // },
|
|
4405
|
+
* // RollingDate: "<RollingDateConfiguration>",
|
|
4371
4406
|
* // Parameter: "STRING_VALUE",
|
|
4372
4407
|
* // },
|
|
4373
4408
|
* // RangeMaximumValue: {
|
|
4374
4409
|
* // StaticValue: new Date("TIMESTAMP"),
|
|
4375
|
-
* // RollingDate:
|
|
4376
|
-
* // DataSetIdentifier: "STRING_VALUE",
|
|
4377
|
-
* // Expression: "STRING_VALUE", // required
|
|
4378
|
-
* // },
|
|
4410
|
+
* // RollingDate: "<RollingDateConfiguration>",
|
|
4379
4411
|
* // Parameter: "STRING_VALUE",
|
|
4380
4412
|
* // },
|
|
4381
4413
|
* // NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
|
|
@@ -157,6 +157,17 @@ export interface DescribeDataSourceCommandOutput extends DescribeDataSourceRespo
|
|
|
157
157
|
* // Port: Number("int"), // required
|
|
158
158
|
* // SqlEndpointPath: "STRING_VALUE", // required
|
|
159
159
|
* // },
|
|
160
|
+
* // StarburstParameters: { // StarburstParameters
|
|
161
|
+
* // Host: "STRING_VALUE", // required
|
|
162
|
+
* // Port: Number("int"), // required
|
|
163
|
+
* // Catalog: "STRING_VALUE", // required
|
|
164
|
+
* // ProductType: "GALAXY" || "ENTERPRISE",
|
|
165
|
+
* // },
|
|
166
|
+
* // TrinoParameters: { // TrinoParameters
|
|
167
|
+
* // Host: "STRING_VALUE", // required
|
|
168
|
+
* // Port: Number("int"), // required
|
|
169
|
+
* // Catalog: "STRING_VALUE", // required
|
|
170
|
+
* // },
|
|
160
171
|
* // },
|
|
161
172
|
* // AlternateDataSourceParameters: [ // DataSourceParametersList
|
|
162
173
|
* // {// Union: only one key present
|
|
@@ -271,6 +282,17 @@ export interface DescribeDataSourceCommandOutput extends DescribeDataSourceRespo
|
|
|
271
282
|
* // Port: Number("int"), // required
|
|
272
283
|
* // SqlEndpointPath: "STRING_VALUE", // required
|
|
273
284
|
* // },
|
|
285
|
+
* // StarburstParameters: {
|
|
286
|
+
* // Host: "STRING_VALUE", // required
|
|
287
|
+
* // Port: Number("int"), // required
|
|
288
|
+
* // Catalog: "STRING_VALUE", // required
|
|
289
|
+
* // ProductType: "GALAXY" || "ENTERPRISE",
|
|
290
|
+
* // },
|
|
291
|
+
* // TrinoParameters: {
|
|
292
|
+
* // Host: "STRING_VALUE", // required
|
|
293
|
+
* // Port: Number("int"), // required
|
|
294
|
+
* // Catalog: "STRING_VALUE", // required
|
|
295
|
+
* // },
|
|
274
296
|
* // },
|
|
275
297
|
* // ],
|
|
276
298
|
* // VpcConnectionProperties: { // VpcConnectionProperties
|
|
@@ -42,7 +42,7 @@ export interface DescribeFolderCommandOutput extends DescribeFolderResponse, __M
|
|
|
42
42
|
* // FolderId: "STRING_VALUE",
|
|
43
43
|
* // Arn: "STRING_VALUE",
|
|
44
44
|
* // Name: "STRING_VALUE",
|
|
45
|
-
* // FolderType: "SHARED",
|
|
45
|
+
* // FolderType: "SHARED" || "RESTRICTED",
|
|
46
46
|
* // FolderPath: [ // Path
|
|
47
47
|
* // "STRING_VALUE",
|
|
48
48
|
* // ],
|
|
@@ -863,6 +863,14 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
863
863
|
* // },
|
|
864
864
|
* // },
|
|
865
865
|
* // },
|
|
866
|
+
* // TotalAggregationOptions: [ // TotalAggregationOptionList
|
|
867
|
+
* // { // TotalAggregationOption
|
|
868
|
+
* // FieldId: "STRING_VALUE", // required
|
|
869
|
+
* // TotalAggregationFunction: { // TotalAggregationFunction
|
|
870
|
+
* // SimpleTotalAggregationFunction: "DEFAULT" || "SUM" || "AVERAGE" || "MIN" || "MAX" || "NONE",
|
|
871
|
+
* // },
|
|
872
|
+
* // },
|
|
873
|
+
* // ],
|
|
866
874
|
* // },
|
|
867
875
|
* // FieldOptions: { // TableFieldOptions
|
|
868
876
|
* // SelectedFieldOptions: [ // TableFieldOptionList
|
|
@@ -1235,8 +1243,11 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
1235
1243
|
* // Direction: "ASC" || "DESC", // required
|
|
1236
1244
|
* // SortPaths: [ // DataPathValueList // required
|
|
1237
1245
|
* // { // DataPathValue
|
|
1238
|
-
* // FieldId: "STRING_VALUE",
|
|
1239
|
-
* // FieldValue: "STRING_VALUE",
|
|
1246
|
+
* // FieldId: "STRING_VALUE",
|
|
1247
|
+
* // FieldValue: "STRING_VALUE",
|
|
1248
|
+
* // DataPathType: { // DataPathType
|
|
1249
|
+
* // PivotTableDataPathType: "HIERARCHY_ROWS_LAYOUT_COLUMN" || "MULTIPLE_ROW_METRICS_COLUMN" || "EMPTY_COLUMN_HEADER" || "COUNT_METRIC_COLUMN",
|
|
1250
|
+
* // },
|
|
1240
1251
|
* // },
|
|
1241
1252
|
* // ],
|
|
1242
1253
|
* // },
|
|
@@ -1351,6 +1362,14 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
1351
1362
|
* // TotalCellStyle: "<TableCellStyle>",
|
|
1352
1363
|
* // ValueCellStyle: "<TableCellStyle>",
|
|
1353
1364
|
* // MetricHeaderCellStyle: "<TableCellStyle>",
|
|
1365
|
+
* // TotalAggregationOptions: [
|
|
1366
|
+
* // {
|
|
1367
|
+
* // FieldId: "STRING_VALUE", // required
|
|
1368
|
+
* // TotalAggregationFunction: {
|
|
1369
|
+
* // SimpleTotalAggregationFunction: "DEFAULT" || "SUM" || "AVERAGE" || "MIN" || "MAX" || "NONE",
|
|
1370
|
+
* // },
|
|
1371
|
+
* // },
|
|
1372
|
+
* // ],
|
|
1354
1373
|
* // },
|
|
1355
1374
|
* // ColumnTotalOptions: {
|
|
1356
1375
|
* // TotalsVisibility: "HIDDEN" || "VISIBLE",
|
|
@@ -1360,6 +1379,14 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
1360
1379
|
* // TotalCellStyle: "<TableCellStyle>",
|
|
1361
1380
|
* // ValueCellStyle: "<TableCellStyle>",
|
|
1362
1381
|
* // MetricHeaderCellStyle: "<TableCellStyle>",
|
|
1382
|
+
* // TotalAggregationOptions: [
|
|
1383
|
+
* // {
|
|
1384
|
+
* // FieldId: "STRING_VALUE", // required
|
|
1385
|
+
* // TotalAggregationFunction: {
|
|
1386
|
+
* // SimpleTotalAggregationFunction: "DEFAULT" || "SUM" || "AVERAGE" || "MIN" || "MAX" || "NONE",
|
|
1387
|
+
* // },
|
|
1388
|
+
* // },
|
|
1389
|
+
* // ],
|
|
1363
1390
|
* // },
|
|
1364
1391
|
* // },
|
|
1365
1392
|
* // FieldOptions: { // PivotTableFieldOptions
|
|
@@ -1374,8 +1401,11 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
1374
1401
|
* // { // PivotTableDataPathOption
|
|
1375
1402
|
* // DataPathList: [ // required
|
|
1376
1403
|
* // {
|
|
1377
|
-
* // FieldId: "STRING_VALUE",
|
|
1378
|
-
* // FieldValue: "STRING_VALUE",
|
|
1404
|
+
* // FieldId: "STRING_VALUE",
|
|
1405
|
+
* // FieldValue: "STRING_VALUE",
|
|
1406
|
+
* // DataPathType: {
|
|
1407
|
+
* // PivotTableDataPathType: "HIERARCHY_ROWS_LAYOUT_COLUMN" || "MULTIPLE_ROW_METRICS_COLUMN" || "EMPTY_COLUMN_HEADER" || "COUNT_METRIC_COLUMN",
|
|
1408
|
+
* // },
|
|
1379
1409
|
* // },
|
|
1380
1410
|
* // ],
|
|
1381
1411
|
* // Width: "STRING_VALUE",
|
|
@@ -1939,6 +1969,7 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
1939
1969
|
* // Calculation: "<NumericalAggregationFunction>", // required
|
|
1940
1970
|
* // },
|
|
1941
1971
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
1972
|
+
* // SeriesType: "BAR" || "LINE",
|
|
1942
1973
|
* // },
|
|
1943
1974
|
* // StyleConfiguration: { // ReferenceLineStyleConfiguration
|
|
1944
1975
|
* // Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -3147,6 +3178,7 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
3147
3178
|
* // Calculation: "<NumericalAggregationFunction>", // required
|
|
3148
3179
|
* // },
|
|
3149
3180
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3181
|
+
* // SeriesType: "BAR" || "LINE",
|
|
3150
3182
|
* // },
|
|
3151
3183
|
* // StyleConfiguration: {
|
|
3152
3184
|
* // Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -3631,6 +3663,7 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
3631
3663
|
* // Calculation: "<NumericalAggregationFunction>", // required
|
|
3632
3664
|
* // },
|
|
3633
3665
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3666
|
+
* // SeriesType: "BAR" || "LINE",
|
|
3634
3667
|
* // },
|
|
3635
3668
|
* // StyleConfiguration: {
|
|
3636
3669
|
* // Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -3704,6 +3737,7 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
3704
3737
|
* // Calculation: "<NumericalAggregationFunction>", // required
|
|
3705
3738
|
* // },
|
|
3706
3739
|
* // AxisBinding: "PRIMARY_YAXIS" || "SECONDARY_YAXIS",
|
|
3740
|
+
* // SeriesType: "BAR" || "LINE",
|
|
3707
3741
|
* // },
|
|
3708
3742
|
* // StyleConfiguration: {
|
|
3709
3743
|
* // Pattern: "SOLID" || "DASHED" || "DOTTED",
|
|
@@ -4374,6 +4408,10 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
4374
4408
|
* // Value: new Date("TIMESTAMP"),
|
|
4375
4409
|
* // ParameterName: "STRING_VALUE",
|
|
4376
4410
|
* // TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
|
|
4411
|
+
* // RollingDate: {
|
|
4412
|
+
* // DataSetIdentifier: "STRING_VALUE",
|
|
4413
|
+
* // Expression: "STRING_VALUE", // required
|
|
4414
|
+
* // },
|
|
4377
4415
|
* // },
|
|
4378
4416
|
* // TimeRangeFilter: { // TimeRangeFilter
|
|
4379
4417
|
* // FilterId: "STRING_VALUE", // required
|
|
@@ -4382,18 +4420,12 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
|
|
|
4382
4420
|
* // IncludeMaximum: true || false,
|
|
4383
4421
|
* // RangeMinimumValue: { // TimeRangeFilterValue
|
|
4384
4422
|
* // StaticValue: new Date("TIMESTAMP"),
|
|
4385
|
-
* // RollingDate:
|
|
4386
|
-
* // DataSetIdentifier: "STRING_VALUE",
|
|
4387
|
-
* // Expression: "STRING_VALUE", // required
|
|
4388
|
-
* // },
|
|
4423
|
+
* // RollingDate: "<RollingDateConfiguration>",
|
|
4389
4424
|
* // Parameter: "STRING_VALUE",
|
|
4390
4425
|
* // },
|
|
4391
4426
|
* // RangeMaximumValue: {
|
|
4392
4427
|
* // StaticValue: new Date("TIMESTAMP"),
|
|
4393
|
-
* // RollingDate:
|
|
4394
|
-
* // DataSetIdentifier: "STRING_VALUE",
|
|
4395
|
-
* // Expression: "STRING_VALUE", // required
|
|
4396
|
-
* // },
|
|
4428
|
+
* // RollingDate: "<RollingDateConfiguration>",
|
|
4397
4429
|
* // Parameter: "STRING_VALUE",
|
|
4398
4430
|
* // },
|
|
4399
4431
|
* // NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
|