@aws-sdk/client-quicksight 3.428.0 → 3.429.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.
@@ -85,7 +85,7 @@ export interface AccountInfo {
85
85
  * @public
86
86
  * <p>The edition of your Amazon QuickSight account.</p>
87
87
  */
88
- Edition?: Edition | string;
88
+ Edition?: Edition;
89
89
  /**
90
90
  * @public
91
91
  * <p>The email address that will be used for Amazon QuickSight to send notifications regarding your Amazon Web Services account or Amazon QuickSight subscription.</p>
@@ -124,7 +124,7 @@ export interface AccountSettings {
124
124
  * <p>The edition of Amazon QuickSight that you're currently subscribed to:
125
125
  * Enterprise edition or Standard edition.</p>
126
126
  */
127
- Edition?: Edition | string;
127
+ Edition?: Edition;
128
128
  /**
129
129
  * @public
130
130
  * <p>The default Amazon QuickSight namespace for your Amazon Web Services account. </p>
@@ -183,7 +183,7 @@ export interface AdHocFilteringOption {
183
183
  * @public
184
184
  * <p>Availability status.</p>
185
185
  */
186
- AvailabilityStatus?: DashboardBehavior | string;
186
+ AvailabilityStatus?: DashboardBehavior;
187
187
  }
188
188
  /**
189
189
  * @public
@@ -211,7 +211,7 @@ export interface AttributeAggregationFunction {
211
211
  * </li>
212
212
  * </ul>
213
213
  */
214
- SimpleAttributeAggregation?: SimpleAttributeAggregationFunction | string;
214
+ SimpleAttributeAggregation?: SimpleAttributeAggregationFunction;
215
215
  /**
216
216
  * @public
217
217
  * <p>Used by the <code>UNIQUE_VALUE</code> aggregation function. If there are multiple values for the field used by the aggregation, the value for this property will be returned instead. Defaults to '*'.</p>
@@ -331,7 +331,7 @@ export interface NumericalAggregationFunction {
331
331
  * </li>
332
332
  * </ul>
333
333
  */
334
- SimpleNumericalAggregation?: SimpleNumericalAggregationFunction | string;
334
+ SimpleNumericalAggregation?: SimpleNumericalAggregationFunction;
335
335
  /**
336
336
  * @public
337
337
  * <p>An aggregation based on the percentile of values in a dimension or measure.</p>
@@ -363,7 +363,7 @@ export interface AggregationFunction {
363
363
  * </li>
364
364
  * </ul>
365
365
  */
366
- CategoricalAggregationFunction?: CategoricalAggregationFunction | string;
366
+ CategoricalAggregationFunction?: CategoricalAggregationFunction;
367
367
  /**
368
368
  * @public
369
369
  * <p>Aggregation for date values.</p>
@@ -386,7 +386,7 @@ export interface AggregationFunction {
386
386
  * </li>
387
387
  * </ul>
388
388
  */
389
- DateAggregationFunction?: DateAggregationFunction | string;
389
+ DateAggregationFunction?: DateAggregationFunction;
390
390
  /**
391
391
  * @public
392
392
  * <p>Aggregation for attributes.</p>
@@ -445,7 +445,7 @@ export interface AggregationSortConfiguration {
445
445
  * </li>
446
446
  * </ul>
447
447
  */
448
- SortDirection: SortDirection | string | undefined;
448
+ SortDirection: SortDirection | undefined;
449
449
  /**
450
450
  * @public
451
451
  * <p>The function that aggregates the values in <code>Column</code>.</p>
@@ -521,7 +521,7 @@ export interface AnalysisError {
521
521
  * @public
522
522
  * <p>The type of the analysis error.</p>
523
523
  */
524
- Type?: AnalysisErrorType | string;
524
+ Type?: AnalysisErrorType;
525
525
  /**
526
526
  * @public
527
527
  * <p>The message associated with the analysis error.</p>
@@ -595,7 +595,7 @@ export interface Analysis {
595
595
  * @public
596
596
  * <p>Status associated with the analysis.</p>
597
597
  */
598
- Status?: ResourceStatus | string;
598
+ Status?: ResourceStatus;
599
599
  /**
600
600
  * @public
601
601
  * <p>Errors associated with the analysis.</p>
@@ -693,7 +693,7 @@ export interface GridLayoutScreenCanvasSizeOptions {
693
693
  * </li>
694
694
  * </ul>
695
695
  */
696
- ResizeOption: ResizeOption | string | undefined;
696
+ ResizeOption: ResizeOption | undefined;
697
697
  /**
698
698
  * @public
699
699
  * <p>The width that the view port will be optimized for when the layout renders.</p>
@@ -806,7 +806,7 @@ export interface SectionBasedLayoutPaperCanvasSizeOptions {
806
806
  * @public
807
807
  * <p>The paper size that is used to define canvas dimensions.</p>
808
808
  */
809
- PaperSize?: PaperSize | string;
809
+ PaperSize?: PaperSize;
810
810
  /**
811
811
  * @public
812
812
  * <p>The paper orientation that
@@ -821,7 +821,7 @@ export interface SectionBasedLayoutPaperCanvasSizeOptions {
821
821
  * </li>
822
822
  * </ul>
823
823
  */
824
- PaperOrientation?: PaperOrientation | string;
824
+ PaperOrientation?: PaperOrientation;
825
825
  /**
826
826
  * @public
827
827
  * <p>Defines the spacing between the canvas content and the top, bottom, left, and right edges.</p>
@@ -892,7 +892,7 @@ export interface DefaultNewSheetConfiguration {
892
892
  * @public
893
893
  * <p>The option that determines the sheet content type.</p>
894
894
  */
895
- SheetContentType?: SheetContentType | string;
895
+ SheetContentType?: SheetContentType;
896
896
  }
897
897
  /**
898
898
  * @public
@@ -958,7 +958,7 @@ export interface CustomColor {
958
958
  * @public
959
959
  * <p>The value of a special data value.</p>
960
960
  */
961
- SpecialValue?: SpecialValue | string;
961
+ SpecialValue?: SpecialValue;
962
962
  }
963
963
  /**
964
964
  * @public
@@ -1014,7 +1014,7 @@ export interface NegativeValueConfiguration {
1014
1014
  * @public
1015
1015
  * <p>Determines the display mode of the negative value configuration.</p>
1016
1016
  */
1017
- DisplayMode: NegativeValueDisplayMode | string | undefined;
1017
+ DisplayMode: NegativeValueDisplayMode | undefined;
1018
1018
  }
1019
1019
  /**
1020
1020
  * @public
@@ -1066,12 +1066,12 @@ export interface ThousandSeparatorOptions {
1066
1066
  * @public
1067
1067
  * <p>Determines the thousands separator symbol.</p>
1068
1068
  */
1069
- Symbol?: NumericSeparatorSymbol | string;
1069
+ Symbol?: NumericSeparatorSymbol;
1070
1070
  /**
1071
1071
  * @public
1072
1072
  * <p>Determines the visibility of the thousands separator.</p>
1073
1073
  */
1074
- Visibility?: Visibility | string;
1074
+ Visibility?: Visibility;
1075
1075
  }
