@aws-sdk/client-quicksight 3.301.0 → 3.303.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.
@@ -36,12 +36,17 @@ export interface AccountCustomization {
36
36
  }
37
37
  /**
38
38
  * @public
39
+ * @enum
39
40
  */
40
- export declare enum Edition {
41
- ENTERPRISE = "ENTERPRISE",
42
- ENTERPRISE_AND_Q = "ENTERPRISE_AND_Q",
43
- STANDARD = "STANDARD"
44
- }
41
+ export declare const Edition: {
42
+ readonly ENTERPRISE: "ENTERPRISE";
43
+ readonly ENTERPRISE_AND_Q: "ENTERPRISE_AND_Q";
44
+ readonly STANDARD: "STANDARD";
45
+ };
46
+ /**
47
+ * @public
48
+ */
49
+ export type Edition = (typeof Edition)[keyof typeof Edition];
45
50
  /**
46
51
  * @public
47
52
  * <p>A structure that contains the following account information
@@ -138,11 +143,16 @@ export interface ActiveIAMPolicyAssignment {
138
143
  }
139
144
  /**
140
145
  * @public
146
+ * @enum
141
147
  */
142
- export declare enum DashboardBehavior {
143
- DISABLED = "DISABLED",
144
- ENABLED = "ENABLED"
145
- }
148
+ export declare const DashboardBehavior: {
149
+ readonly DISABLED: "DISABLED";
150
+ readonly ENABLED: "ENABLED";
151
+ };
152
+ /**
153
+ * @public
154
+ */
155
+ export type DashboardBehavior = (typeof DashboardBehavior)[keyof typeof DashboardBehavior];
146
156
  /**
147
157
  * @public
148
158
  * <p>An ad hoc (one-time) filtering option.</p>
@@ -155,20 +165,30 @@ export interface AdHocFilteringOption {
155
165
  }
156
166
  /**
157
167
  * @public
168
+ * @enum
158
169
  */
159
- export declare enum CategoricalAggregationFunction {
160
- COUNT = "COUNT",
161
- DISTINCT_COUNT = "DISTINCT_COUNT"
162
- }
170
+ export declare const CategoricalAggregationFunction: {
171
+ readonly COUNT: "COUNT";
172
+ readonly DISTINCT_COUNT: "DISTINCT_COUNT";
173
+ };
163
174
  /**
164
175
  * @public
165
176
  */
166
- export declare enum DateAggregationFunction {
167
- COUNT = "COUNT",
168
- DISTINCT_COUNT = "DISTINCT_COUNT",
169
- MAX = "MAX",
170
- MIN = "MIN"
171
- }
177
+ export type CategoricalAggregationFunction = (typeof CategoricalAggregationFunction)[keyof typeof CategoricalAggregationFunction];
178
+ /**
179
+ * @public
180
+ * @enum
181
+ */
182
+ export declare const DateAggregationFunction: {
183
+ readonly COUNT: "COUNT";
184
+ readonly DISTINCT_COUNT: "DISTINCT_COUNT";
185
+ readonly MAX: "MAX";
186
+ readonly MIN: "MIN";
187
+ };
188
+ /**
189
+ * @public
190
+ */
191
+ export type DateAggregationFunction = (typeof DateAggregationFunction)[keyof typeof DateAggregationFunction];
172
192
  /**
173
193
  * @public
174
194
  * <p>An aggregation based on the percentile of values in a dimension or measure.</p>
@@ -181,20 +201,25 @@ export interface PercentileAggregation {
181
201
  }
182
202
  /**
183
203
  * @public
204
+ * @enum
184
205
  */
185
- export declare enum SimpleNumericalAggregationFunction {
186
- AVERAGE = "AVERAGE",
187
- COUNT = "COUNT",
188
- DISTINCT_COUNT = "DISTINCT_COUNT",
189
- MAX = "MAX",
190
- MEDIAN = "MEDIAN",
191
- MIN = "MIN",
192
- STDEV = "STDEV",
193
- STDEVP = "STDEVP",
194
- SUM = "SUM",
195
- VAR = "VAR",
196
- VARP = "VARP"
197
- }
206
+ export declare const SimpleNumericalAggregationFunction: {
207
+ readonly AVERAGE: "AVERAGE";
208
+ readonly COUNT: "COUNT";
209
+ readonly DISTINCT_COUNT: "DISTINCT_COUNT";
210
+ readonly MAX: "MAX";
211
+ readonly MEDIAN: "MEDIAN";
212
+ readonly MIN: "MIN";
213
+ readonly STDEV: "STDEV";
214
+ readonly STDEVP: "STDEVP";
215
+ readonly SUM: "SUM";
216
+ readonly VAR: "VAR";
217
+ readonly VARP: "VARP";
218
+ };
219
+ /**
220
+ * @public
221
+ */
222
+ export type SimpleNumericalAggregationFunction = (typeof SimpleNumericalAggregationFunction)[keyof typeof SimpleNumericalAggregationFunction];
198
223
  /**
199
224
  * @public
200
225
  * <p>Aggregation for numerical values.</p>
@@ -318,11 +343,16 @@ export interface ColumnIdentifier {
318
343
  }
319
344
  /**
320
345
  * @public
346
+ * @enum
321
347
  */
322
- export declare enum SortDirection {
323
- ASC = "ASC",
324
- DESC = "DESC"
325
- }
348
+ export declare const SortDirection: {
349
+ readonly ASC: "ASC";
350
+ readonly DESC: "DESC";
351
+ };
352
+ /**
353
+ * @public
354
+ */
355
+ export type SortDirection = (typeof SortDirection)[keyof typeof SortDirection];
326
356
  /**
327
357
  * @public
328
358
  * <p>The configuration options to sort aggregated values.</p>
@@ -373,19 +403,24 @@ export interface AmazonOpenSearchParameters {
373
403
  }
374
404
  /**
375
405
  * @public
406
+ * @enum
376
407
  */
