@aws-sdk/client-quicksight 3.598.0 → 3.606.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 (35) hide show
  1. package/dist-cjs/index.js +195 -48
  2. package/dist-es/models/models_0.js +0 -14
  3. package/dist-es/models/models_1.js +14 -23
  4. package/dist-es/models/models_2.js +25 -2
  5. package/dist-es/protocols/Aws_restJson1.js +161 -2
  6. package/dist-types/commands/CreateAnalysisCommand.d.ts +60 -0
  7. package/dist-types/commands/CreateDashboardCommand.d.ts +60 -0
  8. package/dist-types/commands/CreateTemplateCommand.d.ts +60 -0
  9. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +60 -0
  10. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +60 -0
  11. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +60 -0
  12. package/dist-types/commands/ListAssetBundleImportJobsCommand.d.ts +2 -1
  13. package/dist-types/commands/ListDashboardVersionsCommand.d.ts +1 -1
  14. package/dist-types/commands/ListDashboardsCommand.d.ts +1 -1
  15. package/dist-types/commands/ListDataSetsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListDataSourcesCommand.d.ts +1 -2
  17. package/dist-types/commands/UpdateAnalysisCommand.d.ts +60 -0
  18. package/dist-types/commands/UpdateDashboardCommand.d.ts +60 -0
  19. package/dist-types/commands/UpdateTemplateCommand.d.ts +60 -0
  20. package/dist-types/models/models_0.d.ts +180 -194
  21. package/dist-types/models/models_1.d.ts +174 -199
  22. package/dist-types/models/models_2.d.ts +192 -106
  23. package/dist-types/models/models_3.d.ts +113 -189
  24. package/dist-types/models/models_4.d.ts +190 -2
  25. package/dist-types/ts3.4/commands/ListAssetBundleImportJobsCommand.d.ts +2 -4
  26. package/dist-types/ts3.4/commands/ListDashboardVersionsCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/ListDataSourcesCommand.d.ts +4 -2
  30. package/dist-types/ts3.4/models/models_0.d.ts +43 -48
  31. package/dist-types/ts3.4/models/models_1.d.ts +45 -62
  32. package/dist-types/ts3.4/models/models_2.d.ts +71 -33
  33. package/dist-types/ts3.4/models/models_3.d.ts +29 -49
  34. package/dist-types/ts3.4/models/models_4.d.ts +47 -0
  35. package/package.json +4 -4
@@ -6334,6 +6334,63 @@ const se_BinWidthOptions = (input, context) => {
6334
6334
  Value: __serializeFloat,
6335
6335
  });
6336
6336
  };