1076
1076
  /**
1077
1077
  * @public
@@ -1082,7 +1082,7 @@ export interface NumericSeparatorConfiguration {
1082
1082
  * @public
1083
1083
  * <p>Determines the decimal separator.</p>
1084
1084
  */
1085
- DecimalSeparator?: NumericSeparatorSymbol | string;
1085
+ DecimalSeparator?: NumericSeparatorSymbol;
1086
1086
  /**
1087
1087
  * @public
1088
1088
  * <p>The options that determine the thousands separator configuration.</p>
@@ -1123,7 +1123,7 @@ export interface CurrencyDisplayFormatConfiguration {
1123
1123
  * @public
1124
1124
  * <p>Determines the number scale value for the currency format.</p>
1125
1125
  */
1126
- NumberScale?: NumberScale | string;
1126
+ NumberScale?: NumberScale;
1127
1127
  /**
1128
1128
  * @public
1129
1129
  * <p>The options that determine the negative value configuration.</p>
@@ -1164,7 +1164,7 @@ export interface NumberDisplayFormatConfiguration {
1164
1164
  * @public
1165
1165
  * <p>Determines the number scale value of the number format.</p>
1166
1166
  */
1167
- NumberScale?: NumberScale | string;
1167
+ NumberScale?: NumberScale;
1168
1168
  /**
1169
1169
  * @public
1170
1170
  * <p>The options that determine the negative value configuration.</p>
@@ -1334,7 +1334,7 @@ export interface ColumnConfiguration {
1334
1334
  * @public
1335
1335
  * <p>The role of the column.</p>
1336
1336
  */
1337
- Role?: ColumnRole | string;
1337
+ Role?: ColumnRole;
1338
1338
  /**
1339
1339
  * @public
1340
1340
  * <p>The color configurations of the column.</p>
@@ -1418,7 +1418,7 @@ export interface CustomFilterConfiguration {
1418
1418
  * @public
1419
1419
  * <p>The match operator that is used to determine if a filter should be applied.</p>
1420
1420
  */
1421
- MatchOperator: CategoryFilterMatchOperator | string | undefined;
1421
+ MatchOperator: CategoryFilterMatchOperator | undefined;
1422
1422
  /**
1423
1423
  * @public
1424
1424
  * <p>The category value for the filter.</p>
@@ -1436,7 +1436,7 @@ export interface CustomFilterConfiguration {
1436
1436
  * </li>
1437
1437
  * </ul>
1438
1438
  */
1439
- SelectAllOptions?: CategoryFilterSelectAllOptions | string;
1439
+ SelectAllOptions?: CategoryFilterSelectAllOptions;
1440
1440
  /**
1441
1441
  * @public
1442
1442
  * <p>The parameter whose value should be used for the filter value.</p>
@@ -1461,7 +1461,7 @@ export interface CustomFilterConfiguration {
1461
1461
  * </li>
1462
1462
  * </ul>
1463
1463
  */
1464
- NullOption: FilterNullOption | string | undefined;
1464
+ NullOption: FilterNullOption | undefined;
1465
1465
  }
1466
1466
  /**
1467
1467
  * @public
@@ -1472,7 +1472,7 @@ export interface CustomFilterListConfiguration {
1472
1472
  * @public
1473
1473
  * <p>The match operator that is used to determine if a filter should be applied.</p>
1474
1474
  */
1475
- MatchOperator: CategoryFilterMatchOperator | string | undefined;
1475
+ MatchOperator: CategoryFilterMatchOperator | undefined;
1476
1476
  /**
1477
1477
  * @public
1478
1478
  * <p>The list of category values for the filter.</p>
@@ -1489,7 +1489,7 @@ export interface CustomFilterListConfiguration {
1489
1489
  * </li>
1490
1490
  * </ul>
1491
1491
  */
1492
- SelectAllOptions?: CategoryFilterSelectAllOptions | string;
1492
+ SelectAllOptions?: CategoryFilterSelectAllOptions;
1493
1493
  /**
1494
1494
  * @public
1495
1495
  * <p>This option determines how null values should be treated when filtering data.</p>
@@ -1508,7 +1508,7 @@ export interface CustomFilterListConfiguration {
1508
1508
  * </li>
1509
1509
  * </ul>
1510
1510
  */
1511
- NullOption: FilterNullOption | string | undefined;
1511
+ NullOption: FilterNullOption | undefined;
1512
1512
  }
1513
1513
  /**
1514
1514
  * @public
@@ -1519,7 +1519,7 @@ export interface FilterListConfiguration {
1519
1519
  * @public
1520
1520
  * <p>The match operator that is used to determine if a filter should be applied.</p>
1521
1521
  */
1522
- MatchOperator: CategoryFilterMatchOperator | string | undefined;
1522
+ MatchOperator: CategoryFilterMatchOperator | undefined;
1523
1523
  /**
1524
1524
  * @public
1525
1525
  * <p>The list of category values for the filter.</p>
@@ -1536,7 +1536,7 @@ export interface FilterListConfiguration {
1536
1536
  * </li>
1537
1537
  * </ul>
1538
1538
  */
1539
- SelectAllOptions?: CategoryFilterSelectAllOptions | string;
1539
+ SelectAllOptions?: CategoryFilterSelectAllOptions;
1540
1540
  /**
1541
1541
  * @public
1542
1542
  * <p>This option determines how null values should be treated when filtering data.</p>
@@ -1555,7 +1555,7 @@ export interface FilterListConfiguration {
1555
1555
  * </li>
1556
1556
  * </ul>
1557
1557
  */
1558
- NullOption?: FilterNullOption | string;
1558
+ NullOption?: FilterNullOption;
1559
1559
  }
1560
1560
  /**
1561
1561
  * @public
@@ -1655,12 +1655,12 @@ export interface NumericEqualityFilter {
1655
1655
  * </li>
1656
1656
  * </ul>
1657
1657
  */
1658
- SelectAllOptions?: NumericFilterSelectAllOptions | string;
1658
+ SelectAllOptions?: NumericFilterSelectAllOptions;
1659
1659
  /**
1660
1660
  * @public
1661
1661
  * <p>The match operator that is used to determine if a filter should be applied.</p>
1662
1662
  */
1663
- MatchOperator: NumericEqualityMatchOperator | string | undefined;
1663
+ MatchOperator: NumericEqualityMatchOperator | undefined;
1664
1664
  /**
1665
1665
  * @public
1666
1666
  * <p>The aggregation function of the filter.</p>
@@ -1689,7 +1689,7 @@ export interface NumericEqualityFilter {
1689
1689
  * </li>
1690
1690
  * </ul>
1691
1691
  */
1692
- NullOption: FilterNullOption | string | undefined;
1692
+ NullOption: FilterNullOption | undefined;
1693
1693
  }
1694
1694
  /**
1695
1695
  * @public
@@ -1753,7 +1753,7 @@ export interface NumericRangeFilter {
1753
1753
  * </li>
1754
1754
  * </ul>
1755
1755
  */