377
- export declare enum AnalysisErrorType {
378
- ACCESS_DENIED = "ACCESS_DENIED",
379
- COLUMN_GEOGRAPHIC_ROLE_MISMATCH = "COLUMN_GEOGRAPHIC_ROLE_MISMATCH",
380
- COLUMN_REPLACEMENT_MISSING = "COLUMN_REPLACEMENT_MISSING",
381
- COLUMN_TYPE_MISMATCH = "COLUMN_TYPE_MISMATCH",
382
- DATA_SET_NOT_FOUND = "DATA_SET_NOT_FOUND",
383
- INTERNAL_FAILURE = "INTERNAL_FAILURE",
384
- PARAMETER_NOT_FOUND = "PARAMETER_NOT_FOUND",
385
- PARAMETER_TYPE_INVALID = "PARAMETER_TYPE_INVALID",
386
- PARAMETER_VALUE_INCOMPATIBLE = "PARAMETER_VALUE_INCOMPATIBLE",
387
- SOURCE_NOT_FOUND = "SOURCE_NOT_FOUND"
388
- }
408
+ export declare const AnalysisErrorType: {
409
+ readonly ACCESS_DENIED: "ACCESS_DENIED";
410
+ readonly COLUMN_GEOGRAPHIC_ROLE_MISMATCH: "COLUMN_GEOGRAPHIC_ROLE_MISMATCH";
411
+ readonly COLUMN_REPLACEMENT_MISSING: "COLUMN_REPLACEMENT_MISSING";
412
+ readonly COLUMN_TYPE_MISMATCH: "COLUMN_TYPE_MISMATCH";
413
+ readonly DATA_SET_NOT_FOUND: "DATA_SET_NOT_FOUND";
414
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
415
+ readonly PARAMETER_NOT_FOUND: "PARAMETER_NOT_FOUND";
416
+ readonly PARAMETER_TYPE_INVALID: "PARAMETER_TYPE_INVALID";
417
+ readonly PARAMETER_VALUE_INCOMPATIBLE: "PARAMETER_VALUE_INCOMPATIBLE";
418
+ readonly SOURCE_NOT_FOUND: "SOURCE_NOT_FOUND";
419
+ };
420
+ /**
421
+ * @public
422
+ */
423
+ export type AnalysisErrorType = (typeof AnalysisErrorType)[keyof typeof AnalysisErrorType];
389
424
  /**
390
425
  * @public
391
426
  * <p>An object, structure, or sub-structure of an analysis, template, or dashboard.</p>
@@ -435,16 +470,21 @@ export interface Sheet {
435
470
  }
436
471
  /**
437
472
  * @public
473
+ * @enum
438
474
  */
439
- export declare enum ResourceStatus {
440
- CREATION_FAILED = "CREATION_FAILED",
441
- CREATION_IN_PROGRESS = "CREATION_IN_PROGRESS",
442
- CREATION_SUCCESSFUL = "CREATION_SUCCESSFUL",
443
- DELETED = "DELETED",
444
- UPDATE_FAILED = "UPDATE_FAILED",
445
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
446
- UPDATE_SUCCESSFUL = "UPDATE_SUCCESSFUL"
447
- }
475
+ export declare const ResourceStatus: {
476
+ readonly CREATION_FAILED: "CREATION_FAILED";
477
+ readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
478
+ readonly CREATION_SUCCESSFUL: "CREATION_SUCCESSFUL";
479
+ readonly DELETED: "DELETED";
480
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
481
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
482
+ readonly UPDATE_SUCCESSFUL: "UPDATE_SUCCESSFUL";
483
+ };
484
+ /**
485
+ * @public
486
+ */
487
+ export type ResourceStatus = (typeof ResourceStatus)[keyof typeof ResourceStatus];
448
488
  /**
449
489
  * @public
450
490
  * <p>Metadata structure for an analysis in Amazon QuickSight</p>
@@ -523,11 +563,16 @@ export interface DefaultFreeFormLayoutConfiguration {
523
563
  }
524
564
  /**
525
565
  * @public
566
+ * @enum
526
567
  */
527
- export declare enum ResizeOption {
528
- FIXED = "FIXED",
529
- RESPONSIVE = "RESPONSIVE"
530
- }
568
+ export declare const ResizeOption: {
569
+ readonly FIXED: "FIXED";
570
+ readonly RESPONSIVE: "RESPONSIVE";
571
+ };
572
+ /**
573
+ * @public
574
+ */
575
+ export type ResizeOption = (typeof ResizeOption)[keyof typeof ResizeOption];
531
576
  /**
532
577
  * @public
533
578
  * <p>The options that determine the sizing of the canvas used in a grid layout.</p>
@@ -612,27 +657,37 @@ export interface Spacing {
612
657
  }
613
658
  /**
614
659
  * @public
660
+ * @enum
615
661
  */
616
- export declare enum PaperOrientation {
617
- LANDSCAPE = "LANDSCAPE",
618
- PORTRAIT = "PORTRAIT"
619
- }
662
+ export declare const PaperOrientation: {
663
+ readonly LANDSCAPE: "LANDSCAPE";
664
+ readonly PORTRAIT: "PORTRAIT";
665
+ };
620
666
  /**
621
667
  * @public
622
668
  */
623
- export declare enum PaperSize {
624
- A0 = "A0",
625
- A1 = "A1",
626
- A2 = "A2",
627
- A3 = "A3",
628
- A4 = "A4",
629
- A5 = "A5",
630
- JIS_B4 = "JIS_B4",
631
- JIS_B5 = "JIS_B5",
632
- US_LEGAL = "US_LEGAL",
633
- US_LETTER = "US_LETTER",
634
- US_TABLOID_LEDGER = "US_TABLOID_LEDGER"
635
- }
669
+ export type PaperOrientation = (typeof PaperOrientation)[keyof typeof PaperOrientation];
670
+ /**
671
+ * @public
672
+ * @enum
673
+ */
674
+ export declare const PaperSize: {
675
+ readonly A0: "A0";
676
+ readonly A1: "A1";
677
+ readonly A2: "A2";
678
+ readonly A3: "A3";
679
+ readonly A4: "A4";
680
+ readonly A5: "A5";
681
+ readonly JIS_B4: "JIS_B4";
682
+ readonly JIS_B5: "JIS_B5";
683
+ readonly US_LEGAL: "US_LEGAL";
684
+ readonly US_LETTER: "US_LETTER";
685
+ readonly US_TABLOID_LEDGER: "US_TABLOID_LEDGER";
686
+ };
687
+ /**
688
+ * @public
689
+ */
690
+ export type PaperSize = (typeof PaperSize)[keyof typeof PaperSize];
636
691
  /**
637
692
  * @public
638
693
  * <p>The options for a paper canvas of a section-based layout.</p>
@@ -693,11 +748,16 @@ export interface DefaultPaginatedLayoutConfiguration {
693
748
  }
694
749
  /**
695
750
  * @public
751
+ * @enum
696
752
  */
697
- export declare enum SheetContentType {
698
- INTERACTIVE = "INTERACTIVE",
699
- PAGINATED = "PAGINATED"
700
- }
753
+ export declare const SheetContentType: {
754
+ readonly INTERACTIVE: "INTERACTIVE";
755
+ readonly PAGINATED: "PAGINATED";
756
+ };
757
+ /**
758
+ * @public
759
+ */
760
+ export type SheetContentType = (typeof SheetContentType)[keyof typeof SheetContentType];
701
761
  /**
702
762
  * @public
703
763
  * <p>The configuration for default new sheet settings.</p>
@@ -766,11 +826,16 @@ export interface DecimalPlacesConfiguration {
766
826
  }
767
827
  /**
768
828
  * @public
829
+ * @enum
769
830
  */
770
- export declare enum NegativeValueDisplayMode {
771
- NEGATIVE = "NEGATIVE",
772
- POSITIVE = "POSITIVE"
773
- }
831
+ export declare const NegativeValueDisplayMode: {
832
+ readonly NEGATIVE: "NEGATIVE";
833
+ readonly POSITIVE: "POSITIVE";
834
+ };
835
+ /**
836
+ * @public
837
+ */
838
+ export type NegativeValueDisplayMode = (typeof NegativeValueDisplayMode)[keyof typeof NegativeValueDisplayMode];
774
839
  /**
775
840
  * @public
776
841
  * <p>The options that determine the negative value configuration.</p>
@@ -783,30 +848,45 @@ export interface NegativeValueConfiguration {
783
848
  }
784
849
  /**
785
850
  * @public
851
+ * @enum
786
852
  */