6337
+ const se_BodySectionConfiguration = (input, context) => {
6338
+ return take(input, {
6339
+ Content: _json,
6340
+ PageBreakConfiguration: _json,
6341
+ RepeatConfiguration: (_) => se_BodySectionRepeatConfiguration(_, context),
6342
+ SectionId: [],
6343
+ Style: _json,
6344
+ });
6345
+ };
6346
+ const se_BodySectionConfigurationList = (input, context) => {
6347
+ return input
6348
+ .filter((e) => e != null)
6349
+ .map((entry) => {
6350
+ return se_BodySectionConfiguration(entry, context);
6351
+ });
6352
+ };
6353
+ const se_BodySectionDynamicCategoryDimensionConfiguration = (input, context) => {
6354
+ return take(input, {
6355
+ Column: _json,
6356
+ Limit: [],
6357
+ SortByMetrics: (_) => se_BodySectionDynamicDimensionSortConfigurationList(_, context),
6358
+ });
6359
+ };
6360
+ const se_BodySectionDynamicDimensionSortConfigurationList = (input, context) => {
6361
+ return input
6362
+ .filter((e) => e != null)
6363
+ .map((entry) => {
6364
+ return se_ColumnSort(entry, context);
6365
+ });
6366
+ };
6367
+ const se_BodySectionDynamicNumericDimensionConfiguration = (input, context) => {
6368
+ return take(input, {
6369
+ Column: _json,
6370
+ Limit: [],
6371
+ SortByMetrics: (_) => se_BodySectionDynamicDimensionSortConfigurationList(_, context),
6372
+ });
6373
+ };
6374
+ const se_BodySectionRepeatConfiguration = (input, context) => {
6375
+ return take(input, {
6376
+ DimensionConfigurations: (_) => se_BodySectionRepeatDimensionConfigurationList(_, context),
6377
+ NonRepeatingVisuals: _json,
6378
+ PageBreakConfiguration: _json,
6379
+ });
6380
+ };
6381
+ const se_BodySectionRepeatDimensionConfiguration = (input, context) => {
6382
+ return take(input, {
6383
+ DynamicCategoryDimensionConfiguration: (_) => se_BodySectionDynamicCategoryDimensionConfiguration(_, context),
6384
+ DynamicNumericDimensionConfiguration: (_) => se_BodySectionDynamicNumericDimensionConfiguration(_, context),
6385
+ });
6386
+ };
6387
+ const se_BodySectionRepeatDimensionConfigurationList = (input, context) => {
6388
+ return input
6389
+ .filter((e) => e != null)
6390
+ .map((entry) => {
6391
+ return se_BodySectionRepeatDimensionConfiguration(entry, context);
6392
+ });
6393
+ };
6337
6394
  const se_BoxPlotAggregatedFieldWells = (input, context) => {
6338
6395
  return take(input, {
6339
6396
  GroupBy: _json,
@@ -6392,6 +6449,13 @@ const se_CategoryFilter = (input, context) => {
6392
6449
  FilterId: [],
6393
6450
  });
6394
6451
  };
6452
+ const se_CategoryInnerFilter = (input, context) => {
6453
+ return take(input, {
6454
+ Column: _json,
6455
+ Configuration: _json,
6456
+ DefaultFilterControlConfiguration: (_) => se_DefaultFilterControlConfiguration(_, context),
6457
+ });
6458
+ };
6395
6459
  const se_ColorScale = (input, context) => {
6396
6460
  return take(input, {
6397
6461
  ColorFillType: [],
@@ -6868,6 +6932,7 @@ const se_FilledMapVisual = (input, context) => {
6868
6932
  const se_Filter = (input, context) => {
6869
6933
  return take(input, {
6870
6934
  CategoryFilter: (_) => se_CategoryFilter(_, context),
6935
+ NestedFilter: (_) => se_NestedFilter(_, context),
6871
6936
  NumericEqualityFilter: (_) => se_NumericEqualityFilter(_, context),
6872
6937
  NumericRangeFilter: (_) => se_NumericRangeFilter(_, context),
6873
6938
  RelativeDatesFilter: (_) => se_RelativeDatesFilter(_, context),
@@ -7248,6 +7313,11 @@ const se_HistogramVisual = (input, context) => {
7248
7313
  VisualId: [],
7249
7314
  });
7250
7315
  };
7316
+ const se_InnerFilter = (input, context) => {
7317
+ return take(input, {
7318
+ CategoryInnerFilter: (_) => se_CategoryInnerFilter(_, context),
7319
+ });
7320
+ };
7251
7321
  const se_InsightConfiguration = (input, context) => {
7252
7322
  return take(input, {
7253
7323
  Computations: (_) => se_ComputationList(_, context),
@@ -7470,6 +7540,14 @@ const se_MetricComparisonComputation = (input, context) => {
7470
7540
  Time: _json,
7471
7541
  });
7472
7542
  };
7543
+ const se_NestedFilter = (input, context) => {
7544
+ return take(input, {
7545
+ Column: _json,
7546
+ FilterId: [],
7547
+ IncludeInnerSet: [],
7548
+ InnerFilter: (_) => se_InnerFilter(_, context),
7549
+ });
7550
+ };
7473
7551
  const se_NewDefaultValues = (input, context) => {
7474
7552
  return take(input, {
7475
7553
  DateTimeStaticValues: (_) => se_DateTimeDatasetParameterValueList(_, context),
@@ -7982,7 +8060,7 @@ const se_ScrollBarOptions = (input, context) => {
7982
8060
  };
7983
8061
  const se_SectionBasedLayoutConfiguration = (input, context) => {
7984
8062
  return take(input, {
7985
- BodySections: _json,
8063
+ BodySections: (_) => se_BodySectionConfigurationList(_, context),
7986
8064
  CanvasSizeOptions: _json,
7987
8065
  FooterSections: _json,
7988
8066
  HeaderSections: _json,
@@ -8759,6 +8837,66 @@ const de_BinWidthOptions = (output, context) => {
8759
8837
  Value: __limitedParseDouble,
8760
8838
  });
8761
8839
  };
8840
+ const de_BodySectionConfiguration = (output, context) => {
8841
+ return take(output, {
8842
+ Content: _json,
8843
+ PageBreakConfiguration: _json,
8844
+ RepeatConfiguration: (_) => de_BodySectionRepeatConfiguration(_, context),
8845
+ SectionId: __expectString,
8846
+ Style: _json,
8847
+ });
8848
+ };
8849
+ const de_BodySectionConfigurationList = (output, context) => {
8850
+ const retVal = (output || [])
8851
+ .filter((e) => e != null)
8852
+ .map((entry) => {
8853
+ return de_BodySectionConfiguration(entry, context);
8854
+ });
8855
+ return retVal;
8856
+ };
8857
+ const de_BodySectionDynamicCategoryDimensionConfiguration = (output, context) => {
8858
+ return take(output, {
8859
+ Column: _json,
8860
+ Limit: __expectInt32,
8861
+ SortByMetrics: (_) => de_BodySectionDynamicDimensionSortConfigurationList(_, context),
8862
+ });
8863
+ };
8864
+ const de_BodySectionDynamicDimensionSortConfigurationList = (output, context) => {
8865
+ const retVal = (output || [])
8866
+ .filter((e) => e != null)
8867
+ .map((entry) => {
8868
+ return de_ColumnSort(entry, context);
8869
+ });
8870
+ return retVal;
8871
+ };
8872
+ const de_BodySectionDynamicNumericDimensionConfiguration = (output, context) => {
8873
+ return take(output, {
8874
+ Column: _json,
8875
+ Limit: __expectInt32,
8876
+ SortByMetrics: (_) => de_BodySectionDynamicDimensionSortConfigurationList(_, context),
8877
+ });
8878
+ };
8879
+ const de_BodySectionRepeatConfiguration = (output, context) => {
8880
+ return take(output, {
8881
+ DimensionConfigurations: (_) => de_BodySectionRepeatDimensionConfigurationList(_, context),
8882
+ NonRepeatingVisuals: _json,
8883
+ PageBreakConfiguration: _json,
8884
+ });
8885
+ };
8886
+ const de_BodySectionRepeatDimensionConfiguration = (output, context) => {
8887
+ return take(output, {
8888
+ DynamicCategoryDimensionConfiguration: (_) => de_BodySectionDynamicCategoryDimensionConfiguration(_, context),
8889
+ DynamicNumericDimensionConfiguration: (_) => de_BodySectionDynamicNumericDimensionConfiguration(_, context),
8890
+ });
8891
+ };
8892
+ const de_BodySectionRepeatDimensionConfigurationList = (output, context) => {
8893
+ const retVal = (output || [])
8894
+ .filter((e) => e != null)
8895
+ .map((entry) => {
8896
+ return de_BodySectionRepeatDimensionConfiguration(entry, context);
8897
+ });
8898
+ return retVal;
8899
+ };
8762
8900
  const de_BoxPlotAggregatedFieldWells = (output, context) => {
8763
8901
  return take(output, {
8764
8902
  GroupBy: _json,
@@ -8818,6 +8956,13 @@ const de_CategoryFilter = (output, context) => {
8818
8956
  FilterId: __expectString,
8819
8957
  });
8820
8958
  };
8959
+ const de_CategoryInnerFilter = (output, context) => {
8960
+ return take(output, {
8961
+ Column: _json,
8962
+ Configuration: _json,
8963
+ DefaultFilterControlConfiguration: (_) => de_DefaultFilterControlConfiguration(_, context),
8964
+ });
8965
+ };
8821
8966
  const de_ColorScale = (output, context) => {
8822
8967
  return take(output, {
8823
8968
  ColorFillType: __expectString,
@@ -9456,6 +9601,7 @@ const de_FilledMapVisual = (output, context) => {
9456
9601
  const de_Filter = (output, context) => {
9457
9602
  return take(output, {
9458
9603
  CategoryFilter: (_) => de_CategoryFilter(_, context),
9604
+ NestedFilter: (_) => de_NestedFilter(_, context),
9459
9605
  NumericEqualityFilter: (_) => de_NumericEqualityFilter(_, context),
9460
9606
  NumericRangeFilter: (_) => de_NumericRangeFilter(_, context),
9461
9607
  RelativeDatesFilter: (_) => de_RelativeDatesFilter(_, context),
@@ -9899,6 +10045,11 @@ const de_Ingestions = (output, context) => {
9899
10045
  });
9900
10046
  return retVal;
9901
10047
  };
10048
+ const de_InnerFilter = (output, context) => {
10049
+ return take(output, {
10050
+ CategoryInnerFilter: (_) => de_CategoryInnerFilter(_, context),
10051
+ });
10052
+ };
9902
10053
  const de_InsightConfiguration = (output, context) => {
9903
10054
  return take(output, {
9904
10055
  Computations: (_) => de_ComputationList(_, context),
@@ -10124,6 +10275,14 @@ const de_MetricComparisonComputation = (output, context) => {
10124
10275
  Time: _json,
10125
10276
  });
10126
10277
  };
10278
+ const de_NestedFilter = (output, context) => {
10279
+ return take(output, {
10280
+ Column: _json,
10281
+ FilterId: __expectString,
10282
+ IncludeInnerSet: __expectBoolean,
10283
+ InnerFilter: (_) => de_InnerFilter(_, context),
10284
+ });
10285
+ };
10127
10286
  const de_NewDefaultValues = (output, context) => {
10128
10287
  return take(output, {
10129
10288
  DateTimeStaticValues: (_) => de_DateTimeDatasetParameterValueList(_, context),
@@ -10652,7 +10811,7 @@ const de_ScrollBarOptions = (output, context) => {
10652
10811
  };
10653
10812
  const de_SectionBasedLayoutConfiguration = (output, context) => {
10654
10813
  return take(output, {
10655
- BodySections: _json,
10814
+ BodySections: (_) => de_BodySectionConfigurationList(_, context),
10656
10815
  CanvasSizeOptions: _json,
10657
10816
  FooterSections: _json,
10658
10817
  HeaderSections: _json,
@@ -4299,6 +4299,34 @@ declare const CreateAnalysisCommand_base: {
4299
4299
  * Status: "ENABLED" || "DISABLED",
4300
4300
  * },
4301
4301
  * },
4302
+ * RepeatConfiguration: { // BodySectionRepeatConfiguration
4303
+ * DimensionConfigurations: [ // BodySectionRepeatDimensionConfigurationList
4304
+ * { // BodySectionRepeatDimensionConfiguration
4305
+ * DynamicCategoryDimensionConfiguration: { // BodySectionDynamicCategoryDimensionConfiguration
4306
+ * Column: "<ColumnIdentifier>", // required
4307
+ * Limit: Number("int"),
4308
+ * SortByMetrics: [ // BodySectionDynamicDimensionSortConfigurationList
4309
+ * "<ColumnSort>",
4310
+ * ],
4311
+ * },
4312
+ * DynamicNumericDimensionConfiguration: { // BodySectionDynamicNumericDimensionConfiguration
4313
+ * Column: "<ColumnIdentifier>", // required
4314
+ * Limit: Number("int"),
4315
+ * SortByMetrics: [
4316
+ * "<ColumnSort>",
4317
+ * ],
4318
+ * },
4319
+ * },
4320
+ * ],
4321
+ * PageBreakConfiguration: { // BodySectionRepeatPageBreakConfiguration
4322
+ * After: {
4323
+ * Status: "ENABLED" || "DISABLED",
4324
+ * },
4325
+ * },
4326
+ * NonRepeatingVisuals: [ // NonRepeatingVisualsList
4327
+ * "STRING_VALUE",
4328
+ * ],
4329
+ * },
4302
4330
  * },
4303
4331
  * ],
4304
4332
  * FooterSections: [ // required
@@ -4878,6 +4906,38 @@ declare const CreateAnalysisCommand_base: {
4878
4906
  * ParameterName: "STRING_VALUE",
4879
4907
  * DefaultFilterControlConfiguration: "<DefaultFilterControlConfiguration>",
4880
4908
  * },
4909
+ * NestedFilter: { // NestedFilter
4910
+ * FilterId: "STRING_VALUE", // required
4911
+ * Column: "<ColumnIdentifier>", // required
4912
+ * IncludeInnerSet: true || false, // required
4913
+ * InnerFilter: { // InnerFilter
4914
+ * CategoryInnerFilter: { // CategoryInnerFilter
4915
+ * Column: "<ColumnIdentifier>", // required
4916
+ * Configuration: {
4917
+ * FilterListConfiguration: {
4918
+ * MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4919
+ * CategoryValues: "<CategoryValueList>",
4920
+ * SelectAllOptions: "FILTER_ALL_VALUES",
4921
+ * NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY",
4922
+ * },
4923
+ * CustomFilterListConfiguration: {
4924
+ * MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4925
+ * CategoryValues: "<CategoryValueList>",
4926
+ * SelectAllOptions: "FILTER_ALL_VALUES",
4927
+ * NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
4928
+ * },
4929
+ * CustomFilterConfiguration: {
4930
+ * MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4931
+ * CategoryValue: "STRING_VALUE",
4932
+ * SelectAllOptions: "FILTER_ALL_VALUES",
4933
+ * ParameterName: "STRING_VALUE",
4934
+ * NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
4935
+ * },
4936
+ * },
4937
+ * DefaultFilterControlConfiguration: "<DefaultFilterControlConfiguration>",
4938
+ * },
4939
+ * },
4940
+ * },
4881
4941
  * },
4882
4942
  * ],
4883
4943
  * ScopeConfiguration: { // FilterScopeConfiguration
@@ -4343,6 +4343,34 @@ declare const CreateDashboardCommand_base: {
4343
4343
  * Status: "ENABLED" || "DISABLED",
4344
4344
  * },
4345
4345
  * },
4346
+ * RepeatConfiguration: { // BodySectionRepeatConfiguration
4347
+ * DimensionConfigurations: [ // BodySectionRepeatDimensionConfigurationList
4348
+ * { // BodySectionRepeatDimensionConfiguration
4349
+ * DynamicCategoryDimensionConfiguration: { // BodySectionDynamicCategoryDimensionConfiguration
4350
+ * Column: "<ColumnIdentifier>", // required
4351
+ * Limit: Number("int"),
4352
+ * SortByMetrics: [ // BodySectionDynamicDimensionSortConfigurationList
4353
+ * "<ColumnSort>",
4354
+ * ],
4355
+ * },
4356
+ * DynamicNumericDimensionConfiguration: { // BodySectionDynamicNumericDimensionConfiguration
4357
+ * Column: "<ColumnIdentifier>", // required
4358
+ * Limit: Number("int"),
4359
+ * SortByMetrics: [
4360
+ * "<ColumnSort>",
4361
+ * ],
4362
+ * },
4363
+ * },
4364
+ * ],
4365
+ * PageBreakConfiguration: { // BodySectionRepeatPageBreakConfiguration
4366
+ * After: {
4367
+ * Status: "ENABLED" || "DISABLED",
4368
+ * },
4369
+ * },
4370
+ * NonRepeatingVisuals: [ // NonRepeatingVisualsList
4371
+ * "STRING_VALUE",
4372
+ * ],
4373
+ * },
4346
4374
  * },
4347
4375
  * ],
4348
4376
  * FooterSections: [ // required
@@ -4922,6 +4950,38 @@ declare const CreateDashboardCommand_base: {
4922
4950
  * ParameterName: "STRING_VALUE",
4923
4951
  * DefaultFilterControlConfiguration: "<DefaultFilterControlConfiguration>",
4924
4952
  * },
4953
+ * NestedFilter: { // NestedFilter
4954
+ * FilterId: "STRING_VALUE", // required
4955
+ * Column: "<ColumnIdentifier>", // required
4956
+ * IncludeInnerSet: true || false, // required
4957
+ * InnerFilter: { // InnerFilter
4958
+ * CategoryInnerFilter: { // CategoryInnerFilter
4959
+ * Column: "<ColumnIdentifier>", // required
4960
+ * Configuration: {
4961
+ * FilterListConfiguration: {
4962
+ * MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4963
+ * CategoryValues: "<CategoryValueList>",
4964
+ * SelectAllOptions: "FILTER_ALL_VALUES",
4965
+ * NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY",
4966
+ * },
4967
+ * CustomFilterListConfiguration: {
4968
+ * MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4969
+ * CategoryValues: "<CategoryValueList>",
4970
+ * SelectAllOptions: "FILTER_ALL_VALUES",
4971
+ * NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
4972
+ * },
4973
+ * CustomFilterConfiguration: {
4974
+ * MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4975
+ * CategoryValue: "STRING_VALUE",
4976
+ * SelectAllOptions: "FILTER_ALL_VALUES",
4977
+ * ParameterName: "STRING_VALUE",
4978
+ * NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
4979
+ * },
4980
+ * },
4981
+ * DefaultFilterControlConfiguration: "<DefaultFilterControlConfiguration>",
4982
+ * },
4983
+ * },
4984
+ * },
4925
4985
  * },
4926
4986
  * ],
4927
4987
  * ScopeConfiguration: { // FilterScopeConfiguration
@@ -4293,6 +4293,34 @@ declare const CreateTemplateCommand_base: {
4293
4293
  * Status: "ENABLED" || "DISABLED",
4294
4294
  * },
4295
4295
  * },
4296
+ * RepeatConfiguration: { // BodySectionRepeatConfiguration
4297
+ * DimensionConfigurations: [ // BodySectionRepeatDimensionConfigurationList
4298
+ * { // BodySectionRepeatDimensionConfiguration
4299
+ * DynamicCategoryDimensionConfiguration: { // BodySectionDynamicCategoryDimensionConfiguration
4300
+ * Column: "<ColumnIdentifier>", // required
4301
+ * Limit: Number("int"),
4302
+ * SortByMetrics: [ // BodySectionDynamicDimensionSortConfigurationList
4303
+ * "<ColumnSort>",
4304
+ * ],
4305
+ * },
4306
+ * DynamicNumericDimensionConfiguration: { // BodySectionDynamicNumericDimensionConfiguration
4307
+ * Column: "<ColumnIdentifier>", // required
4308
+ * Limit: Number("int"),
4309
+ * SortByMetrics: [
4310
+ * "<ColumnSort>",
4311
+ * ],
4312
+ * },
4313
+ * },
4314
+ * ],
4315
+ * PageBreakConfiguration: { // BodySectionRepeatPageBreakConfiguration
4316
+ * After: {
4317
+ * Status: "ENABLED" || "DISABLED",
4318
+ * },
4319
+ * },
4320
+ * NonRepeatingVisuals: [ // NonRepeatingVisualsList
4321
+ * "STRING_VALUE",
4322
+ * ],
4323
+ * },
4296
4324
  * },
4297
4325
  * ],
4298
4326
  * FooterSections: [ // required
@@ -4872,6 +4900,38 @@ declare const CreateTemplateCommand_base: {
4872
4900
  * ParameterName: "STRING_VALUE",
4873
4901
  * DefaultFilterControlConfiguration: "<DefaultFilterControlConfiguration>",
4874
4902
  * },
4903
+ * NestedFilter: { // NestedFilter
4904
+ * FilterId: "STRING_VALUE", // required
4905
+ * Column: "<ColumnIdentifier>", // required
4906
+ * IncludeInnerSet: true || false, // required
4907
+ * InnerFilter: { // InnerFilter
4908
+ * CategoryInnerFilter: { // CategoryInnerFilter
4909
+ * Column: "<ColumnIdentifier>", // required
4910
+ * Configuration: {
4911
+ * FilterListConfiguration: {
4912
+ * MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4913
+ * CategoryValues: "<CategoryValueList>",
4914
+ * SelectAllOptions: "FILTER_ALL_VALUES",
4915
+ * NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY",
4916
+ * },
4917
+ * CustomFilterListConfiguration: {
4918
+ * MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4919
+ * CategoryValues: "<CategoryValueList>",
4920
+ * SelectAllOptions: "FILTER_ALL_VALUES",
4921
+ * NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
4922
+ * },
4923
+ * CustomFilterConfiguration: {
4924
+ * MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4925
+ * CategoryValue: "STRING_VALUE",
4926
+ * SelectAllOptions: "FILTER_ALL_VALUES",
4927
+ * ParameterName: "STRING_VALUE",
4928
+ * NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
4929
+ * },
4930
+ * },
4931
+ * DefaultFilterControlConfiguration: "<DefaultFilterControlConfiguration>",
4932
+ * },
4933
+ * },
4934
+ * },
4875
4935
  * },
4876
4936
  * ],
4877
4937
  * ScopeConfiguration: { // FilterScopeConfiguration
@@ -4265,6 +4265,34 @@ declare const DescribeAnalysisDefinitionCommand_base: {
4265
4265
  * // Status: "ENABLED" || "DISABLED",
4266
4266
  * // },
4267
4267
  * // },
4268
+ * // RepeatConfiguration: { // BodySectionRepeatConfiguration
4269
+ * // DimensionConfigurations: [ // BodySectionRepeatDimensionConfigurationList
4270
+ * // { // BodySectionRepeatDimensionConfiguration
4271
+ * // DynamicCategoryDimensionConfiguration: { // BodySectionDynamicCategoryDimensionConfiguration
4272
+ * // Column: "<ColumnIdentifier>", // required
4273
+ * // Limit: Number("int"),
4274
+ * // SortByMetrics: [ // BodySectionDynamicDimensionSortConfigurationList
4275
+ * // "<ColumnSort>",
4276
+ * // ],
4277
+ * // },
4278
+ * // DynamicNumericDimensionConfiguration: { // BodySectionDynamicNumericDimensionConfiguration
4279
+ * // Column: "<ColumnIdentifier>", // required
4280
+ * // Limit: Number("int"),
4281
+ * // SortByMetrics: [
4282
+ * // "<ColumnSort>",
4283
+ * // ],
4284
+ * // },
4285
+ * // },
4286
+ * // ],
4287
+ * // PageBreakConfiguration: { // BodySectionRepeatPageBreakConfiguration
4288
+ * // After: {
4289
+ * // Status: "ENABLED" || "DISABLED",
4290
+ * // },
4291
+ * // },
4292
+ * // NonRepeatingVisuals: [ // NonRepeatingVisualsList
4293
+ * // "STRING_VALUE",
4294
+ * // ],
4295
+ * // },
4268
4296
  * // },
4269
4297
  * // ],
4270
4298
  * // FooterSections: [ // required
@@ -4844,6 +4872,38 @@ declare const DescribeAnalysisDefinitionCommand_base: {
4844
4872
  * // ParameterName: "STRING_VALUE",
4845
4873
  * // DefaultFilterControlConfiguration: "<DefaultFilterControlConfiguration>",
4846
4874
  * // },
4875
+ * // NestedFilter: { // NestedFilter
4876
+ * // FilterId: "STRING_VALUE", // required
4877
+ * // Column: "<ColumnIdentifier>", // required
4878
+ * // IncludeInnerSet: true || false, // required
4879
+ * // InnerFilter: { // InnerFilter
4880
+ * // CategoryInnerFilter: { // CategoryInnerFilter
4881
+ * // Column: "<ColumnIdentifier>", // required
4882
+ * // Configuration: {
4883
+ * // FilterListConfiguration: {
4884
+ * // MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4885
+ * // CategoryValues: "<CategoryValueList>",
4886
+ * // SelectAllOptions: "FILTER_ALL_VALUES",
4887
+ * // NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY",
4888
+ * // },
4889
+ * // CustomFilterListConfiguration: {
4890
+ * // MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4891
+ * // CategoryValues: "<CategoryValueList>",
4892
+ * // SelectAllOptions: "FILTER_ALL_VALUES",
4893
+ * // NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
4894
+ * // },
4895
+ * // CustomFilterConfiguration: {
4896
+ * // MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4897
+ * // CategoryValue: "STRING_VALUE",
4898
+ * // SelectAllOptions: "FILTER_ALL_VALUES",
4899
+ * // ParameterName: "STRING_VALUE",
4900
+ * // NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
4901
+ * // },
4902
+ * // },
4903
+ * // DefaultFilterControlConfiguration: "<DefaultFilterControlConfiguration>",
4904
+ * // },
4905
+ * // },
4906
+ * // },
4847
4907
  * // },
4848
4908
  * // ],
4849
4909
  * // ScopeConfiguration: { // FilterScopeConfiguration
@@ -4267,6 +4267,34 @@ declare const DescribeDashboardDefinitionCommand_base: {
4267
4267
  * // Status: "ENABLED" || "DISABLED",
4268
4268
  * // },
4269
4269
  * // },
4270
+ * // RepeatConfiguration: { // BodySectionRepeatConfiguration
4271
+ * // DimensionConfigurations: [ // BodySectionRepeatDimensionConfigurationList
4272
+ * // { // BodySectionRepeatDimensionConfiguration
4273
+ * // DynamicCategoryDimensionConfiguration: { // BodySectionDynamicCategoryDimensionConfiguration
4274
+ * // Column: "<ColumnIdentifier>", // required
4275
+ * // Limit: Number("int"),
4276
+ * // SortByMetrics: [ // BodySectionDynamicDimensionSortConfigurationList
4277
+ * // "<ColumnSort>",
4278
+ * // ],
4279
+ * // },
4280
+ * // DynamicNumericDimensionConfiguration: { // BodySectionDynamicNumericDimensionConfiguration
4281
+ * // Column: "<ColumnIdentifier>", // required
4282
+ * // Limit: Number("int"),
4283
+ * // SortByMetrics: [
4284
+ * // "<ColumnSort>",
4285
+ * // ],
4286
+ * // },
4287
+ * // },
4288
+ * // ],
4289
+ * // PageBreakConfiguration: { // BodySectionRepeatPageBreakConfiguration
4290
+ * // After: {
4291
+ * // Status: "ENABLED" || "DISABLED",
4292
+ * // },
4293
+ * // },
4294
+ * // NonRepeatingVisuals: [ // NonRepeatingVisualsList
4295
+ * // "STRING_VALUE",
4296
+ * // ],
4297
+ * // },
4270
4298
  * // },
4271
4299
  * // ],
4272
4300
  * // FooterSections: [ // required
@@ -4846,6 +4874,38 @@ declare const DescribeDashboardDefinitionCommand_base: {
4846
4874
  * // ParameterName: "STRING_VALUE",
4847
4875
  * // DefaultFilterControlConfiguration: "<DefaultFilterControlConfiguration>",
4848
4876
  * // },
4877
+ * // NestedFilter: { // NestedFilter
4878
+ * // FilterId: "STRING_VALUE", // required
4879
+ * // Column: "<ColumnIdentifier>", // required
4880
+ * // IncludeInnerSet: true || false, // required
4881
+ * // InnerFilter: { // InnerFilter
4882
+ * // CategoryInnerFilter: { // CategoryInnerFilter
4883
+ * // Column: "<ColumnIdentifier>", // required
4884
+ * // Configuration: {
4885
+ * // FilterListConfiguration: {
4886
+ * // MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4887
+ * // CategoryValues: "<CategoryValueList>",
4888
+ * // SelectAllOptions: "FILTER_ALL_VALUES",
4889
+ * // NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY",
4890
+ * // },
4891
+ * // CustomFilterListConfiguration: {
4892
+ * // MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4893
+ * // CategoryValues: "<CategoryValueList>",
4894
+ * // SelectAllOptions: "FILTER_ALL_VALUES",
4895
+ * // NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
4896
+ * // },
4897
+ * // CustomFilterConfiguration: {
4898
+ * // MatchOperator: "EQUALS" || "DOES_NOT_EQUAL" || "CONTAINS" || "DOES_NOT_CONTAIN" || "STARTS_WITH" || "ENDS_WITH", // required
4899
+ * // CategoryValue: "STRING_VALUE",
4900
+ * // SelectAllOptions: "FILTER_ALL_VALUES",
4901
+ * // ParameterName: "STRING_VALUE",
4902
+ * // NullOption: "ALL_VALUES" || "NULLS_ONLY" || "NON_NULLS_ONLY", // required
4903
+ * // },
4904
+ * // },
4905
+ * // DefaultFilterControlConfiguration: "<DefaultFilterControlConfiguration>",
4906
+ * // },
4907
+ * // },
4908
+ * // },
4849
4909
  * // },
4850
4910
  * // ],
4851
4911
  * // ScopeConfiguration: { // FilterScopeConfiguration