1756
- SelectAllOptions?: NumericFilterSelectAllOptions | string;
1756
+ SelectAllOptions?: NumericFilterSelectAllOptions;
1757
1757
  /**
1758
1758
  * @public
1759
1759
  * <p>The aggregation function of the filter.</p>
@@ -1777,7 +1777,7 @@ export interface NumericRangeFilter {
1777
1777
  * </li>
1778
1778
  * </ul>
1779
1779
  */
1780
- NullOption: FilterNullOption | string | undefined;
1780
+ NullOption: FilterNullOption | undefined;
1781
1781
  }
1782
1782
  /**
1783
1783
  * @public
@@ -1806,7 +1806,7 @@ export interface AnchorDateConfiguration {
1806
1806
  * </li>
1807
1807
  * </ul>
1808
1808
  */
1809
- AnchorOption?: AnchorOption | string;
1809
+ AnchorOption?: AnchorOption;
1810
1810
  /**
1811
1811
  * @public
1812
1812
  * <p>The name of the parameter that is used for the anchor date configuration.</p>
@@ -1858,7 +1858,7 @@ export interface ExcludePeriodConfiguration {
1858
1858
  * @public
1859
1859
  * <p>The granularity or unit (day, month, year) of the exclude period.</p>
1860
1860
  */
1861
- Granularity: TimeGranularity | string | undefined;
1861
+ Granularity: TimeGranularity | undefined;
1862
1862
  /**
1863
1863
  * @public
1864
1864
  * <p>The status of the exclude period. Choose from the following options:</p>
@@ -1875,7 +1875,7 @@ export interface ExcludePeriodConfiguration {
1875
1875
  * </li>
1876
1876
  * </ul>
1877
1877
  */
1878
- Status?: WidgetStatus | string;
1878
+ Status?: WidgetStatus;
1879
1879
  }
1880
1880
  /**
1881
1881
  * @public
@@ -1916,12 +1916,12 @@ export interface RelativeDatesFilter {
1916
1916
  * @public
1917
1917
  * <p>The minimum granularity (period granularity) of the relative dates filter.</p>
1918
1918
  */
1919
- MinimumGranularity?: TimeGranularity | string;
1919
+ MinimumGranularity?: TimeGranularity;
1920
1920
  /**
1921
1921
  * @public
1922
1922
  * <p>The level of time precision that is used to aggregate <code>DateTime</code> values.</p>
1923
1923
  */
1924
- TimeGranularity: TimeGranularity | string | undefined;
1924
+ TimeGranularity: TimeGranularity | undefined;
1925
1925
  /**
1926
1926
  * @public
1927
1927
  * <p>The range date type of the filter. Choose one of the options below:</p>
@@ -1953,7 +1953,7 @@ export interface RelativeDatesFilter {
1953
1953
  * </li>
1954
1954
  * </ul>
1955
1955
  */
1956
- RelativeDateType: RelativeDateType | string | undefined;
1956
+ RelativeDateType: RelativeDateType | undefined;
1957
1957
  /**
1958
1958
  * @public
1959
1959
  * <p>The date value of the filter.</p>
@@ -1982,7 +1982,7 @@ export interface RelativeDatesFilter {
1982
1982
  * </li>
1983
1983
  * </ul>
1984
1984
  */
1985
- NullOption: FilterNullOption | string | undefined;
1985
+ NullOption: FilterNullOption | undefined;
1986
1986
  /**
1987
1987
  * @public
1988
1988
  * <p>The configuration for the exclude period of the filter.</p>
@@ -2020,7 +2020,7 @@ export interface TimeEqualityFilter {
2020
2020
  * @public
2021
2021
  * <p>The level of time precision that is used to aggregate <code>DateTime</code> values.</p>
2022
2022
  */
2023
- TimeGranularity?: TimeGranularity | string;
2023
+ TimeGranularity?: TimeGranularity;
2024
2024
  }
2025
2025
  /**
2026
2026
  * @public
@@ -2113,7 +2113,7 @@ export interface TimeRangeFilter {
2113
2113
  * </li>
2114
2114
  * </ul>
2115
2115
  */
2116
- NullOption: FilterNullOption | string | undefined;
2116
+ NullOption: FilterNullOption | undefined;
2117
2117
  /**
2118
2118
  * @public
2119
2119
  * <p>The exclude period of the time range filter.</p>
@@ -2123,7 +2123,7 @@ export interface TimeRangeFilter {
2123
2123
  * @public
2124
2124
  * <p>The level of time precision that is used to aggregate <code>DateTime</code> values.</p>
2125
2125
  */
2126
- TimeGranularity?: TimeGranularity | string;
2126
+ TimeGranularity?: TimeGranularity;
2127
2127
  }
2128
2128
  /**
2129
2129
  * @public
@@ -2154,7 +2154,7 @@ export interface TopBottomFilter {
2154
2154
  * @public
2155
2155
  * <p>The level of time precision that is used to aggregate <code>DateTime</code> values.</p>
2156
2156
  */
2157
- TimeGranularity?: TimeGranularity | string;
2157
+ TimeGranularity?: TimeGranularity;
2158
2158
  /**
2159
2159
  * @public
2160
2160
  * <p>The parameter whose value should be used for the filter value.</p>
@@ -2243,7 +2243,7 @@ export interface SheetVisualScopingConfiguration {
2243
2243
  * </li>
2244
2244
  * </ul>
2245
2245
  */
2246
- Scope: FilterVisualScope | string | undefined;
2246
+ Scope: FilterVisualScope | undefined;
2247
2247
  /**
2248
2248
  * @public
2249
2249
  * <p>The selected visuals that the filter is applied to.</p>
@@ -2305,7 +2305,7 @@ export interface FilterGroup {
2305
2305
  * @public
2306
2306
  * <p>The status of the <code>FilterGroup</code>.</p>
2307
2307
  */
2308
- Status?: WidgetStatus | string;
2308
+ Status?: WidgetStatus;
2309
2309
  /**
2310
2310
  * @public
2311
2311
  * <p>The filter new feature which can apply filter group to all data sets. Choose one of the following options:</p>
@@ -2322,7 +2322,7 @@ export interface FilterGroup {
2322
2322
  * </li>
2323
2323
  * </ul>
2324
2324
  */
2325
- CrossDataset: CrossDatasetTypes | string | undefined;
2325
+ CrossDataset: CrossDatasetTypes | undefined;
2326
2326
  }
2327
2327
  /**
2328
2328
  * @public
@@ -2413,7 +2413,7 @@ export interface DateTimeValueWhenUnsetConfiguration {
2413
2413
  * </li>
2414
2414
  * </ul>
2415
2415
  */
2416
- ValueWhenUnsetOption?: ValueWhenUnsetOption | string;
2416
+ ValueWhenUnsetOption?: ValueWhenUnsetOption;
2417
2417
  /**
2418
2418
  * @public
2419
2419
  * <p>A custom value that's used when the value of a parameter isn't set.</p>
@@ -2439,7 +2439,7 @@ export interface DateTimeParameterDeclaration {
2439
2439
  * @public
2440
2440
  * <p>The level of time precision that is used to aggregate <code>DateTime</code> values.</p>
2441
2441
  */