787
- export declare enum NumberScale {
788
- AUTO = "AUTO",
789
- BILLIONS = "BILLIONS",
790
- MILLIONS = "MILLIONS",
791
- NONE = "NONE",
792
- THOUSANDS = "THOUSANDS",
793
- TRILLIONS = "TRILLIONS"
794
- }
853
+ export declare const NumberScale: {
854
+ readonly AUTO: "AUTO";
855
+ readonly BILLIONS: "BILLIONS";
856
+ readonly MILLIONS: "MILLIONS";
857
+ readonly NONE: "NONE";
858
+ readonly THOUSANDS: "THOUSANDS";
859
+ readonly TRILLIONS: "TRILLIONS";
860
+ };
795
861
  /**
796
862
  * @public
797
863
  */
798
- export declare enum NumericSeparatorSymbol {
799
- COMMA = "COMMA",
800
- DOT = "DOT",
801
- SPACE = "SPACE"
802
- }
864
+ export type NumberScale = (typeof NumberScale)[keyof typeof NumberScale];
803
865
  /**
804
866
  * @public
867
+ * @enum
805
868
  */
806
- export declare enum Visibility {
807
- HIDDEN = "HIDDEN",
808
- VISIBLE = "VISIBLE"
809
- }
869
+ export declare const NumericSeparatorSymbol: {
870
+ readonly COMMA: "COMMA";
871
+ readonly DOT: "DOT";
872
+ readonly SPACE: "SPACE";
873
+ };
874
+ /**
875
+ * @public
876
+ */
877
+ export type NumericSeparatorSymbol = (typeof NumericSeparatorSymbol)[keyof typeof NumericSeparatorSymbol];
878
+ /**
879
+ * @public
880
+ * @enum
881
+ */
882
+ export declare const Visibility: {
883
+ readonly HIDDEN: "HIDDEN";
884
+ readonly VISIBLE: "VISIBLE";
885
+ };
886
+ /**
887
+ * @public
888
+ */
889
+ export type Visibility = (typeof Visibility)[keyof typeof Visibility];
810
890
  /**
811
891
  * @public
812
892
  * <p>The options that determine the thousands separator configuration.</p>
@@ -1018,11 +1098,16 @@ export interface FormatConfiguration {
1018
1098
  }
1019
1099
  /**
1020
1100
  * @public
1101
+ * @enum
1021
1102
  */
1022
- export declare enum ColumnRole {
1023
- DIMENSION = "DIMENSION",
1024
- MEASURE = "MEASURE"
1025
- }
1103
+ export declare const ColumnRole: {
1104
+ readonly DIMENSION: "DIMENSION";
1105
+ readonly MEASURE: "MEASURE";
1106
+ };
1107
+ /**
1108
+ * @public
1109
+ */
1110
+ export type ColumnRole = (typeof ColumnRole)[keyof typeof ColumnRole];
1026
1111
  /**
1027
1112
  * @public
1028
1113
  * <p>The general configuration of a column.</p>
@@ -1057,36 +1142,56 @@ export interface DataSetIdentifierDeclaration {
1057
1142
  }
1058
1143
  /**
1059
1144
  * @public
1145
+ * @enum
1060
1146
  */
1061
- export declare enum CrossDatasetTypes {
1062
- ALL_DATASETS = "ALL_DATASETS",
1063
- SINGLE_DATASET = "SINGLE_DATASET"
1064
- }
1147
+ export declare const CrossDatasetTypes: {
1148
+ readonly ALL_DATASETS: "ALL_DATASETS";
1149
+ readonly SINGLE_DATASET: "SINGLE_DATASET";
1150
+ };
1065
1151
  /**
1066
1152
  * @public
1067
1153
  */
1068
- export declare enum CategoryFilterMatchOperator {
1069
- CONTAINS = "CONTAINS",
1070
- DOES_NOT_CONTAIN = "DOES_NOT_CONTAIN",
1071
- DOES_NOT_EQUAL = "DOES_NOT_EQUAL",
1072
- ENDS_WITH = "ENDS_WITH",
1073
- EQUALS = "EQUALS",
1074
- STARTS_WITH = "STARTS_WITH"
1075
- }
1154
+ export type CrossDatasetTypes = (typeof CrossDatasetTypes)[keyof typeof CrossDatasetTypes];
1076
1155
  /**
1077
1156
  * @public
1157
+ * @enum
1078
1158
  */
1079
- export declare enum FilterNullOption {
1080
- ALL_VALUES = "ALL_VALUES",
1081
- NON_NULLS_ONLY = "NON_NULLS_ONLY",
1082
- NULLS_ONLY = "NULLS_ONLY"
1083
- }
1159
+ export declare const CategoryFilterMatchOperator: {
1160
+ readonly CONTAINS: "CONTAINS";
1161
+ readonly DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN";
1162
+ readonly DOES_NOT_EQUAL: "DOES_NOT_EQUAL";
1163
+ readonly ENDS_WITH: "ENDS_WITH";
1164
+ readonly EQUALS: "EQUALS";
1165
+ readonly STARTS_WITH: "STARTS_WITH";
1166
+ };
1084
1167
  /**
1085
1168
  * @public
1086
1169
  */
1087
- export declare enum CategoryFilterSelectAllOptions {
1088
- FILTER_ALL_VALUES = "FILTER_ALL_VALUES"
1089
- }
1170
+ export type CategoryFilterMatchOperator = (typeof CategoryFilterMatchOperator)[keyof typeof CategoryFilterMatchOperator];
1171
+ /**
1172
+ * @public
1173
+ * @enum
1174
+ */
1175
+ export declare const FilterNullOption: {
1176
+ readonly ALL_VALUES: "ALL_VALUES";
1177
+ readonly NON_NULLS_ONLY: "NON_NULLS_ONLY";
1178
+ readonly NULLS_ONLY: "NULLS_ONLY";
1179
+ };
1180
+ /**
1181
+ * @public
1182
+ */
1183
+ export type FilterNullOption = (typeof FilterNullOption)[keyof typeof FilterNullOption];
1184
+ /**
1185
+ * @public
1186
+ * @enum
1187
+ */
1188
+ export declare const CategoryFilterSelectAllOptions: {
1189
+ readonly FILTER_ALL_VALUES: "FILTER_ALL_VALUES";
1190
+ };
1191
+ /**
1192
+ * @public
1193
+ */
1194
+ export type CategoryFilterSelectAllOptions = (typeof CategoryFilterSelectAllOptions)[keyof typeof CategoryFilterSelectAllOptions];
1090
1195
  /**
1091
1196
  * @public
1092
1197
  * <p>A custom filter that filters based on a single value. This filter can be partially matched.</p>
@@ -1244,17 +1349,27 @@ export interface CategoryFilter {
1244
1349
  }
1245
1350
  /**
1246
1351
  * @public
1352
+ * @enum
1247
1353
  */
