@aws-sdk/client-quicksight 3.301.0 → 3.306.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.
@@ -62,16 +62,20 @@ export interface ComboChartVisual {
62
62
  Actions?: VisualCustomAction[];
63
63
  ColumnHierarchies?: ColumnHierarchy[];
64
64
  }
65
- export declare enum CustomContentType {
66
- IMAGE = "IMAGE",
67
- OTHER_EMBEDDED_CONTENT = "OTHER_EMBEDDED_CONTENT",
68
- }
69
- export declare enum CustomContentImageScalingConfiguration {
70
- DO_NOT_SCALE = "DO_NOT_SCALE",
71
- FIT_TO_HEIGHT = "FIT_TO_HEIGHT",
72
- FIT_TO_WIDTH = "FIT_TO_WIDTH",
73
- SCALE_TO_VISUAL = "SCALE_TO_VISUAL",
74
- }
65
+ export declare const CustomContentType: {
66
+ readonly IMAGE: "IMAGE";
67
+ readonly OTHER_EMBEDDED_CONTENT: "OTHER_EMBEDDED_CONTENT";
68
+ };
69
+ export type CustomContentType =
70
+ (typeof CustomContentType)[keyof typeof CustomContentType];
71
+ export declare const CustomContentImageScalingConfiguration: {
72
+ readonly DO_NOT_SCALE: "DO_NOT_SCALE";
73
+ readonly FIT_TO_HEIGHT: "FIT_TO_HEIGHT";
74
+ readonly FIT_TO_WIDTH: "FIT_TO_WIDTH";
75
+ readonly SCALE_TO_VISUAL: "SCALE_TO_VISUAL";
76
+ };
77
+ export type CustomContentImageScalingConfiguration =
78
+ (typeof CustomContentImageScalingConfiguration)[keyof typeof CustomContentImageScalingConfiguration];
75
79
  export interface CustomContentConfiguration {
76
80
  ContentUrl?: string;
77
81
  ContentType?: CustomContentType | string;
@@ -97,12 +101,14 @@ export interface FilledMapAggregatedFieldWells {
97
101
  export interface FilledMapFieldWells {
98
102
  FilledMapAggregatedFieldWells?: FilledMapAggregatedFieldWells;
99
103
  }
100
- export declare enum BaseMapStyleType {
101
- DARK_GRAY = "DARK_GRAY",
102
- IMAGERY = "IMAGERY",
103
- LIGHT_GRAY = "LIGHT_GRAY",
104
- STREET = "STREET",
105
- }
104
+ export declare const BaseMapStyleType: {
105
+ readonly DARK_GRAY: "DARK_GRAY";
106
+ readonly IMAGERY: "IMAGERY";
107
+ readonly LIGHT_GRAY: "LIGHT_GRAY";
108
+ readonly STREET: "STREET";
109
+ };
110
+ export type BaseMapStyleType =
111
+ (typeof BaseMapStyleType)[keyof typeof BaseMapStyleType];
106
112
  export interface GeospatialMapStyleOptions {
107
113
  BaseMapStyle?: BaseMapStyleType | string;
108
114
  }
@@ -115,10 +121,11 @@ export interface GeospatialCoordinateBounds {
115
121
  West: number | undefined;
116
122
  East: number | undefined;
117
123
  }
118
- export declare enum MapZoomMode {
119
- AUTO = "AUTO",
120
- MANUAL = "MANUAL",
121
- }
124
+ export declare const MapZoomMode: {
125
+ readonly AUTO: "AUTO";
126
+ readonly MANUAL: "MANUAL";
127
+ };
128
+ export type MapZoomMode = (typeof MapZoomMode)[keyof typeof MapZoomMode];
122
129
  export interface GeospatialWindowOptions {
123
130
  Bounds?: GeospatialCoordinateBounds;
124
131
  MapZoomMode?: MapZoomMode | string;
@@ -175,13 +182,15 @@ export interface FilledMapVisual {
175
182
  ColumnHierarchies?: ColumnHierarchy[];
176
183
  Actions?: VisualCustomAction[];
177
184
  }
178
- export declare enum FunnelChartMeasureDataLabelStyle {
179
- PERCENTAGE_BY_FIRST_STAGE = "PERCENTAGE_BY_FIRST_STAGE",
180
- PERCENTAGE_BY_PREVIOUS_STAGE = "PERCENTAGE_BY_PREVIOUS_STAGE",
181
- VALUE_AND_PERCENTAGE_BY_FIRST_STAGE = "VALUE_AND_PERCENTAGE_BY_FIRST_STAGE",
182
- VALUE_AND_PERCENTAGE_BY_PREVIOUS_STAGE = "VALUE_AND_PERCENTAGE_BY_PREVIOUS_STAGE",
183
- VALUE_ONLY = "VALUE_ONLY",
184
- }
185
+ export declare const FunnelChartMeasureDataLabelStyle: {
186
+ readonly PERCENTAGE_BY_FIRST_STAGE: "PERCENTAGE_BY_FIRST_STAGE";
187
+ readonly PERCENTAGE_BY_PREVIOUS_STAGE: "PERCENTAGE_BY_PREVIOUS_STAGE";
188
+ readonly VALUE_AND_PERCENTAGE_BY_FIRST_STAGE: "VALUE_AND_PERCENTAGE_BY_FIRST_STAGE";
189
+ readonly VALUE_AND_PERCENTAGE_BY_PREVIOUS_STAGE: "VALUE_AND_PERCENTAGE_BY_PREVIOUS_STAGE";
190
+ readonly VALUE_ONLY: "VALUE_ONLY";
191
+ };
192
+ export type FunnelChartMeasureDataLabelStyle =
193
+ (typeof FunnelChartMeasureDataLabelStyle)[keyof typeof FunnelChartMeasureDataLabelStyle];
185
194
  export interface FunnelChartDataLabelOptions {
186
195
  Visibility?: Visibility | string;
187
196
  CategoryLabelVisibility?: Visibility | string;
@@ -223,11 +232,13 @@ export interface GaugeChartFieldWells {
223
232
  Values?: MeasureField[];
224
233
  TargetValues?: MeasureField[];
225
234
  }
226
- export declare enum ArcThicknessOptions {
227
- LARGE = "LARGE",
228
- MEDIUM = "MEDIUM",
229
- SMALL = "SMALL",
230
- }
235
+ export declare const ArcThicknessOptions: {
236
+ readonly LARGE: "LARGE";
237
+ readonly MEDIUM: "MEDIUM";
238
+ readonly SMALL: "SMALL";
239
+ };
240
+ export type ArcThicknessOptions =
241
+ (typeof ArcThicknessOptions)[keyof typeof ArcThicknessOptions];
231
242
  export interface ArcConfiguration {
232
243
  ArcAngle?: number;
233
244
  ArcThickness?: ArcThicknessOptions | string;
@@ -244,20 +255,24 @@ export interface ComparisonFormatConfiguration {
244
255
  NumberDisplayFormatConfiguration?: NumberDisplayFormatConfiguration;
245
256
  PercentageDisplayFormatConfiguration?: PercentageDisplayFormatConfiguration;
246
257
  }
247
- export declare enum ComparisonMethod {
248
- DIFFERENCE = "DIFFERENCE",
249
- PERCENT = "PERCENT",
250
- PERCENT_DIFFERENCE = "PERCENT_DIFFERENCE",
251
- }
258
+ export declare const ComparisonMethod: {
259
+ readonly DIFFERENCE: "DIFFERENCE";
260
+ readonly PERCENT: "PERCENT";
261
+ readonly PERCENT_DIFFERENCE: "PERCENT_DIFFERENCE";
262
+ };
263
+ export type ComparisonMethod =
264
+ (typeof ComparisonMethod)[keyof typeof ComparisonMethod];
252
265
  export interface ComparisonConfiguration {
253
266
  ComparisonMethod?: ComparisonMethod | string;
254
267
  ComparisonFormat?: ComparisonFormatConfiguration;
255
268
  }
256
- export declare enum PrimaryValueDisplayType {
257
- ACTUAL = "ACTUAL",
258
- COMPARISON = "COMPARISON",
259
- HIDDEN = "HIDDEN",
260
- }
269
+ export declare const PrimaryValueDisplayType: {
270
+ readonly ACTUAL: "ACTUAL";
271
+ readonly COMPARISON: "COMPARISON";
272
+ readonly HIDDEN: "HIDDEN";
273
+ };
274
+ export type PrimaryValueDisplayType =
275
+ (typeof PrimaryValueDisplayType)[keyof typeof PrimaryValueDisplayType];
261
276
  export interface GaugeChartOptions {
262
277
  PrimaryValueDisplayType?: PrimaryValueDisplayType | string;
263
278
  Comparison?: ComparisonConfiguration;
@@ -275,40 +290,43 @@ export interface GaugeChartConfiguration {
275
290
  export interface GaugeChartArcConditionalFormatting {
276
291
  ForegroundColor?: ConditionalFormattingColor;
277
292
  }
278
- export declare enum ConditionalFormattingIconDisplayOption {
279
- ICON_ONLY = "ICON_ONLY",
280
- }
293
+ export declare const ConditionalFormattingIconDisplayOption: {
294
+ readonly ICON_ONLY: "ICON_ONLY";
295
+ };
296
+ export type ConditionalFormattingIconDisplayOption =
297
+ (typeof ConditionalFormattingIconDisplayOption)[keyof typeof ConditionalFormattingIconDisplayOption];
281
298
  export interface ConditionalFormattingIconDisplayConfiguration {
282
299
  IconDisplayOption?: ConditionalFormattingIconDisplayOption | string;
283
300
  }
284
- export declare enum Icon {
285
- ARROW_DOWN = "ARROW_DOWN",
286
- ARROW_DOWN_LEFT = "ARROW_DOWN_LEFT",
287
- ARROW_DOWN_RIGHT = "ARROW_DOWN_RIGHT",
288
- ARROW_LEFT = "ARROW_LEFT",
289
- ARROW_RIGHT = "ARROW_RIGHT",
290
- ARROW_UP = "ARROW_UP",
291
- ARROW_UP_LEFT = "ARROW_UP_LEFT",
292
- ARROW_UP_RIGHT = "ARROW_UP_RIGHT",
293
- CARET_DOWN = "CARET_DOWN",
294
- CARET_UP = "CARET_UP",
295
- CHECKMARK = "CHECKMARK",
296
- CIRCLE = "CIRCLE",
297
- FACE_DOWN = "FACE_DOWN",
298
- FACE_FLAT = "FACE_FLAT",
299
- FACE_UP = "FACE_UP",
300
- FLAG = "FLAG",
301
- MINUS = "MINUS",
302
- ONE_BAR = "ONE_BAR",
303
- PLUS = "PLUS",
304
- SQUARE = "SQUARE",
305
- THREE_BAR = "THREE_BAR",
306
- THUMBS_DOWN = "THUMBS_DOWN",
307
- THUMBS_UP = "THUMBS_UP",
308
- TRIANGLE = "TRIANGLE",
309
- TWO_BAR = "TWO_BAR",
310
- X = "X",
311
- }
301
+ export declare const Icon: {
302
+ readonly ARROW_DOWN: "ARROW_DOWN";
303
+ readonly ARROW_DOWN_LEFT: "ARROW_DOWN_LEFT";
304
+ readonly ARROW_DOWN_RIGHT: "ARROW_DOWN_RIGHT";
305
+ readonly ARROW_LEFT: "ARROW_LEFT";
306
+ readonly ARROW_RIGHT: "ARROW_RIGHT";
307
+ readonly ARROW_UP: "ARROW_UP";
308
+ readonly ARROW_UP_LEFT: "ARROW_UP_LEFT";
309
+ readonly ARROW_UP_RIGHT: "ARROW_UP_RIGHT";
310
+ readonly CARET_DOWN: "CARET_DOWN";
311
+ readonly CARET_UP: "CARET_UP";
312
+ readonly CHECKMARK: "CHECKMARK";
313
+ readonly CIRCLE: "CIRCLE";
314
+ readonly FACE_DOWN: "FACE_DOWN";
315
+ readonly FACE_FLAT: "FACE_FLAT";
316
+ readonly FACE_UP: "FACE_UP";
317
+ readonly FLAG: "FLAG";
318
+ readonly MINUS: "MINUS";
319
+ readonly ONE_BAR: "ONE_BAR";
320
+ readonly PLUS: "PLUS";
321
+ readonly SQUARE: "SQUARE";
322
+ readonly THREE_BAR: "THREE_BAR";
323
+ readonly THUMBS_DOWN: "THUMBS_DOWN";
324
+ readonly THUMBS_UP: "THUMBS_UP";
325
+ readonly TRIANGLE: "TRIANGLE";
326
+ readonly TWO_BAR: "TWO_BAR";
327
+ readonly X: "X";
328
+ };
329
+ export type Icon = (typeof Icon)[keyof typeof Icon];
312
330
  export interface ConditionalFormattingCustomIconOptions {
313
331
  Icon?: Icon | string;
314
332
  UnicodeIcon?: string;
@@ -319,19 +337,21 @@ export interface ConditionalFormattingCustomIconCondition {
319
337
  Color?: string;
320
338
  DisplayConfiguration?: ConditionalFormattingIconDisplayConfiguration;
321
339
  }
322
- export declare enum ConditionalFormattingIconSetType {
323
- BARS = "BARS",
324
- CARET_UP_MINUS_DOWN = "CARET_UP_MINUS_DOWN",
325
- CHECK_X = "CHECK_X",
326
- FLAGS = "FLAGS",
327
- FOUR_COLOR_ARROW = "FOUR_COLOR_ARROW",
328
- FOUR_GRAY_ARROW = "FOUR_GRAY_ARROW",
329
- PLUS_MINUS = "PLUS_MINUS",
330
- THREE_CIRCLE = "THREE_CIRCLE",
331
- THREE_COLOR_ARROW = "THREE_COLOR_ARROW",
332
- THREE_GRAY_ARROW = "THREE_GRAY_ARROW",
333
- THREE_SHAPE = "THREE_SHAPE",
334
- }
340
+ export declare const ConditionalFormattingIconSetType: {
341
+ readonly BARS: "BARS";
342
+ readonly CARET_UP_MINUS_DOWN: "CARET_UP_MINUS_DOWN";
343
+ readonly CHECK_X: "CHECK_X";
344
+ readonly FLAGS: "FLAGS";
345
+ readonly FOUR_COLOR_ARROW: "FOUR_COLOR_ARROW";
346
+ readonly FOUR_GRAY_ARROW: "FOUR_GRAY_ARROW";
347
+ readonly PLUS_MINUS: "PLUS_MINUS";
348
+ readonly THREE_CIRCLE: "THREE_CIRCLE";
349
+ readonly THREE_COLOR_ARROW: "THREE_COLOR_ARROW";
350
+ readonly THREE_GRAY_ARROW: "THREE_GRAY_ARROW";
351
+ readonly THREE_SHAPE: "THREE_SHAPE";
352
+ };
353
+ export type ConditionalFormattingIconSetType =
354
+ (typeof ConditionalFormattingIconSetType)[keyof typeof ConditionalFormattingIconSetType];
335
355
  export interface ConditionalFormattingIconSet {
336
356
  Expression: string | undefined;
337
357
  IconSetType?: ConditionalFormattingIconSetType | string;
@@ -376,10 +396,12 @@ export interface ClusterMarker {
376
396
  export interface ClusterMarkerConfiguration {
377
397
  ClusterMarker?: ClusterMarker;
378
398
  }
379
- export declare enum GeospatialSelectedPointStyle {
380
- CLUSTER = "CLUSTER",
381
- POINT = "POINT",
382
- }
399
+ export declare const GeospatialSelectedPointStyle: {
400
+ readonly CLUSTER: "CLUSTER";
401
+ readonly POINT: "POINT";
402
+ };
403
+ export type GeospatialSelectedPointStyle =
404
+ (typeof GeospatialSelectedPointStyle)[keyof typeof GeospatialSelectedPointStyle];
383
405
  export interface GeospatialPointStyleOptions {
384
406
  SelectedPointStyle?: GeospatialSelectedPointStyle | string;
385
407
  ClusterMarkerConfiguration?: ClusterMarkerConfiguration;
@@ -401,10 +423,11 @@ export interface GeospatialMapVisual {
401
423
  ColumnHierarchies?: ColumnHierarchy[];
402
424
  Actions?: VisualCustomAction[];
403
425
  }
404
- export declare enum ColorFillType {
405
- DISCRETE = "DISCRETE",
406
- GRADIENT = "GRADIENT",
407
- }
426
+ export declare const ColorFillType: {
427
+ readonly DISCRETE: "DISCRETE";
428
+ readonly GRADIENT: "GRADIENT";
429
+ };
430
+ export type ColorFillType = (typeof ColorFillType)[keyof typeof ColorFillType];
408
431
  export interface DataColor {
409
432
  Color?: string;
410
433
  DataValue?: number;
@@ -453,10 +476,12 @@ export interface BinWidthOptions {
453
476
  Value?: number;
454
477
  BinCountLimit?: number;
455
478
  }
456
- export declare enum HistogramBinType {
457
- BIN_COUNT = "BIN_COUNT",
458
- BIN_WIDTH = "BIN_WIDTH",
459
- }
479
+ export declare const HistogramBinType: {
480
+ readonly BIN_COUNT: "BIN_COUNT";
481
+ readonly BIN_WIDTH: "BIN_WIDTH";
482
+ };
483
+ export type HistogramBinType =
484
+ (typeof HistogramBinType)[keyof typeof HistogramBinType];
460
485
  export interface HistogramBinOptions {
461
486
  SelectedBinType?: HistogramBinType | string;
462
487
  BinCount?: BinCountOptions;
@@ -486,10 +511,12 @@ export interface HistogramVisual {
486
511
  ChartConfiguration?: HistogramConfiguration;
487
512
  Actions?: VisualCustomAction[];
488
513
  }
489
- export declare enum ForecastComputationSeasonality {
490
- AUTOMATIC = "AUTOMATIC",
491
- CUSTOM = "CUSTOM",
492
- }
514
+ export declare const ForecastComputationSeasonality: {
515
+ readonly AUTOMATIC: "AUTOMATIC";
516
+ readonly CUSTOM: "CUSTOM";
517
+ };
518
+ export type ForecastComputationSeasonality =
519
+ (typeof ForecastComputationSeasonality)[keyof typeof ForecastComputationSeasonality];
493
520
  export interface ForecastComputation {
494
521
  ComputationId: string | undefined;
495
522
  Name?: string;
@@ -510,10 +537,12 @@ export interface GrowthRateComputation {
510
537
  Value?: MeasureField;
511
538
  PeriodSize?: number;
512
539
  }
513
- export declare enum MaximumMinimumComputationType {
514
- MAXIMUM = "MAXIMUM",
515
- MINIMUM = "MINIMUM",
516
- }
540
+ export declare const MaximumMinimumComputationType: {
541
+ readonly MAXIMUM: "MAXIMUM";
542
+ readonly MINIMUM: "MINIMUM";
543
+ };
544
+ export type MaximumMinimumComputationType =
545
+ (typeof MaximumMinimumComputationType)[keyof typeof MaximumMinimumComputationType];
517
546
  export interface MaximumMinimumComputation {
518
547
  ComputationId: string | undefined;
519
548
  Name?: string;
@@ -541,14 +570,18 @@ export interface PeriodToDateComputation {
541
570
  Value?: MeasureField;
542
571
  PeriodTimeGranularity?: TimeGranularity | string;
543
572
  }
544
- export declare enum TopBottomSortOrder {
545
- ABSOLUTE_DIFFERENCE = "ABSOLUTE_DIFFERENCE",
546
- PERCENT_DIFFERENCE = "PERCENT_DIFFERENCE",
547
- }
548
- export declare enum TopBottomComputationType {
549
- BOTTOM = "BOTTOM",
550
- TOP = "TOP",
551
- }
573
+ export declare const TopBottomSortOrder: {
574
+ readonly ABSOLUTE_DIFFERENCE: "ABSOLUTE_DIFFERENCE";
575
+ readonly PERCENT_DIFFERENCE: "PERCENT_DIFFERENCE";
576
+ };
577
+ export type TopBottomSortOrder =
578
+ (typeof TopBottomSortOrder)[keyof typeof TopBottomSortOrder];
579
+ export declare const TopBottomComputationType: {
580
+ readonly BOTTOM: "BOTTOM";
581
+ readonly TOP: "TOP";
582
+ };
583
+ export type TopBottomComputationType =
584
+ (typeof TopBottomComputationType)[keyof typeof TopBottomComputationType];
552
585
  export interface TopBottomMoversComputation {
553
586
  ComputationId: string | undefined;
554
587
  Name?: string;
@@ -658,29 +691,35 @@ export interface KPIVisual {
658
691
  Actions?: VisualCustomAction[];
659
692
  ColumnHierarchies?: ColumnHierarchy[];
660
693
  }
661
- export declare enum LineInterpolation {
662
- LINEAR = "LINEAR",
663
- SMOOTH = "SMOOTH",
664
- STEPPED = "STEPPED",
665
- }
666
- export declare enum LineChartLineStyle {
667
- DASHED = "DASHED",
668
- DOTTED = "DOTTED",
669
- SOLID = "SOLID",
670
- }
694
+ export declare const LineInterpolation: {
695
+ readonly LINEAR: "LINEAR";
696
+ readonly SMOOTH: "SMOOTH";
697
+ readonly STEPPED: "STEPPED";
698
+ };
699
+ export type LineInterpolation =
700
+ (typeof LineInterpolation)[keyof typeof LineInterpolation];
701
+ export declare const LineChartLineStyle: {
702
+ readonly DASHED: "DASHED";
703
+ readonly DOTTED: "DOTTED";
704
+ readonly SOLID: "SOLID";
705
+ };
706
+ export type LineChartLineStyle =
707
+ (typeof LineChartLineStyle)[keyof typeof LineChartLineStyle];
671
708
  export interface LineChartLineStyleSettings {
672
709
  LineVisibility?: Visibility | string;
673
710
  LineInterpolation?: LineInterpolation | string;
674
711
  LineStyle?: LineChartLineStyle | string;
675
712
  LineWidth?: string;
676
713
  }
677
- export declare enum LineChartMarkerShape {
678
- CIRCLE = "CIRCLE",
679
- DIAMOND = "DIAMOND",
680
- ROUNDED_SQUARE = "ROUNDED_SQUARE",
681
- SQUARE = "SQUARE",
682
- TRIANGLE = "TRIANGLE",
683
- }
714
+ export declare const LineChartMarkerShape: {
715
+ readonly CIRCLE: "CIRCLE";
716
+ readonly DIAMOND: "DIAMOND";
717
+ readonly ROUNDED_SQUARE: "ROUNDED_SQUARE";
718
+ readonly SQUARE: "SQUARE";
719
+ readonly TRIANGLE: "TRIANGLE";
720
+ };
721
+ export type LineChartMarkerShape =
722
+ (typeof LineChartMarkerShape)[keyof typeof LineChartMarkerShape];
684
723
  export interface LineChartMarkerStyleSettings {
685
724
  MarkerVisibility?: Visibility | string;
686
725
  MarkerShape?: LineChartMarkerShape | string;
@@ -726,11 +765,13 @@ export interface ForecastConfiguration {
726
765
  ForecastProperties?: TimeBasedForecastProperties;
727
766
  Scenario?: ForecastScenario;
728
767
  }
729
- export declare enum MissingDataTreatmentOption {
730
- INTERPOLATE = "INTERPOLATE",
731
- SHOW_AS_BLANK = "SHOW_AS_BLANK",
732
- SHOW_AS_ZERO = "SHOW_AS_ZERO",
733
- }
768
+ export declare const MissingDataTreatmentOption: {
769
+ readonly INTERPOLATE: "INTERPOLATE";
770
+ readonly SHOW_AS_BLANK: "SHOW_AS_BLANK";
771
+ readonly SHOW_AS_ZERO: "SHOW_AS_ZERO";
772
+ };
773
+ export type MissingDataTreatmentOption =
774
+ (typeof MissingDataTreatmentOption)[keyof typeof MissingDataTreatmentOption];
734
775
  export interface MissingDataConfiguration {
735
776
  TreatmentOption?: MissingDataTreatmentOption | string;
736
777
  }
@@ -764,11 +805,12 @@ export interface LineChartSortConfiguration {
764
805
  SmallMultiplesSort?: FieldSortOptions[];
765
806
  SmallMultiplesLimitConfiguration?: ItemsLimitConfiguration;
766
807
  }
767
- export declare enum LineChartType {
768
- AREA = "AREA",
769
- LINE = "LINE",
770
- STACKED_AREA = "STACKED_AREA",
771
- }
808
+ export declare const LineChartType: {
809
+ readonly AREA: "AREA";
810
+ readonly LINE: "LINE";
811
+ readonly STACKED_AREA: "STACKED_AREA";
812
+ };
813
+ export type LineChartType = (typeof LineChartType)[keyof typeof LineChartType];
772
814
  export interface LineChartConfiguration {
773
815
  FieldWells?: LineChartFieldWells;
774
816
  SortConfiguration?: LineChartSortConfiguration;
@@ -798,12 +840,13 @@ export interface LineChartVisual {
798
840
  Actions?: VisualCustomAction[];
799
841
  ColumnHierarchies?: ColumnHierarchy[];
800
842
  }
801
- export declare enum ArcThickness {
802
- LARGE = "LARGE",
803
- MEDIUM = "MEDIUM",
804
- SMALL = "SMALL",
805
- WHOLE = "WHOLE",
806
- }
843
+ export declare const ArcThickness: {
844
+ readonly LARGE: "LARGE";
845
+ readonly MEDIUM: "MEDIUM";
846
+ readonly SMALL: "SMALL";
847
+ readonly WHOLE: "WHOLE";
848
+ };
849
+ export type ArcThickness = (typeof ArcThickness)[keyof typeof ArcThickness];
807
850
  export interface ArcOptions {
808
851
  ArcThickness?: ArcThickness | string;
809
852
  }
@@ -890,10 +933,12 @@ export interface PivotFieldSortOptions {
890
933
  export interface PivotTableSortConfiguration {
891
934
  FieldSortOptions?: PivotFieldSortOptions[];
892
935
  }
893
- export declare enum TableBorderStyle {
894
- NONE = "NONE",
895
- SOLID = "SOLID",
896
- }
936
+ export declare const TableBorderStyle: {
937
+ readonly NONE: "NONE";
938
+ readonly SOLID: "SOLID";
939
+ };
940
+ export type TableBorderStyle =
941
+ (typeof TableBorderStyle)[keyof typeof TableBorderStyle];
897
942
  export interface TableBorderOptions {
898
943
  Color?: string;
899
944
  Thickness?: number;
@@ -911,15 +956,18 @@ export interface GlobalTableBorderOptions {
911
956
  UniformBorder?: TableBorderOptions;
912
957
  SideSpecificBorder?: TableSideBorderOptions;
913
958
  }
914
- export declare enum TextWrap {
915
- NONE = "NONE",
916
- WRAP = "WRAP",
917
- }
918
- export declare enum VerticalTextAlignment {
919
- BOTTOM = "BOTTOM",
920
- MIDDLE = "MIDDLE",
921
- TOP = "TOP",
922
- }
959
+ export declare const TextWrap: {
960
+ readonly NONE: "NONE";
961
+ readonly WRAP: "WRAP";
962
+ };
963
+ export type TextWrap = (typeof TextWrap)[keyof typeof TextWrap];
964
+ export declare const VerticalTextAlignment: {
965
+ readonly BOTTOM: "BOTTOM";
966
+ readonly MIDDLE: "MIDDLE";
967
+ readonly TOP: "TOP";
968
+ };
969
+ export type VerticalTextAlignment =
970
+ (typeof VerticalTextAlignment)[keyof typeof VerticalTextAlignment];
923
971
  export interface TableCellStyle {
924
972
  Visibility?: Visibility | string;
925
973
  FontConfiguration?: FontConfiguration;
@@ -930,10 +978,12 @@ export interface TableCellStyle {
930
978
  Height?: number;
931
979
  Border?: GlobalTableBorderOptions;
932
980
  }
933
- export declare enum PivotTableMetricPlacement {
934
- COLUMN = "COLUMN",
935
- ROW = "ROW",
936
- }
981
+ export declare const PivotTableMetricPlacement: {
982
+ readonly COLUMN: "COLUMN";
983
+ readonly ROW: "ROW";
984
+ };
985
+ export type PivotTableMetricPlacement =
986
+ (typeof PivotTableMetricPlacement)[keyof typeof PivotTableMetricPlacement];
937
987
  export interface RowAlternateColorOptions {
938
988
  Status?: WidgetStatus | string;
939
989
  RowAlternateColors?: string[];
@@ -950,11 +1000,13 @@ export interface PivotTableOptions {
950
1000
  RowAlternateColorOptions?: RowAlternateColorOptions;
951
1001
  CollapsedRowDimensionsVisibility?: Visibility | string;
952
1002
  }
953
- export declare enum PivotTableSubtotalLevel {
954
- ALL = "ALL",
955
- CUSTOM = "CUSTOM",
956
- LAST = "LAST",
957
- }
1003
+ export declare const PivotTableSubtotalLevel: {
1004
+ readonly ALL: "ALL";
1005
+ readonly CUSTOM: "CUSTOM";
1006
+ readonly LAST: "LAST";
1007
+ };
1008
+ export type PivotTableSubtotalLevel =
1009
+ (typeof PivotTableSubtotalLevel)[keyof typeof PivotTableSubtotalLevel];
958
1010
  export interface PivotTableFieldSubtotalOptions {
959
1011
  FieldId?: string;
960
1012
  }
@@ -967,14 +1019,18 @@ export interface SubtotalOptions {
967
1019
  ValueCellStyle?: TableCellStyle;
968
1020
  MetricHeaderCellStyle?: TableCellStyle;
969
1021
  }
970
- export declare enum TableTotalsPlacement {
971
- END = "END",
972
- START = "START",
973
- }
974
- export declare enum TableTotalsScrollStatus {
975
- PINNED = "PINNED",
976
- SCROLLED = "SCROLLED",
977
- }
1022
+ export declare const TableTotalsPlacement: {
1023
+ readonly END: "END";
1024
+ readonly START: "START";
1025
+ };
1026
+ export type TableTotalsPlacement =
1027
+ (typeof TableTotalsPlacement)[keyof typeof TableTotalsPlacement];
1028
+ export declare const TableTotalsScrollStatus: {
1029
+ readonly PINNED: "PINNED";
1030
+ readonly SCROLLED: "SCROLLED";
1031
+ };
1032
+ export type TableTotalsScrollStatus =
1033
+ (typeof TableTotalsScrollStatus)[keyof typeof TableTotalsScrollStatus];
978
1034
  export interface PivotTotalOptions {
979
1035
  TotalsVisibility?: Visibility | string;
980
1036
  Placement?: TableTotalsPlacement | string;
@@ -998,11 +1054,13 @@ export interface PivotTableConfiguration {
998
1054
  FieldOptions?: PivotTableFieldOptions;
999
1055
  PaginatedReportOptions?: PivotTablePaginatedReportOptions;
1000
1056
  }
1001
- export declare enum PivotTableConditionalFormattingScopeRole {
1002
- FIELD = "FIELD",
1003
- FIELD_TOTAL = "FIELD_TOTAL",
1004
- GRAND_TOTAL = "GRAND_TOTAL",
1005
- }
1057
+ export declare const PivotTableConditionalFormattingScopeRole: {
1058
+ readonly FIELD: "FIELD";
1059
+ readonly FIELD_TOTAL: "FIELD_TOTAL";
1060
+ readonly GRAND_TOTAL: "GRAND_TOTAL";
1061
+ };
1062
+ export type PivotTableConditionalFormattingScopeRole =
1063
+ (typeof PivotTableConditionalFormattingScopeRole)[keyof typeof PivotTableConditionalFormattingScopeRole];
1006
1064
  export interface PivotTableConditionalFormattingScope {
1007
1065
  Role?: PivotTableConditionalFormattingScopeRole | string;
1008
1066
  }
@@ -1044,10 +1102,12 @@ export interface RadarChartAggregatedFieldWells {
1044
1102
  export interface RadarChartFieldWells {
1045
1103
  RadarChartAggregatedFieldWells?: RadarChartAggregatedFieldWells;
1046
1104
  }
1047
- export declare enum RadarChartShape {
1048
- CIRCLE = "CIRCLE",
1049
- POLYGON = "POLYGON",
1050
- }
1105
+ export declare const RadarChartShape: {
1106
+ readonly CIRCLE: "CIRCLE";
1107
+ readonly POLYGON: "POLYGON";
1108
+ };
1109
+ export type RadarChartShape =
1110
+ (typeof RadarChartShape)[keyof typeof RadarChartShape];
1051
1111
  export interface RadarChartSortConfiguration {
1052
1112
  CategorySort?: FieldSortOptions[];
1053
1113
  CategoryItemsLimit?: ItemsLimitConfiguration;
@@ -1137,11 +1197,13 @@ export interface ScatterPlotVisual {
1137
1197
  Actions?: VisualCustomAction[];
1138
1198
  ColumnHierarchies?: ColumnHierarchy[];
1139
1199
  }
1140
- export declare enum TableCellImageScalingConfiguration {
1141
- DO_NOT_SCALE = "DO_NOT_SCALE",
1142
- FIT_TO_CELL_HEIGHT = "FIT_TO_CELL_HEIGHT",
1143
- FIT_TO_CELL_WIDTH = "FIT_TO_CELL_WIDTH",
1144
- }
1200
+ export declare const TableCellImageScalingConfiguration: {
1201
+ readonly DO_NOT_SCALE: "DO_NOT_SCALE";
1202
+ readonly FIT_TO_CELL_HEIGHT: "FIT_TO_CELL_HEIGHT";
1203
+ readonly FIT_TO_CELL_WIDTH: "FIT_TO_CELL_WIDTH";
1204
+ };
1205
+ export type TableCellImageScalingConfiguration =
1206
+ (typeof TableCellImageScalingConfiguration)[keyof typeof TableCellImageScalingConfiguration];
1145
1207
  export interface TableCellImageSizingConfiguration {
1146
1208
  TableCellImageScalingConfiguration?:
1147
1209
  | TableCellImageScalingConfiguration
@@ -1150,9 +1212,11 @@ export interface TableCellImageSizingConfiguration {
1150
1212
  export interface TableFieldImageConfiguration {
1151
1213
  SizingOptions?: TableCellImageSizingConfiguration;
1152
1214
  }
1153
- export declare enum TableFieldIconSetType {
1154
- LINK = "LINK",
1155
- }
1215
+ export declare const TableFieldIconSetType: {
1216
+ readonly LINK: "LINK";
1217
+ };
1218
+ export type TableFieldIconSetType =
1219
+ (typeof TableFieldIconSetType)[keyof typeof TableFieldIconSetType];
1156
1220
  export interface TableFieldCustomIconContent {
1157
1221
  Icon?: TableFieldIconSetType | string;
1158
1222
  }
@@ -1215,10 +1279,12 @@ export interface DataBarsOptions {
1215
1279
  export interface TableInlineVisualization {
1216
1280
  DataBars?: DataBarsOptions;
1217
1281
  }
1218
- export declare enum TableOrientation {
1219
- HORIZONTAL = "HORIZONTAL",
1220
- VERTICAL = "VERTICAL",
1221
- }
1282
+ export declare const TableOrientation: {
1283
+ readonly HORIZONTAL: "HORIZONTAL";
1284
+ readonly VERTICAL: "VERTICAL";
1285
+ };
1286
+ export type TableOrientation =
1287
+ (typeof TableOrientation)[keyof typeof TableOrientation];
1222
1288
  export interface TableOptions {
1223
1289
  Orientation?: TableOrientation | string;
1224
1290
  HeaderStyle?: TableCellStyle;
@@ -1341,28 +1407,38 @@ export interface WordCloudSortConfiguration {
1341
1407
  CategoryItemsLimit?: ItemsLimitConfiguration;
1342
1408
  CategorySort?: FieldSortOptions[];
1343
1409
  }
1344
- export declare enum WordCloudCloudLayout {
1345
- FLUID = "FLUID",
1346
- NORMAL = "NORMAL",
1347
- }
1348
- export declare enum WordCloudWordCasing {
1349
- EXISTING_CASE = "EXISTING_CASE",
1350
- LOWER_CASE = "LOWER_CASE",
1351
- }
1352
- export declare enum WordCloudWordOrientation {
1353
- HORIZONTAL = "HORIZONTAL",
1354
- HORIZONTAL_AND_VERTICAL = "HORIZONTAL_AND_VERTICAL",
1355
- }
1356
- export declare enum WordCloudWordPadding {
1357
- LARGE = "LARGE",
1358
- MEDIUM = "MEDIUM",
1359
- NONE = "NONE",
1360
- SMALL = "SMALL",
1361
- }
1362
- export declare enum WordCloudWordScaling {
1363
- EMPHASIZE = "EMPHASIZE",
1364
- NORMAL = "NORMAL",
1365
- }
1410
+ export declare const WordCloudCloudLayout: {
1411
+ readonly FLUID: "FLUID";
1412
+ readonly NORMAL: "NORMAL";
1413
+ };
1414
+ export type WordCloudCloudLayout =
1415
+ (typeof WordCloudCloudLayout)[keyof typeof WordCloudCloudLayout];
1416
+ export declare const WordCloudWordCasing: {
1417
+ readonly EXISTING_CASE: "EXISTING_CASE";
1418
+ readonly LOWER_CASE: "LOWER_CASE";
1419
+ };
1420
+ export type WordCloudWordCasing =
1421
+ (typeof WordCloudWordCasing)[keyof typeof WordCloudWordCasing];
1422
+ export declare const WordCloudWordOrientation: {
1423
+ readonly HORIZONTAL: "HORIZONTAL";
1424
+ readonly HORIZONTAL_AND_VERTICAL: "HORIZONTAL_AND_VERTICAL";
1425
+ };
1426
+ export type WordCloudWordOrientation =
1427
+ (typeof WordCloudWordOrientation)[keyof typeof WordCloudWordOrientation];
1428
+ export declare const WordCloudWordPadding: {
1429
+ readonly LARGE: "LARGE";
1430
+ readonly MEDIUM: "MEDIUM";
1431
+ readonly NONE: "NONE";
1432
+ readonly SMALL: "SMALL";
1433
+ };
1434
+ export type WordCloudWordPadding =
1435
+ (typeof WordCloudWordPadding)[keyof typeof WordCloudWordPadding];
1436
+ export declare const WordCloudWordScaling: {
1437
+ readonly EMPHASIZE: "EMPHASIZE";
1438
+ readonly NORMAL: "NORMAL";
1439
+ };
1440
+ export type WordCloudWordScaling =
1441
+ (typeof WordCloudWordScaling)[keyof typeof WordCloudWordScaling];
1366
1442
  export interface WordCloudOptions {
1367
1443
  WordOrientation?: WordCloudWordOrientation | string;
1368
1444
  WordScaling?: WordCloudWordScaling | string;
@@ -1432,19 +1508,23 @@ export interface AnalysisDefinition {
1432
1508
  ColumnConfigurations?: ColumnConfiguration[];
1433
1509
  AnalysisDefaults?: AnalysisDefaults;
1434
1510
  }
1435
- export declare enum AnalysisFilterAttribute {
1436
- ANALYSIS_NAME = "ANALYSIS_NAME",
1437
- DIRECT_QUICKSIGHT_OWNER = "DIRECT_QUICKSIGHT_OWNER",
1438
- DIRECT_QUICKSIGHT_SOLE_OWNER = "DIRECT_QUICKSIGHT_SOLE_OWNER",
1439
- DIRECT_QUICKSIGHT_VIEWER_OR_OWNER = "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER",
1440
- QUICKSIGHT_OWNER = "QUICKSIGHT_OWNER",
1441
- QUICKSIGHT_USER = "QUICKSIGHT_USER",
1442
- QUICKSIGHT_VIEWER_OR_OWNER = "QUICKSIGHT_VIEWER_OR_OWNER",
1443
- }
1444
- export declare enum FilterOperator {
1445
- StringEquals = "StringEquals",
1446
- StringLike = "StringLike",
1447
- }
1511
+ export declare const AnalysisFilterAttribute: {
1512
+ readonly ANALYSIS_NAME: "ANALYSIS_NAME";
1513
+ readonly DIRECT_QUICKSIGHT_OWNER: "DIRECT_QUICKSIGHT_OWNER";
1514
+ readonly DIRECT_QUICKSIGHT_SOLE_OWNER: "DIRECT_QUICKSIGHT_SOLE_OWNER";
1515
+ readonly DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER";
1516
+ readonly QUICKSIGHT_OWNER: "QUICKSIGHT_OWNER";
1517
+ readonly QUICKSIGHT_USER: "QUICKSIGHT_USER";
1518
+ readonly QUICKSIGHT_VIEWER_OR_OWNER: "QUICKSIGHT_VIEWER_OR_OWNER";
1519
+ };
1520
+ export type AnalysisFilterAttribute =
1521
+ (typeof AnalysisFilterAttribute)[keyof typeof AnalysisFilterAttribute];
1522
+ export declare const FilterOperator: {
1523
+ readonly StringEquals: "StringEquals";
1524
+ readonly StringLike: "StringLike";
1525
+ };
1526
+ export type FilterOperator =
1527
+ (typeof FilterOperator)[keyof typeof FilterOperator];
1448
1528
  export interface AnalysisSearchFilter {
1449
1529
  Operator?: FilterOperator | string;
1450
1530
  Name?: AnalysisFilterAttribute | string;
@@ -1488,11 +1568,13 @@ export interface AnonymousUserEmbeddingExperienceConfiguration {
1488
1568
  DashboardVisual?: AnonymousUserDashboardVisualEmbeddingConfiguration;
1489
1569
  QSearchBar?: AnonymousUserQSearchBarEmbeddingConfiguration;
1490
1570
  }
1491
- export declare enum AssignmentStatus {
1492
- DISABLED = "DISABLED",
1493
- DRAFT = "DRAFT",
1494
- ENABLED = "ENABLED",
1495
- }
1571
+ export declare const AssignmentStatus: {
1572
+ readonly DISABLED: "DISABLED";
1573
+ readonly DRAFT: "DRAFT";
1574
+ readonly ENABLED: "ENABLED";
1575
+ };
1576
+ export type AssignmentStatus =
1577
+ (typeof AssignmentStatus)[keyof typeof AssignmentStatus];
1496
1578
  export interface AthenaParameters {
1497
1579
  WorkGroup?: string;
1498
1580
  RoleArn?: string;
@@ -1507,11 +1589,13 @@ export interface AuroraPostgreSqlParameters {
1507
1589
  Port: number | undefined;
1508
1590
  Database: string | undefined;
1509
1591
  }
1510
- export declare enum AuthenticationMethodOption {
1511
- ACTIVE_DIRECTORY = "ACTIVE_DIRECTORY",
1512
- IAM_AND_QUICKSIGHT = "IAM_AND_QUICKSIGHT",
1513
- IAM_ONLY = "IAM_ONLY",
1514
- }
1592
+ export declare const AuthenticationMethodOption: {
1593
+ readonly ACTIVE_DIRECTORY: "ACTIVE_DIRECTORY";
1594
+ readonly IAM_AND_QUICKSIGHT: "IAM_AND_QUICKSIGHT";
1595
+ readonly IAM_ONLY: "IAM_ONLY";
1596
+ };
1597
+ export type AuthenticationMethodOption =
1598
+ (typeof AuthenticationMethodOption)[keyof typeof AuthenticationMethodOption];
1515
1599
  export interface AwsIotAnalyticsParameters {
1516
1600
  DataSetName: string | undefined;
1517
1601
  }
@@ -1552,17 +1636,19 @@ export declare class InvalidParameterValueException extends __BaseException {
1552
1636
  opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
1553
1637
  );
1554
1638
  }
1555
- export declare enum ExceptionResourceType {
1556
- ACCOUNT_SETTINGS = "ACCOUNT_SETTINGS",
1557
- DATA_SET = "DATA_SET",
1558
- DATA_SOURCE = "DATA_SOURCE",
1559
- GROUP = "GROUP",
1560
- IAMPOLICY_ASSIGNMENT = "IAMPOLICY_ASSIGNMENT",
1561
- INGESTION = "INGESTION",
1562
- NAMESPACE = "NAMESPACE",
1563
- USER = "USER",
1564
- VPC_CONNECTION = "VPC_CONNECTION",
1565
- }
1639
+ export declare const ExceptionResourceType: {
1640
+ readonly ACCOUNT_SETTINGS: "ACCOUNT_SETTINGS";
1641
+ readonly DATA_SET: "DATA_SET";
1642
+ readonly DATA_SOURCE: "DATA_SOURCE";
1643
+ readonly GROUP: "GROUP";
1644
+ readonly IAMPOLICY_ASSIGNMENT: "IAMPOLICY_ASSIGNMENT";
1645
+ readonly INGESTION: "INGESTION";
1646
+ readonly NAMESPACE: "NAMESPACE";
1647
+ readonly USER: "USER";
1648
+ readonly VPC_CONNECTION: "VPC_CONNECTION";
1649
+ };
1650
+ export type ExceptionResourceType =
1651
+ (typeof ExceptionResourceType)[keyof typeof ExceptionResourceType];
1566
1652
  export declare class ResourceExistsException extends __BaseException {
1567
1653
  readonly name: "ResourceExistsException";
1568
1654
  readonly $fault: "client";
@@ -1592,12 +1678,14 @@ export declare class ThrottlingException extends __BaseException {
1592
1678
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
1593
1679
  );
1594
1680
  }
1595
- export declare enum ColumnDataType {
1596
- DATETIME = "DATETIME",
1597
- DECIMAL = "DECIMAL",
1598
- INTEGER = "INTEGER",
1599
- STRING = "STRING",
1600
- }
1681
+ export declare const ColumnDataType: {
1682
+ readonly DATETIME: "DATETIME";
1683
+ readonly DECIMAL: "DECIMAL";
1684
+ readonly INTEGER: "INTEGER";
1685
+ readonly STRING: "STRING";
1686
+ };
1687
+ export type ColumnDataType =
1688
+ (typeof ColumnDataType)[keyof typeof ColumnDataType];
1601
1689
  export interface CastColumnTypeOperation {
1602
1690
  ColumnName: string | undefined;
1603
1691
  NewColumnType: ColumnDataType | string | undefined;
@@ -1606,9 +1694,11 @@ export interface CastColumnTypeOperation {
1606
1694
  export interface ColumnDescription {
1607
1695
  Text?: string;
1608
1696
  }
1609
- export declare enum GeoSpatialCountryCode {
1610
- US = "US",
1611
- }
1697
+ export declare const GeoSpatialCountryCode: {
1698
+ readonly US: "US";
1699
+ };
1700
+ export type GeoSpatialCountryCode =
1701
+ (typeof GeoSpatialCountryCode)[keyof typeof GeoSpatialCountryCode];
1612
1702
  export interface GeoSpatialColumnGroup {
1613
1703
  Name: string | undefined;
1614
1704
  CountryCode?: GeoSpatialCountryCode | string;
@@ -1633,23 +1723,26 @@ export interface ColumnSchema {
1633
1723
  DataType?: string;
1634
1724
  GeographicRole?: string;
1635
1725
  }
1636
- export declare enum GeoSpatialDataRole {
1637
- CITY = "CITY",
1638
- COUNTRY = "COUNTRY",
1639
- COUNTY = "COUNTY",
1640
- LATITUDE = "LATITUDE",
1641
- LONGITUDE = "LONGITUDE",
1642
- POSTCODE = "POSTCODE",
1643
- STATE = "STATE",
1644
- }
1726
+ export declare const GeoSpatialDataRole: {
1727
+ readonly CITY: "CITY";
1728
+ readonly COUNTRY: "COUNTRY";
1729
+ readonly COUNTY: "COUNTY";
1730
+ readonly LATITUDE: "LATITUDE";
1731
+ readonly LONGITUDE: "LONGITUDE";
1732
+ readonly POSTCODE: "POSTCODE";
1733
+ readonly STATE: "STATE";
1734
+ };
1735
+ export type GeoSpatialDataRole =
1736
+ (typeof GeoSpatialDataRole)[keyof typeof GeoSpatialDataRole];
1645
1737
  export interface ColumnTag {
1646
1738
  ColumnGeographicRole?: GeoSpatialDataRole | string;
1647
1739
  ColumnDescription?: ColumnDescription;
1648
1740
  }
1649
- export declare enum ColumnTagName {
1650
- COLUMN_DESCRIPTION = "COLUMN_DESCRIPTION",
1651
- COLUMN_GEOGRAPHIC_ROLE = "COLUMN_GEOGRAPHIC_ROLE",
1652
- }
1741
+ export declare const ColumnTagName: {
1742
+ readonly COLUMN_DESCRIPTION: "COLUMN_DESCRIPTION";
1743
+ readonly COLUMN_GEOGRAPHIC_ROLE: "COLUMN_GEOGRAPHIC_ROLE";
1744
+ };
1745
+ export type ColumnTagName = (typeof ColumnTagName)[keyof typeof ColumnTagName];
1653
1746
  export declare class ConcurrentUpdatingException extends __BaseException {
1654
1747
  readonly name: "ConcurrentUpdatingException";
1655
1748
  readonly $fault: "server";