2442
- TimeGranularity?: TimeGranularity | string;
2442
+ TimeGranularity?: TimeGranularity;
2443
2443
  /**
2444
2444
  * @public
2445
2445
  * <p>The configuration that defines the default value of a <code>DateTime</code> parameter when a value has not been set.</p>
@@ -2498,7 +2498,7 @@ export interface DecimalValueWhenUnsetConfiguration {
2498
2498
  * </li>
2499
2499
  * </ul>
2500
2500
  */
2501
- ValueWhenUnsetOption?: ValueWhenUnsetOption | string;
2501
+ ValueWhenUnsetOption?: ValueWhenUnsetOption;
2502
2502
  /**
2503
2503
  * @public
2504
2504
  * <p>A custom value that's used when the value of a parameter isn't set.</p>
@@ -2514,7 +2514,7 @@ export interface DecimalParameterDeclaration {
2514
2514
  * @public
2515
2515
  * <p>The value type determines whether the parameter is a single-value or multi-value parameter.</p>
2516
2516
  */
2517
- ParameterValueType: ParameterValueType | string | undefined;
2517
+ ParameterValueType: ParameterValueType | undefined;
2518
2518
  /**
2519
2519
  * @public
2520
2520
  * <p>The name of the parameter that is being declared.</p>
@@ -2572,7 +2572,7 @@ export interface IntegerValueWhenUnsetConfiguration {
2572
2572
  * </li>
2573
2573
  * </ul>
2574
2574
  */
2575
- ValueWhenUnsetOption?: ValueWhenUnsetOption | string;
2575
+ ValueWhenUnsetOption?: ValueWhenUnsetOption;
2576
2576
  /**
2577
2577
  * @public
2578
2578
  * <p>A custom value that's used when the value of a parameter isn't set.</p>
@@ -2588,7 +2588,7 @@ export interface IntegerParameterDeclaration {
2588
2588
  * @public
2589
2589
  * <p>The value type determines whether the parameter is a single-value or multi-value parameter.</p>
2590
2590
  */
2591
- ParameterValueType: ParameterValueType | string | undefined;
2591
+ ParameterValueType: ParameterValueType | undefined;
2592
2592
  /**
2593
2593
  * @public
2594
2594
  * <p>The name of the parameter that is being declared.</p>
@@ -2645,7 +2645,7 @@ export interface StringValueWhenUnsetConfiguration {
2645
2645
  * </li>
2646
2646
  * </ul>
2647
2647
  */
2648
- ValueWhenUnsetOption?: ValueWhenUnsetOption | string;
2648
+ ValueWhenUnsetOption?: ValueWhenUnsetOption;
2649
2649
  /**
2650
2650
  * @public
2651
2651
  * <p>A custom value that's used when the value of a parameter isn't set.</p>
@@ -2661,7 +2661,7 @@ export interface StringParameterDeclaration {
2661
2661
  * @public
2662
2662
  * <p>The value type determines whether the parameter is a single-value or multi-value parameter.</p>
2663
2663
  */
2664
- ParameterValueType: ParameterValueType | string | undefined;
2664
+ ParameterValueType: ParameterValueType | undefined;
2665
2665
  /**
2666
2666
  * @public
2667
2667
  * <p>The name of the parameter that is being declared.</p>
@@ -2720,7 +2720,7 @@ export interface SheetControlInfoIconLabelOptions {
2720
2720
  * @public
2721
2721
  * <p>The visibility configuration of info icon label options.</p>
2722
2722
  */
2723
- Visibility?: Visibility | string;
2723
+ Visibility?: Visibility;
2724
2724
  /**
2725
2725
  * @public
2726
2726
  * <p> The text content of info icon.</p>
@@ -2763,7 +2763,7 @@ export interface FontSize {
2763
2763
  * @public
2764
2764
  * <p>The lexical name for the text size, proportional to its surrounding context.</p>
2765
2765
  */
2766
- Relative?: RelativeFontSize | string;
2766
+ Relative?: RelativeFontSize;
2767
2767
  }
2768
2768
  /**
2769
2769
  * @public
@@ -2798,7 +2798,7 @@ export interface FontWeight {
2798
2798
  * @public
2799
2799
  * <p>The lexical name for the level of boldness of the text display.</p>
2800
2800
  */
2801
- Name?: FontWeightName | string;
2801
+ Name?: FontWeightName;
2802
2802
  }
2803
2803
  /**
2804
2804
  * @public
@@ -2814,7 +2814,7 @@ export interface FontConfiguration {
2814
2814
  * @public
2815
2815
  * <p>Determines the appearance of decorative lines on the text.</p>
2816
2816
  */
2817
- FontDecoration?: FontDecoration | string;
2817
+ FontDecoration?: FontDecoration;
2818
2818
  /**
2819
2819
  * @public
2820
2820
  * <p>Determines the color of the text.</p>
@@ -2829,7 +2829,7 @@ export interface FontConfiguration {
2829
2829
  * @public
2830
2830
  * <p>Determines the text display face that is inherited by the given font family.</p>
2831
2831
  */
2832
- FontStyle?: FontStyle | string;
2832
+ FontStyle?: FontStyle;
2833
2833
  }
2834
2834
  /**
2835
2835
  * @public
@@ -2840,7 +2840,7 @@ export interface LabelOptions {
2840
2840
  * @public
2841
2841
  * <p>Determines whether or not the label is visible.</p>
2842
2842
  */
2843
- Visibility?: Visibility | string;
2843
+ Visibility?: Visibility;
2844
2844
  /**
2845
2845
  * @public
2846
2846
  * <p>The font configuration of the label.</p>
@@ -2924,7 +2924,7 @@ export interface FilterDateTimePickerControl {
2924
2924
  * </li>
2925
2925
  * </ul>
2926
2926
  */
2927
- Type?: SheetControlDateTimePickerType | string;
2927
+ Type?: SheetControlDateTimePickerType;
2928
2928
  }
2929
2929
  /**
2930
2930
  * @public
@@ -2962,7 +2962,7 @@ export interface ListControlSelectAllOptions {
2962
2962
  * @public
2963
2963
  * <p>The visibility configuration of the <code>Select all</code> options in a list control.</p>
2964
2964
  */
2965
- Visibility?: Visibility | string;
2965
+ Visibility?: Visibility;
2966
2966
  }
2967
2967
  /**
2968
2968
  * @public
@@ -3048,7 +3048,7 @@ export interface FilterDropDownControl {
3048
3048
  * </li>
3049
3049
  * </ul>
3050
3050
  */
3051
- Type?: SheetControlListType | string;
3051
+ Type?: SheetControlListType;
3052
3052
  /**
3053
3053
  * @public
3054
3054
  * <p>A list of selectable values that are used in a control.</p>
@@ -3069,7 +3069,7 @@ export interface ListControlSearchOptions {
3069
3069
  * @public
3070
3070
  * <p>The visibility configuration of the search options in a list control.</p>
3071
3071
  */
3072
- Visibility?: Visibility | string;
3072
+ Visibility?: Visibility;
3073
3073
  }
3074
3074
  /**
3075
3075
  * @public
@@ -3136,7 +3136,7 @@ export interface FilterListControl {
3136
3136
  * </li>
3137
3137
  * </ul>
3138
3138
  */