1248
- export declare enum NumericEqualityMatchOperator {
1249
- DOES_NOT_EQUAL = "DOES_NOT_EQUAL",
1250
- EQUALS = "EQUALS"
1251
- }
1354
+ export declare const NumericEqualityMatchOperator: {
1355
+ readonly DOES_NOT_EQUAL: "DOES_NOT_EQUAL";
1356
+ readonly EQUALS: "EQUALS";
1357
+ };
1252
1358
  /**
1253
1359
  * @public
1254
1360
  */
1255
- export declare enum NumericFilterSelectAllOptions {
1256
- FILTER_ALL_VALUES = "FILTER_ALL_VALUES"
1257
- }
1361
+ export type NumericEqualityMatchOperator = (typeof NumericEqualityMatchOperator)[keyof typeof NumericEqualityMatchOperator];
1362
+ /**
1363
+ * @public
1364
+ * @enum
1365
+ */
1366
+ export declare const NumericFilterSelectAllOptions: {
1367
+ readonly FILTER_ALL_VALUES: "FILTER_ALL_VALUES";
1368
+ };
1369
+ /**
1370
+ * @public
1371
+ */
1372
+ export type NumericFilterSelectAllOptions = (typeof NumericFilterSelectAllOptions)[keyof typeof NumericFilterSelectAllOptions];
1258
1373
  /**
1259
1374
  * @public
1260
1375
  * <p>A <code>NumericEqualityFilter</code> filters values that are equal to the specified value.</p>
@@ -1393,10 +1508,15 @@ export interface NumericRangeFilter {
1393
1508
  }
1394
1509
  /**
1395
1510
  * @public
1511
+ * @enum
1396
1512
  */
1397
- export declare enum AnchorOption {
1398
- NOW = "NOW"
1399
- }
1513
+ export declare const AnchorOption: {
1514
+ readonly NOW: "NOW";
1515
+ };
1516
+ /**
1517
+ * @public
1518
+ */
1519
+ export type AnchorOption = (typeof AnchorOption)[keyof typeof AnchorOption];
1400
1520
  /**
1401
1521
  * @public
1402
1522
  * <p>The date configuration of the filter.</p>
@@ -1420,25 +1540,35 @@ export interface AnchorDateConfiguration {
1420
1540
  }
1421
1541
  /**
1422
1542
  * @public
1543
+ * @enum
1423
1544
  */
1424
- export declare enum TimeGranularity {
1425
- DAY = "DAY",
1426
- HOUR = "HOUR",
1427
- MILLISECOND = "MILLISECOND",
1428
- MINUTE = "MINUTE",
1429
- MONTH = "MONTH",
1430
- QUARTER = "QUARTER",
1431
- SECOND = "SECOND",
1432
- WEEK = "WEEK",
1433
- YEAR = "YEAR"
1434
- }
1545
+ export declare const TimeGranularity: {
1546
+ readonly DAY: "DAY";
1547
+ readonly HOUR: "HOUR";
1548
+ readonly MILLISECOND: "MILLISECOND";
1549
+ readonly MINUTE: "MINUTE";
1550
+ readonly MONTH: "MONTH";
1551
+ readonly QUARTER: "QUARTER";
1552
+ readonly SECOND: "SECOND";
1553
+ readonly WEEK: "WEEK";
1554
+ readonly YEAR: "YEAR";
1555
+ };
1435
1556
  /**
1436
1557
  * @public
1437
1558
  */
1438
- export declare enum WidgetStatus {
1439
- DISABLED = "DISABLED",
1440
- ENABLED = "ENABLED"
1441
- }
1559
+ export type TimeGranularity = (typeof TimeGranularity)[keyof typeof TimeGranularity];
1560
+ /**
1561
+ * @public
1562
+ * @enum
1563
+ */
1564
+ export declare const WidgetStatus: {
1565
+ readonly DISABLED: "DISABLED";
1566
+ readonly ENABLED: "ENABLED";
1567
+ };
1568
+ /**
1569
+ * @public
1570
+ */
1571
+ export type WidgetStatus = (typeof WidgetStatus)[keyof typeof WidgetStatus];
1442
1572
  /**
1443
1573
  * @public
1444
1574
  * <p>The exclude period of <code>TimeRangeFilter</code> or <code>RelativeDatesFilter</code>.</p>
@@ -1471,14 +1601,19 @@ export interface ExcludePeriodConfiguration {
1471
1601
  }
1472
1602
  /**
1473
1603
  * @public
1604
+ * @enum
1474
1605
  */
1475
- export declare enum RelativeDateType {
1476
- LAST = "LAST",
1477
- NEXT = "NEXT",
1478
- NOW = "NOW",
1479
- PREVIOUS = "PREVIOUS",
1480
- THIS = "THIS"
1481
- }
1606
+ export declare const RelativeDateType: {
1607
+ readonly LAST: "LAST";
1608
+ readonly NEXT: "NEXT";
1609
+ readonly NOW: "NOW";
1610
+ readonly PREVIOUS: "PREVIOUS";
1611
+ readonly THIS: "THIS";
1612
+ };
1613
+ /**
1614
+ * @public
1615
+ */
1616
+ export type RelativeDateType = (typeof RelativeDateType)[keyof typeof RelativeDateType];
1482
1617
  /**
1483
1618
  * @public
1484
1619
  * <p>A <code>RelativeDatesFilter</code> filters relative dates values.</p>
@@ -1752,11 +1887,16 @@ export interface Filter {
1752
1887
  }
1753
1888
  /**
1754
1889
  * @public
1890
+ * @enum
1755
1891
  */
1756
- export declare enum FilterVisualScope {
1757
- ALL_VISUALS = "ALL_VISUALS",
1758
- SELECTED_VISUALS = "SELECTED_VISUALS"
1759
- }
1892
+ export declare const FilterVisualScope: {
1893
+ readonly ALL_VISUALS: "ALL_VISUALS";
1894
+ readonly SELECTED_VISUALS: "SELECTED_VISUALS";
1895
+ };
1896
+ /**
1897
+ * @public
1898
+ */
1899
+ export type FilterVisualScope = (typeof FilterVisualScope)[keyof typeof FilterVisualScope];
1760
1900
  /**
1761
1901
  * @public
1762
1902
  * <p>The filter that is applied to the options.</p>
@@ -1887,11 +2027,16 @@ export interface DateTimeDefaultValues {
1887
2027
  }
1888
2028
  /**
1889
2029
  * @public
2030
+ * @enum
1890
2031
  */
1891
- export declare enum ValueWhenUnsetOption {
1892
- NULL = "NULL",
1893
- RECOMMENDED_VALUE = "RECOMMENDED_VALUE"
1894
- }
2032
+ export declare const ValueWhenUnsetOption: {
2033
+ readonly NULL: "NULL";
2034
+ readonly RECOMMENDED_VALUE: "RECOMMENDED_VALUE";
2035
+ };
2036
+ /**
2037
+ * @public
2038
+ */
2039
+ export type ValueWhenUnsetOption = (typeof ValueWhenUnsetOption)[keyof typeof ValueWhenUnsetOption];
1895
2040
  /**
1896
2041
  * @public
1897
2042
  * <p>The configuration that defines the default value of a <code>DateTime</code> parameter when a value has not been set.</p>
@@ -1954,11 +2099,16 @@ export interface DecimalDefaultValues {
1954
2099
  }
1955
2100
  /**
1956
2101
  * @public
2102
+ * @enum
1957
2103
  */
1958
- export declare enum ParameterValueType {
1959
- MULTI_VALUED = "MULTI_VALUED",
1960
- SINGLE_VALUED = "SINGLE_VALUED"
1961
- }
2104
+ export declare const ParameterValueType: {
2105
+ readonly MULTI_VALUED: "MULTI_VALUED";
2106
+ readonly SINGLE_VALUED: "SINGLE_VALUED";
2107
+ };
2108
+ /**
2109
+ * @public
2110
+ */
2111
+ export type ParameterValueType = (typeof ParameterValueType)[keyof typeof ParameterValueType];
1962
2112
  /**
1963
2113
  * @public
1964
2114
  * <p>The configuration that defines the default value of a <code>Decimal</code> parameter when a value has not been set.</p>
@@ -2152,21 +2302,31 @@ export interface ParameterDeclaration {
2152
2302
  }
2153
2303
  /**
2154
2304
  * @public
2305
+ * @enum
2155
2306
  */
2156
- export declare enum FontDecoration {
2157
- NONE = "NONE",
2158
- UNDERLINE = "UNDERLINE"
2159
- }
2307
+ export declare const FontDecoration: {
2308
+ readonly NONE: "NONE";
2309
+ readonly UNDERLINE: "UNDERLINE";
2310
+ };
2160
2311
  /**
2161
2312
  * @public
2162
2313
  */
2163
- export declare enum RelativeFontSize {
2164
- EXTRA_LARGE = "EXTRA_LARGE",
2165
- EXTRA_SMALL = "EXTRA_SMALL",
2166
- LARGE = "LARGE",
2167
- MEDIUM = "MEDIUM",
2168
- SMALL = "SMALL"
2169
- }
2314
+ export type FontDecoration = (typeof FontDecoration)[keyof typeof FontDecoration];
2315
+ /**
2316
+ * @public
2317
+ * @enum
2318
+ */
2319
+ export declare const RelativeFontSize: {
2320
+ readonly EXTRA_LARGE: "EXTRA_LARGE";
2321
+ readonly EXTRA_SMALL: "EXTRA_SMALL";
2322
+ readonly LARGE: "LARGE";
2323
+ readonly MEDIUM: "MEDIUM";
2324
+ readonly SMALL: "SMALL";
2325
+ };
2326
+ /**
2327
+ * @public
2328
+ */
2329
+ export type RelativeFontSize = (typeof RelativeFontSize)[keyof typeof RelativeFontSize];
2170
2330
  /**
2171
2331
  * @public
2172
2332
  * <p>The option that determines the text display size.</p>
@@ -2179,18 +2339,28 @@ export interface FontSize {
2179
2339
  }
2180
2340
  /**
2181
2341
  * @public
2342
+ * @enum
2182
2343
  */
2183
- export declare enum FontStyle {
2184
- ITALIC = "ITALIC",
2185
- NORMAL = "NORMAL"
2186
- }
2344
+ export declare const FontStyle: {
2345
+ readonly ITALIC: "ITALIC";
2346
+ readonly NORMAL: "NORMAL";
2347
+ };
2187
2348
  /**
2188
2349
  * @public
2189
2350
  */
2190
- export declare enum FontWeightName {
2191
- BOLD = "BOLD",
2192
- NORMAL = "NORMAL"
2193
- }
2351
+ export type FontStyle = (typeof FontStyle)[keyof typeof FontStyle];
2352
+ /**
2353
+ * @public
2354
+ * @enum
2355
+ */
2356
+ export declare const FontWeightName: {
2357
+ readonly BOLD: "BOLD";
2358
+ readonly NORMAL: "NORMAL";
2359
+ };
2360
+ /**
2361
+ * @public
2362
+ */
2363
+ export type FontWeightName = (typeof FontWeightName)[keyof typeof FontWeightName];
2194
2364
  /**
2195
2365
  * @public
2196
2366
  * <p>The option that determines the text display weight, or boldness.</p>
@@ -2261,11 +2431,16 @@ export interface DateTimePickerControlDisplayOptions {
2261
2431
  }
2262
2432
  /**
2263
2433
  * @public
2434
+ * @enum
2264
2435
  */
2265
- export declare enum SheetControlDateTimePickerType {
2266
- DATE_RANGE = "DATE_RANGE",
2267
- SINGLE_VALUED = "SINGLE_VALUED"
2268
- }
2436
+ export declare const SheetControlDateTimePickerType: {
2437
+ readonly DATE_RANGE: "DATE_RANGE";
2438
+ readonly SINGLE_VALUED: "SINGLE_VALUED";
2439
+ };
2440
+ /**
2441
+ * @public
2442
+ */
2443
+ export type SheetControlDateTimePickerType = (typeof SheetControlDateTimePickerType)[keyof typeof SheetControlDateTimePickerType];
2269
2444
  /**
2270
2445
  * @public
2271
2446
  * <p>A control from a date filter that is used to specify date and time.</p>
@@ -2363,11 +2538,16 @@ export interface FilterSelectableValues {
2363
2538
  }
2364
2539
  /**
2365
2540
  * @public
2541
+ * @enum
2366
2542
  */
2367
- export declare enum SheetControlListType {
2368
- MULTI_SELECT = "MULTI_SELECT",
2369
- SINGLE_SELECT = "SINGLE_SELECT"
2370
- }
2543
+ export declare const SheetControlListType: {
2544
+ readonly MULTI_SELECT: "MULTI_SELECT";
2545
+ readonly SINGLE_SELECT: "SINGLE_SELECT";
2546
+ };
2547
+ /**
2548
+ * @public
2549
+ */
2550
+ export type SheetControlListType = (typeof SheetControlListType)[keyof typeof SheetControlListType];
2371
2551
  /**
2372
2552
  * @public
2373
2553
  * <p>A control to display a dropdown list with buttons that are used to select a single value.</p>
@@ -2532,11 +2712,16 @@ export interface SliderControlDisplayOptions {
2532
2712
  }
2533
2713
  /**
2534
2714
  * @public
2715
+ * @enum
2535
2716
  */
2536
- export declare enum SheetControlSliderType {
2537
- RANGE = "RANGE",
2538
- SINGLE_POINT = "SINGLE_POINT"
2539
- }
2717
+ export declare const SheetControlSliderType: {
2718
+ readonly RANGE: "RANGE";
2719
+ readonly SINGLE_POINT: "SINGLE_POINT";
2720
+ };
2721
+ /**
2722
+ * @public
2723
+ */
2724
+ export type SheetControlSliderType = (typeof SheetControlSliderType)[keyof typeof SheetControlSliderType];
2540
2725
  /**
2541
2726
  * @public
2542
2727
  * <p>A control to display a horizontal toggle bar. This is used to change a value by sliding the toggle.</p>
@@ -2736,13 +2921,18 @@ export interface FreeFormLayoutElementBorderStyle {
2736
2921
  }
2737
2922
  /**
2738
2923
  * @public
2924
+ * @enum
2739
2925
  */