3139
- Type?: SheetControlListType | string;
3139
+ Type?: SheetControlListType;
3140
3140
  /**
3141
3141
  * @public
3142
3142
  * <p>A list of selectable values that are used in a control.</p>
@@ -3262,7 +3262,7 @@ export interface FilterSliderControl {
3262
3262
  * </li>
3263
3263
  * </ul>
3264
3264
  */
3265
- Type?: SheetControlSliderType | string;
3265
+ Type?: SheetControlSliderType;
3266
3266
  /**
3267
3267
  * @public
3268
3268
  * <p>The smaller value that is displayed at the left of the slider.</p>
@@ -3288,7 +3288,7 @@ export interface TextControlPlaceholderOptions {
3288
3288
  * @public
3289
3289
  * <p>The visibility configuration of the placeholder options in a text control.</p>
3290
3290
  */
3291
- Visibility?: Visibility | string;
3291
+ Visibility?: Visibility;
3292
3292
  }
3293
3293
  /**
3294
3294
  * @public
@@ -3440,7 +3440,7 @@ export interface FreeFormLayoutElementBackgroundStyle {
3440
3440
  * @public
3441
3441
  * <p>The background visibility of a free-form layout element.</p>
3442
3442
  */
3443
- Visibility?: Visibility | string;
3443
+ Visibility?: Visibility;
3444
3444
  /**
3445
3445
  * @public
3446
3446
  * <p>The background color of a free-form layout element.</p>
@@ -3456,7 +3456,7 @@ export interface FreeFormLayoutElementBorderStyle {
3456
3456
  * @public
3457
3457
  * <p>The border visibility of a free-form layout element.</p>
3458
3458
  */
3459
- Visibility?: Visibility | string;
3459
+ Visibility?: Visibility;
3460
3460
  /**
3461
3461
  * @public
3462
3462
  * <p>The border color of a free-form layout element.</p>
@@ -3486,7 +3486,7 @@ export interface LoadingAnimation {
3486
3486
  * @public
3487
3487
  * <p>The visibility configuration of <code>LoadingAnimation</code>.</p>
3488
3488
  */
3489
- Visibility?: Visibility | string;
3489
+ Visibility?: Visibility;
3490
3490
  }
3491
3491
  /**
3492
3492
  * @public
@@ -3509,7 +3509,7 @@ export interface SheetElementConfigurationOverrides {
3509
3509
  * </li>
3510
3510
  * </ul>
3511
3511
  */
3512
- Visibility?: Visibility | string;
3512
+ Visibility?: Visibility;
3513
3513
  }
3514
3514
  /**
3515
3515
  * @public
@@ -3541,7 +3541,7 @@ export interface FreeFormLayoutElement {
3541
3541
  * @public
3542
3542
  * <p>The type of element.</p>
3543
3543
  */
3544
- ElementType: LayoutElementType | string | undefined;
3544
+ ElementType: LayoutElementType | undefined;
3545
3545
  /**
3546
3546
  * @public
3547
3547
  * <p>The x-axis coordinate of the element.</p>
@@ -3566,7 +3566,7 @@ export interface FreeFormLayoutElement {
3566
3566
  * @public
3567
3567
  * <p>The visibility of an element within a free-form layout.</p>
3568
3568
  */
3569
- Visibility?: Visibility | string;
3569
+ Visibility?: Visibility;
3570
3570
  /**
3571
3571
  * @public
3572
3572
  * <p>The rendering rules that determine when an element should be displayed within a free-form layout.</p>
@@ -3623,7 +3623,7 @@ export interface GridLayoutElement {
3623
3623
  * @public
3624
3624
  * <p>The type of element.</p>
3625
3625
  */
3626
- ElementType: LayoutElementType | string | undefined;
3626
+ ElementType: LayoutElementType | undefined;
3627
3627
  /**
3628
3628
  * @public
3629
3629
  * <p>The column index for the upper left corner of an element.</p>
@@ -3716,7 +3716,7 @@ export interface SectionAfterPageBreak {
3716
3716
  * @public
3717
3717
  * <p>The option that enables or disables a page break at the end of a section.</p>
3718
3718
  */
3719
- Status?: SectionPageBreakStatus | string;
3719
+ Status?: SectionPageBreakStatus;
3720
3720
  }
3721
3721
  /**
3722
3722
  * @public
@@ -3927,7 +3927,7 @@ export interface ParameterDropDownControl {
3927
3927
  * @public
3928
3928
  * <p>The type parameter name of the <code>ParameterDropDownControl</code>.</p>
3929
3929
  */
3930
- Type?: SheetControlListType | string;
3930
+ Type?: SheetControlListType;
3931
3931
  /**
3932
3932
  * @public
3933
3933
  * <p>A list of selectable values that are used in a control.</p>
@@ -3968,7 +3968,7 @@ export interface ParameterListControl {
3968
3968
  * @public
3969
3969
  * <p>The type of <code>ParameterListControl</code>.</p>
3970
3970
  */
3971
- Type?: SheetControlListType | string;
3971
+ Type?: SheetControlListType;
3972
3972
  /**
3973
3973
  * @public
3974
3974
  * <p>A list of selectable values that are used in a control.</p>
@@ -4186,7 +4186,7 @@ export interface FilterOperationSelectedFieldsConfiguration {
4186
4186
  * </li>
4187
4187
  * </ul>
4188
4188
  */
4189
- SelectedFieldOptions?: SelectedFieldOptions | string;
4189
+ SelectedFieldOptions?: SelectedFieldOptions;
4190
4190
  /**
4191
4191
  * @public
4192
4192
  * <p>The selected columns of a dataset.</p>
@@ -4226,7 +4226,7 @@ export interface SameSheetTargetVisualConfiguration {
4226
4226
  * </li>
4227
4227
  * </ul>
4228
4228
  */
4229
- TargetVisualOptions?: TargetVisualOptions | string;
4229
+ TargetVisualOptions?: TargetVisualOptions;
4230
4230
  }
4231
4231
  /**
4232
4232
  * @public
@@ -4349,7 +4349,7 @@ export interface DestinationParameterValueConfiguration {
4349
4349
  * @public
4350
4350
  * <p>The configuration that selects all options.</p>
4351
4351
  */
4352
- SelectAllValueOptions?: SelectAllValueOptions | string;
4352
+ SelectAllValueOptions?: SelectAllValueOptions;
4353
4353
  /**
4354
4354
  * @public
4355
4355
  * <p>The source parameter name of the destination parameter.</p>
@@ -4436,7 +4436,7 @@ export interface CustomActionURLOperation {
4436
4436
  * </li>
4437
4437
  * </ul>
4438
4438
  */
4439
- URLTarget: URLTargetConfiguration | string | undefined;
4439
+ URLTarget: URLTargetConfiguration | undefined;
4440
4440
  }
4441
4441
  /**
4442
4442
  * @public
@@ -4496,7 +4496,7 @@ export interface VisualCustomAction {
4496
4496
  * @public
4497
4497
  * <p>The status of the <code>VisualCustomAction</code>.</p>
4498
4498
  */
4499
- Status?: WidgetStatus | string;
4499
+ Status?: WidgetStatus;
4500
4500
  /**
4501
4501
  * @public
4502
4502
  * <p>The trigger of the <code>VisualCustomAction</code>.</p>
@@ -4512,7 +4512,7 @@ export interface VisualCustomAction {
4512
4512
  * </li>
4513
4513
  * </ul>
4514
4514
  */
4515
- Trigger: VisualCustomActionTrigger | string | undefined;
4515
+ Trigger: VisualCustomActionTrigger | undefined;
4516
4516
  /**
4517
4517
  * @public
4518
4518
  * <p>A list of <code>VisualCustomActionOperations</code>.</p>
@@ -4542,7 +4542,7 @@ export interface DateAxisOptions {
4542
4542
  * @public
4543
4543
  * <p>Determines whether or not missing dates are displayed.</p>
4544
4544
  */
4545
- MissingDateVisibility?: Visibility | string;
4545
+ MissingDateVisibility?: Visibility;
4546
4546
  }
4547
4547
  /**
4548
4548
  * @public
@@ -4698,7 +4698,7 @@ export interface ScrollBarOptions {
4698
4698
  * @public
4699
4699
  * <p>The visibility of the data zoom scroll bar.</p>
4700
4700
  */
4701
- Visibility?: Visibility | string;
4701
+ Visibility?: Visibility;
4702
4702
  /**
4703
4703
  * @public
4704
4704
  * <p>The visibility range for the data zoom scroll bar.</p>
@@ -4735,12 +4735,12 @@ export interface AxisDisplayOptions {
4735
4735
  * @public
4736
4736
  * <p>Determines whether or not the axis line is visible.</p>
4737
4737
  */
4738
- AxisLineVisibility?: Visibility | string;
4738
+ AxisLineVisibility?: Visibility;
4739
4739
  /**
4740
4740
  * @public
4741
4741
  * <p>Determines whether or not the grid line is visible.</p>
4742
4742
  */
4743
- GridLineVisibility?: Visibility | string;
4743
+ GridLineVisibility?: Visibility;
4744
4744
  /**
4745
4745
  * @public
4746
4746
  * <p>The data options for an axis.</p>
@@ -4813,12 +4813,12 @@ export interface ChartAxisLabelOptions {
4813
4813
  * </li>
4814
4814
  * </ul>
4815
4815
  */
4816
- Visibility?: Visibility | string;
4816
+ Visibility?: Visibility;
4817
4817
  /**
4818
4818
  * @public
4819
4819
  * <p>The visibility configuration of the sort icon on a chart's axis label.</p>
4820
4820
  */
4821
- SortIconVisibility?: Visibility | string;
4821
+ SortIconVisibility?: Visibility;
4822
4822
  /**
4823
4823
  * @public
4824
4824
  * <p>The label options for a chart axis.</p>
@@ -4861,7 +4861,7 @@ export interface DataPathLabelType {
4861
4861
  * @public
4862
4862
  * <p>The visibility of the data label.</p>
4863
4863
  */
4864
- Visibility?: Visibility | string;
4864
+ Visibility?: Visibility;
4865
4865
  }
4866
4866
  /**
4867
4867
  * @public
@@ -4878,7 +4878,7 @@ export interface FieldLabelType {
4878
4878
  * @public
4879
4879
  * <p>The visibility of the field label.</p>
4880
4880
  */
4881
- Visibility?: Visibility | string;
4881
+ Visibility?: Visibility;
4882
4882
  }
4883
4883
  /**
4884
4884
  * @public
@@ -4889,7 +4889,7 @@ export interface MaximumLabelType {
4889
4889
  * @public
4890
4890
  * <p>The visibility of the maximum label.</p>
4891
4891
  */
4892
- Visibility?: Visibility | string;
4892
+ Visibility?: Visibility;
4893
4893
  }
4894
4894
  /**
4895
4895
  * @public
@@ -4900,7 +4900,7 @@ export interface MinimumLabelType {
4900
4900
  * @public
4901
4901
  * <p>The visibility of the minimum label.</p>
4902
4902
  */
4903
- Visibility?: Visibility | string;
4903
+ Visibility?: Visibility;
4904
4904
  }
4905
4905
  /**
4906
4906
  * @public
@@ -4911,7 +4911,7 @@ export interface RangeEndsLabelType {
4911
4911
  * @public
4912
4912
  * <p>The visibility of the range ends label.</p>
4913
4913
  */
4914
- Visibility?: Visibility | string;
4914
+ Visibility?: Visibility;
4915
4915
  }
4916
4916
  /**
4917
4917
  * @public
@@ -4995,17 +4995,17 @@ export interface DataLabelOptions {
4995
4995
  * @public
4996
4996
  * <p>Determines the visibility of the data labels.</p>
4997
4997
  */
4998
- Visibility?: Visibility | string;
4998
+ Visibility?: Visibility;
4999
4999
  /**
5000
5000
  * @public
5001
5001
  * <p>Determines the visibility of the category field labels.</p>
5002
5002
  */
5003
- CategoryLabelVisibility?: Visibility | string;
5003
+ CategoryLabelVisibility?: Visibility;
5004
5004
  /**
5005
5005
  * @public
5006
5006
  * <p>Determines the visibility of the measure field labels.</p>
5007
5007
  */
5008
- MeasureLabelVisibility?: Visibility | string;
5008
+ MeasureLabelVisibility?: Visibility;
5009
5009
  /**
5010
5010
  * @public
5011
5011
  * <p>The option that determines the data label type.</p>
@@ -5015,12 +5015,12 @@ export interface DataLabelOptions {
5015
5015
  * @public
5016
5016
  * <p>Determines the position of the data labels.</p>
5017
5017
  */
5018
- Position?: DataLabelPosition | string;
5018
+ Position?: DataLabelPosition;
5019
5019
  /**
5020
5020
  * @public
5021
5021
  * <p>Determines the content of the data labels.</p>
5022
5022
  */
5023
- LabelContent?: DataLabelContent | string;
5023
+ LabelContent?: DataLabelContent;
5024
5024
  /**
5025
5025
  * @public
5026
5026
  * <p>Determines the font configuration of the data labels.</p>
@@ -5035,12 +5035,12 @@ export interface DataLabelOptions {
5035
5035
  * @public
5036
5036
  * <p>Determines whether overlap is enabled or disabled for the data labels.</p>
5037
5037
  */
5038
- Overlap?: DataLabelOverlap | string;
5038
+ Overlap?: DataLabelOverlap;
5039
5039
  /**
5040
5040
  * @public
5041
5041
  * <p>Determines the visibility of the total.</p>
5042
5042
  */
5043
- TotalsVisibility?: Visibility | string;
5043
+ TotalsVisibility?: Visibility;
5044
5044
  }
5045
5045
  /**
5046
5046
  * @public
@@ -5134,7 +5134,7 @@ export interface DateDimensionField {
5134
5134
  * </li>
5135
5135
  * </ul>
5136
5136
  */
5137
- DateGranularity?: TimeGranularity | string;
5137
+ DateGranularity?: TimeGranularity;
5138
5138
  /**
5139
5139
  * @public
5140
5140
  * <p>The custom hierarchy ID.</p>
@@ -5228,7 +5228,7 @@ export interface CategoricalMeasureField {
5228
5228
  * @public
5229
5229
  * <p>The aggregation function of the measure field.</p>
5230
5230
  */