2740
- export declare enum LayoutElementType {
2741
- FILTER_CONTROL = "FILTER_CONTROL",
2742
- PARAMETER_CONTROL = "PARAMETER_CONTROL",
2743
- TEXT_BOX = "TEXT_BOX",
2744
- VISUAL = "VISUAL"
2745
- }
2926
+ export declare const LayoutElementType: {
2927
+ readonly FILTER_CONTROL: "FILTER_CONTROL";
2928
+ readonly PARAMETER_CONTROL: "PARAMETER_CONTROL";
2929
+ readonly TEXT_BOX: "TEXT_BOX";
2930
+ readonly VISUAL: "VISUAL";
2931
+ };
2932
+ /**
2933
+ * @public
2934
+ */
2935
+ export type LayoutElementType = (typeof LayoutElementType)[keyof typeof LayoutElementType];
2746
2936
  /**
2747
2937
  * @public
2748
2938
  * <p>The configuration of loading animation in free-form layout. </p>
@@ -2934,11 +3124,16 @@ export interface BodySectionContent {
2934
3124
  }
2935
3125
  /**
2936
3126
  * @public
3127
+ * @enum
2937
3128
  */
2938
- export declare enum SectionPageBreakStatus {
2939
- DISABLED = "DISABLED",
2940
- ENABLED = "ENABLED"
2941
- }
3129
+ export declare const SectionPageBreakStatus: {
3130
+ readonly DISABLED: "DISABLED";
3131
+ readonly ENABLED: "ENABLED";
3132
+ };
3133
+ /**
3134
+ * @public
3135
+ */
3136
+ export type SectionPageBreakStatus = (typeof SectionPageBreakStatus)[keyof typeof SectionPageBreakStatus];
2942
3137
  /**
2943
3138
  * @public
2944
3139
  * <p>The configuration of a page break after a section.</p>
@@ -3322,10 +3517,15 @@ export interface SheetTextBox {
3322
3517
  }
3323
3518
  /**
3324
3519
  * @public
3520
+ * @enum
3325
3521
  */
3326
- export declare enum SelectedFieldOptions {
3327
- ALL_FIELDS = "ALL_FIELDS"
3328
- }
3522
+ export declare const SelectedFieldOptions: {
3523
+ readonly ALL_FIELDS: "ALL_FIELDS";
3524
+ };
3525
+ /**
3526
+ * @public
3527
+ */
3528
+ export type SelectedFieldOptions = (typeof SelectedFieldOptions)[keyof typeof SelectedFieldOptions];
3329
3529
  /**
3330
3530
  * @public
3331
3531
  * <p>The configuration of selected fields in the<code>CustomActionFilterOperation</code>.</p>
@@ -3350,10 +3550,15 @@ export interface FilterOperationSelectedFieldsConfiguration {
3350
3550
  }
3351
3551
  /**
3352
3552
  * @public
3553
+ * @enum
3353
3554
  */
3354
- export declare enum TargetVisualOptions {
3355
- ALL_VISUALS = "ALL_VISUALS"
3356
- }
3555
+ export declare const TargetVisualOptions: {
3556
+ readonly ALL_VISUALS: "ALL_VISUALS";
3557
+ };
3558
+ /**
3559
+ * @public
3560
+ */
3561
+ export type TargetVisualOptions = (typeof TargetVisualOptions)[keyof typeof TargetVisualOptions];
3357
3562
  /**
3358
3563
  * @public
3359
3564
  * <p>The configuration of the same-sheet target visuals that you want to be filtered.</p>
@@ -3462,10 +3667,15 @@ export interface CustomValuesConfiguration {
3462
3667
  }
3463
3668
  /**
3464
3669
  * @public
3670
+ * @enum
3465
3671
  */
3466
- export declare enum SelectAllValueOptions {
3467
- ALL_VALUES = "ALL_VALUES"
3468
- }
3672
+ export declare const SelectAllValueOptions: {
3673
+ readonly ALL_VALUES: "ALL_VALUES";
3674
+ };
3675
+ /**
3676
+ * @public
3677
+ */
3678
+ export type SelectAllValueOptions = (typeof SelectAllValueOptions)[keyof typeof SelectAllValueOptions];
3469
3679
  /**
3470
3680
  * @public
3471
3681
  * <p>The configuration of destination parameter values.</p>
@@ -3516,12 +3726,17 @@ export interface CustomActionSetParametersOperation {
3516
3726
  }
3517
3727
  /**
3518
3728
  * @public
3729
+ * @enum
3519
3730
  */
3520
- export declare enum URLTargetConfiguration {
3521
- NEW_TAB = "NEW_TAB",
3522
- NEW_WINDOW = "NEW_WINDOW",
3523
- SAME_TAB = "SAME_TAB"
3524
- }
3731
+ export declare const URLTargetConfiguration: {
3732
+ readonly NEW_TAB: "NEW_TAB";
3733
+ readonly NEW_WINDOW: "NEW_WINDOW";
3734
+ readonly SAME_TAB: "SAME_TAB";
3735
+ };
3736
+ /**
3737
+ * @public
3738
+ */
3739
+ export type URLTargetConfiguration = (typeof URLTargetConfiguration)[keyof typeof URLTargetConfiguration];
3525
3740
  /**
3526
3741
  * @public
3527
3742
  * <p>The URL operation that opens a link to another webpage.</p>
@@ -3576,11 +3791,16 @@ export interface VisualCustomActionOperation {
3576
3791
  }
3577
3792
  /**
3578
3793
  * @public
3794
+ * @enum
3579
3795
  */
3580
- export declare enum VisualCustomActionTrigger {
3581
- DATA_POINT_CLICK = "DATA_POINT_CLICK",
3582
- DATA_POINT_MENU = "DATA_POINT_MENU"
3583
- }
3796
+ export declare const VisualCustomActionTrigger: {
3797
+ readonly DATA_POINT_CLICK: "DATA_POINT_CLICK";
3798
+ readonly DATA_POINT_MENU: "DATA_POINT_MENU";
3799
+ };
3800
+ /**
3801
+ * @public
3802
+ */
3803
+ export type VisualCustomActionTrigger = (typeof VisualCustomActionTrigger)[keyof typeof VisualCustomActionTrigger];
3584
3804
  /**
3585
3805
  * @public
3586
3806
  * <p>A custom action defined on a visual.</p>
@@ -3621,12 +3841,17 @@ export interface VisualCustomAction {
3621
3841
  }
3622
3842
  /**
3623
3843
  * @public
3844
+ * @enum
3624
3845
  */
3625
- export declare enum BarsArrangement {
3626
- CLUSTERED = "CLUSTERED",
3627
- STACKED = "STACKED",
3628
- STACKED_PERCENT = "STACKED_PERCENT"
3629
- }
3846
+ export declare const BarsArrangement: {
3847
+ readonly CLUSTERED: "CLUSTERED";
3848
+ readonly STACKED: "STACKED";
3849
+ readonly STACKED_PERCENT: "STACKED_PERCENT";
3850
+ };
3851
+ /**
3852
+ * @public
3853
+ */
3854
+ export type BarsArrangement = (typeof BarsArrangement)[keyof typeof BarsArrangement];
3630
3855
  /**
3631
3856
  * @public
3632
3857
  * <p>The options that determine how a date axis is displayed.</p>
@@ -3991,30 +4216,45 @@ export interface DataLabelType {
3991
4216
  }
3992
4217
  /**
3993
4218
  * @public
4219
+ * @enum
3994
4220
  */