5231
- AggregationFunction?: CategoricalAggregationFunction | string;
5231
+ AggregationFunction?: CategoricalAggregationFunction;
5232
5232
  /**
5233
5233
  * @public
5234
5234
  * <p>The format configuration of the field.</p>
@@ -5254,7 +5254,7 @@ export interface DateMeasureField {
5254
5254
  * @public
5255
5255
  * <p>The aggregation function of the measure field.</p>
5256
5256
  */
5257
- AggregationFunction?: DateAggregationFunction | string;
5257
+ AggregationFunction?: DateAggregationFunction;
5258
5258
  /**
5259
5259
  * @public
5260
5260
  * <p>The format configuration of the field.</p>
@@ -5375,7 +5375,7 @@ export interface LegendOptions {
5375
5375
  * @public
5376
5376
  * <p>Determines whether or not the legend is visible.</p>
5377
5377
  */
5378
- Visibility?: Visibility | string;
5378
+ Visibility?: Visibility;
5379
5379
  /**
5380
5380
  * @public
5381
5381
  * <p>The custom title for the legend.</p>
@@ -5408,7 +5408,7 @@ export interface LegendOptions {
5408
5408
  * </li>
5409
5409
  * </ul>
5410
5410
  */
5411
- Position?: LegendPosition | string;
5411
+ Position?: LegendPosition;
5412
5412
  /**
5413
5413
  * @public
5414
5414
  * <p>The width of the legend. If this value is omitted, a default width is used when rendering.</p>
@@ -5505,7 +5505,7 @@ export interface ReferenceLineDataConfiguration {
5505
5505
  * </li>
5506
5506
  * </ul>
5507
5507
  */
5508
- AxisBinding?: AxisBinding | string;
5508
+ AxisBinding?: AxisBinding;
5509
5509
  }
5510
5510
  /**
5511
5511
  * @public
@@ -5564,7 +5564,7 @@ export interface ReferenceLineValueLabelConfiguration {
5564
5564
  * </li>
5565
5565
  * </ul>
5566
5566
  */
5567
- RelativePosition?: ReferenceLineValueLabelRelativePosition | string;
5567
+ RelativePosition?: ReferenceLineValueLabelRelativePosition;
5568
5568
  /**
5569
5569
  * @public
5570
5570
  * <p>The format configuration of the value label.</p>
@@ -5630,7 +5630,7 @@ export interface ReferenceLineLabelConfiguration {
5630
5630
  * </li>
5631
5631
  * </ul>
5632
5632
  */
5633
- HorizontalPosition?: ReferenceLineLabelHorizontalPosition | string;
5633
+ HorizontalPosition?: ReferenceLineLabelHorizontalPosition;
5634
5634
  /**
5635
5635
  * @public
5636
5636
  * <p>The vertical position configuration of the label in a reference line. Choose one of the following options:</p>
@@ -5647,7 +5647,7 @@ export interface ReferenceLineLabelConfiguration {
5647
5647
  * </li>
5648
5648
  * </ul>
5649
5649
  */
5650
- VerticalPosition?: ReferenceLineLabelVerticalPosition | string;
5650
+ VerticalPosition?: ReferenceLineLabelVerticalPosition;
5651
5651
  }
5652
5652
  /**
5653
5653
  * @public
@@ -5689,7 +5689,7 @@ export interface ReferenceLineStyleConfiguration {
5689
5689
  * </li>
5690
5690
  * </ul>
5691
5691
  */
5692
- Pattern?: ReferenceLinePatternType | string;
5692
+ Pattern?: ReferenceLinePatternType;
5693
5693
  /**
5694
5694
  * @public
5695
5695
  * <p>The hex color of the reference line.</p>
@@ -5717,7 +5717,7 @@ export interface ReferenceLine {
5717
5717
  * </li>
5718
5718
  * </ul>
5719
5719
  */
5720
- Status?: WidgetStatus | string;
5720
+ Status?: WidgetStatus;
5721
5721
  /**
5722
5722
  * @public
5723
5723
  * <p>The data configuration of the reference line.</p>
@@ -5771,7 +5771,7 @@ export interface PanelTitleOptions {
5771
5771
  * @public
5772
5772
  * <p>Determines whether or not panel titles are displayed.</p>
5773
5773
  */
5774
- Visibility?: Visibility | string;
5774
+ Visibility?: Visibility;
5775
5775
  /**
5776
5776
  * @public
5777
5777
  * <p>Configures the display properties of the given text.</p>
@@ -5781,7 +5781,7 @@ export interface PanelTitleOptions {
5781
5781
  * @public
5782
5782
  * <p>Sets the horizontal text alignment of the title within each panel.</p>
5783
5783
  */
5784
- HorizontalTextAlignment?: HorizontalTextAlignment | string;
5784
+ HorizontalTextAlignment?: HorizontalTextAlignment;
5785
5785
  }
5786
5786
  /**
5787
5787
  * @public
@@ -5797,7 +5797,7 @@ export interface PanelConfiguration {
5797
5797
  * @public
5798
5798
  * <p>Determines whether or not each panel displays a border.</p>
5799
5799
  */
5800
- BorderVisibility?: Visibility | string;
5800
+ BorderVisibility?: Visibility;
5801
5801
  /**
5802
5802
  * @public
5803
5803
  * <p>Sets the line thickness of panel borders.</p>
@@ -5807,7 +5807,7 @@ export interface PanelConfiguration {
5807
5807
  * @public
5808
5808
  * <p>Sets the line style of panel borders.</p>
5809
5809
  */
5810
- BorderStyle?: PanelBorderStyle | string;
5810
+ BorderStyle?: PanelBorderStyle;
5811
5811
  /**
5812
5812
  * @public
5813
5813
  * <p>Sets the line color of panel borders.</p>
@@ -5817,7 +5817,7 @@ export interface PanelConfiguration {
5817
5817
  * @public
5818
5818
  * <p>Determines whether or not negative space between sibling panels is rendered.</p>
5819
5819
  */
5820
- GutterVisibility?: Visibility | string;
5820
+ GutterVisibility?: Visibility;
5821
5821
  /**
5822
5822
  * @public
5823
5823
  * <p>Sets the total amount of negative space to display between sibling panels.</p>
@@ -5827,7 +5827,7 @@ export interface PanelConfiguration {
5827
5827
  * @public
5828
5828
  * <p>Determines whether or not a background for each small multiples panel is rendered.</p>
5829
5829
  */
5830
- BackgroundVisibility?: Visibility | string;
5830
+ BackgroundVisibility?: Visibility;
5831
5831
  /**
5832
5832
  * @public
5833
5833
  * <p>Sets the background color for each panel.</p>
@@ -5867,12 +5867,12 @@ export interface SmallMultiplesAxisProperties {
5867
5867
  * @public
5868
5868
  * <p>Determines whether scale of the axes are shared or independent. The default value is <code>SHARED</code>.</p>
5869
5869
  */
5870
- Scale?: SmallMultiplesAxisScale | string;
5870
+ Scale?: SmallMultiplesAxisScale;
5871
5871
  /**
5872
5872
  * @public
5873
5873
  * <p>Defines the placement of the axis. By default, axes are rendered <code>OUTSIDE</code> of the panels. Axes with <code>INDEPENDENT</code> scale are rendered <code>INSIDE</code> the panels.</p>
5874
5874
  */
5875
- Placement?: SmallMultiplesAxisPlacement | string;
5875
+ Placement?: SmallMultiplesAxisPlacement;
5876
5876
  }
5877
5877
  /**
5878
5878
  * @public
@@ -5949,7 +5949,7 @@ export interface ItemsLimitConfiguration {
5949
5949
  * </li>
5950
5950
  * </ul>
5951
5951
  */
5952
- OtherCategories?: OtherCategories | string;
5952
+ OtherCategories?: OtherCategories;
5953
5953
  }
5954
5954
  /**
5955
5955
  * @public
@@ -5965,7 +5965,7 @@ export interface ColumnSort {
5965
5965
  * @public
5966
5966
  * <p>The sort direction.</p>
5967
5967
  */
5968
- Direction: SortDirection | string | undefined;
5968
+ Direction: SortDirection | undefined;
5969
5969
  /**
5970
5970
  * @public
5971
5971
  * <p>The aggregation function that is defined in the column sort.</p>
@@ -5998,7 +5998,7 @@ export interface FieldSort {
5998
5998
  * </li>
5999
5999
  * </ul>
6000
6000
  */
6001
- Direction: SortDirection | string | undefined;
6001
+ Direction: SortDirection | undefined;
6002
6002
  }
6003
6003
  /**
6004
6004
  * @public
@@ -6071,7 +6071,7 @@ export interface ColumnTooltipItem {
6071
6071
  * @public
6072
6072
  * <p>The visibility of the tooltip item.</p>
6073
6073
  */
6074
- Visibility?: Visibility | string;
6074
+ Visibility?: Visibility;
6075
6075
  /**
6076
6076
  * @public
6077
6077
  * <p>The aggregation function of the column tooltip item.</p>
@@ -6097,7 +6097,7 @@ export interface FieldTooltipItem {
6097
6097
  * @public
6098
6098
  * <p>The visibility of the tooltip item.</p>
6099
6099
  */
6100
- Visibility?: Visibility | string;
6100
+ Visibility?: Visibility;
6101
6101
  }
6102
6102
  /**
6103
6103
  * @public
@@ -6137,7 +6137,7 @@ export interface FieldBasedTooltip {
6137
6137
  * @public
6138
6138
  * <p>The visibility of <code>Show aggregations</code>.</p>
6139
6139
  */
6140
- AggregationVisibility?: Visibility | string;
6140
+ AggregationVisibility?: Visibility;
6141
6141
  /**
6142
6142
  * @public
6143
6143
  * <p>The type for the >tooltip title. Choose one of the following options:</p>
@@ -6152,7 +6152,7 @@ export interface FieldBasedTooltip {
6152
6152
  * </li>
6153
6153
  * </ul>
6154
6154
  */
6155
- TooltipTitleType?: TooltipTitleType | string;
6155
+ TooltipTitleType?: TooltipTitleType;
6156
6156
  /**
6157
6157
  * @public
6158
6158
  * <p>The fields configuration in the
@@ -6181,7 +6181,7 @@ export interface TooltipOptions {
6181
6181
  * @public
6182
6182
  * <p>Determines whether or not the tooltip is visible.</p>
6183
6183
  */
6184
- TooltipVisibility?: Visibility | string;
6184
+ TooltipVisibility?: Visibility;
6185
6185
  /**
6186
6186
  * @public
6187
6187
  * <p>The selected type for the tooltip. Choose one of the following options:</p>
@@ -6196,7 +6196,7 @@ export interface TooltipOptions {
6196
6196
  * </li>
6197
6197
  * </ul>
6198
6198
  */
6199
- SelectedTooltipType?: SelectedTooltipType | string;
6199
+ SelectedTooltipType?: SelectedTooltipType;
6200
6200
  /**
6201
6201
  * @public
6202
6202
  * <p>The setup for the detailed tooltip. The tooltip setup is always saved. The display type is decided based on the tooltip type.</p>
@@ -6238,7 +6238,7 @@ export interface DataPathColor {
6238
6238
  * @public
6239
6239
  * <p>The time granularity of the field that the color needs to be applied to.</p>
6240
6240
  */
6241
- TimeGranularity?: TimeGranularity | string;
6241
+ TimeGranularity?: TimeGranularity;
6242
6242
  }
6243
6243
  /**
6244
6244
  * @public
@@ -6285,12 +6285,12 @@ export interface BarChartConfiguration {
6285
6285
  * </li>
6286
6286
  * </ul>
6287
6287
  */
6288
- Orientation?: BarChartOrientation | string;
6288
+ Orientation?: BarChartOrientation;
6289
6289
  /**
6290
6290
  * @public
6291
6291
  * <p>Determines the arrangement of the bars. The orientation and arrangement of bars determine the type of bar that is used in the visual.</p>
6292
6292
  */
6293
- BarsArrangement?: BarsArrangement | string;
6293
+ BarsArrangement?: BarsArrangement;
6294
6294
  /**
6295
6295
  * @public
6296
6296
  * <p>The palette (chart color) display setup of the visual.</p>
@@ -6408,7 +6408,7 @@ export interface TimeRangeDrillDownFilter {
6408
6408
  * @public
6409
6409
  * <p>The level of time precision that is used to aggregate <code>DateTime</code> values.</p>
6410
6410
  */
6411
- TimeGranularity: TimeGranularity | string | undefined;
6411
+ TimeGranularity: TimeGranularity | undefined;
6412
6412
  }
6413
6413
  /**
6414
6414
  * @public
@@ -6538,7 +6538,7 @@ export interface VisualSubtitleLabelOptions {
6538
6538
  * @public
6539
6539
  * <p>The visibility of the subtitle label.</p>
6540
6540
  */
6541
- Visibility?: Visibility | string;
6541
+ Visibility?: Visibility;
6542
6542
  /**
6543
6543
  * @public
6544
6544
  * <p>The long text format of the subtitle label, such as plain text or rich text.</p>
@@ -6571,7 +6571,7 @@ export interface VisualTitleLabelOptions {
6571
6571
  * @public
6572
6572
  * <p>The visibility of the title label.</p>
6573
6573
  */
6574
- Visibility?: Visibility | string;
6574
+ Visibility?: Visibility;
6575
6575
  /**
6576
6576
  * @public
6577
6577
  * <p>The short text format of the title label, such as plain text or rich text.</p>
@@ -6657,7 +6657,7 @@ export interface BoxPlotStyleOptions {
6657
6657
  * @public
6658
6658
  * <p>The fill styles (solid, transparent) of the box plot.</p>
6659
6659
  */
6660
- FillStyle?: BoxPlotFillStyle | string;
6660
+ FillStyle?: BoxPlotFillStyle;
6661
6661
  }
6662
6662
  /**
6663
6663
  * @internal