3995
- export declare enum DataLabelContent {
3996
- PERCENT = "PERCENT",
3997
- VALUE = "VALUE",
3998
- VALUE_AND_PERCENT = "VALUE_AND_PERCENT"
3999
- }
4221
+ export declare const DataLabelContent: {
4222
+ readonly PERCENT: "PERCENT";
4223
+ readonly VALUE: "VALUE";
4224
+ readonly VALUE_AND_PERCENT: "VALUE_AND_PERCENT";
4225
+ };
4000
4226
  /**
4001
4227
  * @public
4002
4228
  */
4003
- export declare enum DataLabelOverlap {
4004
- DISABLE_OVERLAP = "DISABLE_OVERLAP",
4005
- ENABLE_OVERLAP = "ENABLE_OVERLAP"
4006
- }
4229
+ export type DataLabelContent = (typeof DataLabelContent)[keyof typeof DataLabelContent];
4007
4230
  /**
4008
4231
  * @public
4232
+ * @enum
4009
4233
  */
4010
- export declare enum DataLabelPosition {
4011
- BOTTOM = "BOTTOM",
4012
- INSIDE = "INSIDE",
4013
- LEFT = "LEFT",
4014
- OUTSIDE = "OUTSIDE",
4015
- RIGHT = "RIGHT",
4016
- TOP = "TOP"
4017
- }
4234
+ export declare const DataLabelOverlap: {
4235
+ readonly DISABLE_OVERLAP: "DISABLE_OVERLAP";
4236
+ readonly ENABLE_OVERLAP: "ENABLE_OVERLAP";
4237
+ };
4238
+ /**
4239
+ * @public
4240
+ */
4241
+ export type DataLabelOverlap = (typeof DataLabelOverlap)[keyof typeof DataLabelOverlap];
4242
+ /**
4243
+ * @public
4244
+ * @enum
4245
+ */
4246
+ export declare const DataLabelPosition: {
4247
+ readonly BOTTOM: "BOTTOM";
4248
+ readonly INSIDE: "INSIDE";
4249
+ readonly LEFT: "LEFT";
4250
+ readonly OUTSIDE: "OUTSIDE";
4251
+ readonly RIGHT: "RIGHT";
4252
+ readonly TOP: "TOP";
4253
+ };
4254
+ /**
4255
+ * @public
4256
+ */
4257
+ export type DataLabelPosition = (typeof DataLabelPosition)[keyof typeof DataLabelPosition];
4018
4258
  /**
4019
4259
  * @public
4020
4260
  * <p>The options that determine the presentation of the data labels.</p>
@@ -4330,13 +4570,18 @@ export interface BarChartFieldWells {
4330
4570
  }
4331
4571
  /**
4332
4572
  * @public
4573
+ * @enum
4333
4574
  */
4334
- export declare enum LegendPosition {
4335
- AUTO = "AUTO",
4336
- BOTTOM = "BOTTOM",
4337
- RIGHT = "RIGHT",
4338
- TOP = "TOP"
4339
- }
4575
+ export declare const LegendPosition: {
4576
+ readonly AUTO: "AUTO";
4577
+ readonly BOTTOM: "BOTTOM";
4578
+ readonly RIGHT: "RIGHT";
4579
+ readonly TOP: "TOP";
4580
+ };
4581
+ /**
4582
+ * @public
4583
+ */
4584
+ export type LegendPosition = (typeof LegendPosition)[keyof typeof LegendPosition];
4340
4585
  /**
4341
4586
  * @public
4342
4587
  * <p>The options for the legend setup of a visual.</p>
@@ -4389,18 +4634,28 @@ export interface LegendOptions {
4389
4634
  }
4390
4635
  /**
4391
4636
  * @public
4637
+ * @enum
4392
4638
  */
4393
- export declare enum BarChartOrientation {
4394
- HORIZONTAL = "HORIZONTAL",
4395
- VERTICAL = "VERTICAL"
4396
- }
4639
+ export declare const BarChartOrientation: {
4640
+ readonly HORIZONTAL: "HORIZONTAL";
4641
+ readonly VERTICAL: "VERTICAL";
4642
+ };
4397
4643
  /**
4398
4644
  * @public
4399
4645
  */
4400
- export declare enum AxisBinding {
4401
- PRIMARY_YAXIS = "PRIMARY_YAXIS",
4402
- SECONDARY_YAXIS = "SECONDARY_YAXIS"
4403
- }
4646
+ export type BarChartOrientation = (typeof BarChartOrientation)[keyof typeof BarChartOrientation];
4647
+ /**
4648
+ * @public
4649
+ * @enum
4650
+ */
4651
+ export declare const AxisBinding: {
4652
+ readonly PRIMARY_YAXIS: "PRIMARY_YAXIS";
4653
+ readonly SECONDARY_YAXIS: "SECONDARY_YAXIS";
4654
+ };
4655
+ /**
4656
+ * @public
4657
+ */
4658
+ export type AxisBinding = (typeof AxisBinding)[keyof typeof AxisBinding];
4404
4659
  /**
4405
4660
  * @public
4406
4661
  * <p>The dynamic configuration of the reference line data configuration.</p>
@@ -4468,19 +4723,29 @@ export interface ReferenceLineCustomLabelConfiguration {
4468
4723
  }
4469
4724
  /**
4470
4725
  * @public
4726
+ * @enum
4471
4727
  */
4472
- export declare enum ReferenceLineLabelHorizontalPosition {
4473
- CENTER = "CENTER",
4474
- LEFT = "LEFT",
4475
- RIGHT = "RIGHT"
4476
- }
4728
+ export declare const ReferenceLineLabelHorizontalPosition: {
4729
+ readonly CENTER: "CENTER";
4730
+ readonly LEFT: "LEFT";
4731
+ readonly RIGHT: "RIGHT";
4732
+ };
4477
4733
  /**
4478
4734
  * @public
4479
4735
  */
4480
- export declare enum ReferenceLineValueLabelRelativePosition {
4481
- AFTER_CUSTOM_LABEL = "AFTER_CUSTOM_LABEL",
4482
- BEFORE_CUSTOM_LABEL = "BEFORE_CUSTOM_LABEL"
4483
- }
4736
+ export type ReferenceLineLabelHorizontalPosition = (typeof ReferenceLineLabelHorizontalPosition)[keyof typeof ReferenceLineLabelHorizontalPosition];
4737
+ /**
4738
+ * @public
4739
+ * @enum
4740
+ */
4741
+ export declare const ReferenceLineValueLabelRelativePosition: {
4742
+ readonly AFTER_CUSTOM_LABEL: "AFTER_CUSTOM_LABEL";
4743
+ readonly BEFORE_CUSTOM_LABEL: "BEFORE_CUSTOM_LABEL";
4744
+ };
4745
+ /**
4746
+ * @public
4747
+ */
4748
+ export type ReferenceLineValueLabelRelativePosition = (typeof ReferenceLineValueLabelRelativePosition)[keyof typeof ReferenceLineValueLabelRelativePosition];
4484
4749
  /**
4485
4750
  * @public
4486
4751
  * <p>The value label configuration of the label in a reference line.</p>
@@ -4509,11 +4774,16 @@ export interface ReferenceLineValueLabelConfiguration {
4509
4774
  }
4510
4775
  /**
4511
4776
  * @public
4777
+ * @enum
4512
4778
  */
4513
- export declare enum ReferenceLineLabelVerticalPosition {
4514
- ABOVE = "ABOVE",
4515
- BELOW = "BELOW"
4516
- }
4779
+ export declare const ReferenceLineLabelVerticalPosition: {
4780
+ readonly ABOVE: "ABOVE";
4781
+ readonly BELOW: "BELOW";
4782
+ };
4783
+ /**
4784
+ * @public
4785
+ */
4786
+ export type ReferenceLineLabelVerticalPosition = (typeof ReferenceLineLabelVerticalPosition)[keyof typeof ReferenceLineLabelVerticalPosition];
4517
4787
  /**
4518
4788
  * @public
4519
4789
  * <p>The label configuration of a reference line.</p>
@@ -4576,12 +4846,17 @@ export interface ReferenceLineLabelConfiguration {
4576
4846
  }
4577
4847
  /**
4578
4848
  * @public
4849
+ * @enum
4579
4850
  */
4580
- export declare enum ReferenceLinePatternType {
4581
- DASHED = "DASHED",
4582
- DOTTED = "DOTTED",
4583
- SOLID = "SOLID"
4584
- }
4851
+ export declare const ReferenceLinePatternType: {
4852
+ readonly DASHED: "DASHED";
4853
+ readonly DOTTED: "DOTTED";
4854
+ readonly SOLID: "SOLID";
4855
+ };
4856
+ /**
4857
+ * @public
4858
+ */
4859
+ export type ReferenceLinePatternType = (typeof ReferenceLinePatternType)[keyof typeof ReferenceLinePatternType];
4585
4860
  /**
4586
4861
  * @public
4587
4862
  * <p>The style configuration of the reference
@@ -4650,21 +4925,31 @@ export interface ReferenceLine {
4650
4925
  }
4651
4926
  /**
4652
4927
  * @public
4928
+ * @enum
4653
4929
  */
4654
- export declare enum PanelBorderStyle {
4655
- DASHED = "DASHED",
4656
- DOTTED = "DOTTED",
4657
- SOLID = "SOLID"
4658
- }
4930
+ export declare const PanelBorderStyle: {
4931
+ readonly DASHED: "DASHED";
4932
+ readonly DOTTED: "DOTTED";
4933
+ readonly SOLID: "SOLID";
4934
+ };
4659
4935
  /**
4660
4936
  * @public
4661
4937
  */
4662
- export declare enum HorizontalTextAlignment {
4663
- AUTO = "AUTO",
4664
- CENTER = "CENTER",
4665
- LEFT = "LEFT",
4666
- RIGHT = "RIGHT"
4667
- }
4938
+ export type PanelBorderStyle = (typeof PanelBorderStyle)[keyof typeof PanelBorderStyle];
4939
+ /**
4940
+ * @public
4941
+ * @enum
4942
+ */
4943
+ export declare const HorizontalTextAlignment: {
4944
+ readonly AUTO: "AUTO";
4945
+ readonly CENTER: "CENTER";
4946
+ readonly LEFT: "LEFT";
4947
+ readonly RIGHT: "RIGHT";
4948
+ };
4949
+ /**
4950
+ * @public
4951
+ */
4952
+ export type HorizontalTextAlignment = (typeof HorizontalTextAlignment)[keyof typeof HorizontalTextAlignment];
4668
4953
  /**
4669
4954
  * @public
4670
4955
  * <p>The options that determine the title styles for each small multiples
@@ -4750,11 +5035,16 @@ export interface SmallMultiplesOptions {
4750
5035
  }
4751
5036
  /**
4752
5037
  * @public
5038
+ * @enum
4753
5039
  */
4754
- export declare enum OtherCategories {
4755
- EXCLUDE = "EXCLUDE",
4756
- INCLUDE = "INCLUDE"
4757
- }
5040
+ export declare const OtherCategories: {
5041
+ readonly EXCLUDE: "EXCLUDE";
5042
+ readonly INCLUDE: "INCLUDE";
5043
+ };
5044
+ /**
5045
+ * @public
5046
+ */
5047
+ export type OtherCategories = (typeof OtherCategories)[keyof typeof OtherCategories];
4758
5048
  /**
4759
5049
  * @public
4760
5050
  * <p>The limit configuration of the visual display for an axis.</p>
@@ -4928,11 +5218,16 @@ export interface TooltipItem {
4928
5218
  }
4929
5219
  /**
4930
5220
  * @public
5221
+ * @enum
4931
5222
  */
4932
- export declare enum TooltipTitleType {
4933
- NONE = "NONE",
4934
- PRIMARY_VALUE = "PRIMARY_VALUE"
4935
- }
5223
+ export declare const TooltipTitleType: {
5224
+ readonly NONE: "NONE";
5225
+ readonly PRIMARY_VALUE: "PRIMARY_VALUE";
5226
+ };
5227
+ /**
5228
+ * @public
5229
+ */
5230
+ export type TooltipTitleType = (typeof TooltipTitleType)[keyof typeof TooltipTitleType];
4936
5231
  /**
4937
5232
  * @public
4938
5233
  * <p>The setup for the detailed tooltip.</p>
@@ -4964,11 +5259,16 @@ export interface FieldBasedTooltip {
4964
5259
  }
4965
5260
  /**
4966
5261
  * @public
5262
+ * @enum
4967
5263
  */
4968
- export declare enum SelectedTooltipType {
4969
- BASIC = "BASIC",
4970
- DETAILED = "DETAILED"
4971
- }
5264
+ export declare const SelectedTooltipType: {
5265
+ readonly BASIC: "BASIC";
5266
+ readonly DETAILED: "DETAILED";
5267
+ };
5268
+ /**
5269
+ * @public
5270
+ */
5271
+ export type SelectedTooltipType = (typeof SelectedTooltipType)[keyof typeof SelectedTooltipType];
4972
5272
  /**
4973
5273
  * @public
4974
5274
  * <p>The display options for the visual tooltip.</p>
@@ -5373,11 +5673,16 @@ export interface BarChartVisual {
5373
5673
  }
5374
5674
  /**
5375
5675
  * @public
5676
+ * @enum
5376
5677
  */
5377
- export declare enum BoxPlotFillStyle {
5378
- SOLID = "SOLID",
5379
- TRANSPARENT = "TRANSPARENT"
5380
- }
5678
+ export declare const BoxPlotFillStyle: {
5679
+ readonly SOLID: "SOLID";
5680
+ readonly TRANSPARENT: "TRANSPARENT";
5681
+ };
5682
+ /**
5683
+ * @public
5684
+ */
5685
+ export type BoxPlotFillStyle = (typeof BoxPlotFillStyle)[keyof typeof BoxPlotFillStyle];
5381
5686
  /**
5382
5687
  * @public
5383
5688
  * <p>The style options of the box plot.</p>