@aws-sdk/client-quicksight 3.687.0 → 3.691.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.
@@ -11,52 +11,52 @@ export interface TreeMapConfiguration {
11
11
  * <p>The field wells of the visual.</p>
12
12
  * @public
13
13
  */
14
- FieldWells?: TreeMapFieldWells;
14
+ FieldWells?: TreeMapFieldWells | undefined;
15
15
  /**
16
16
  * <p>The sort configuration of a tree map.</p>
17
17
  * @public
18
18
  */
19
- SortConfiguration?: TreeMapSortConfiguration;
19
+ SortConfiguration?: TreeMapSortConfiguration | undefined;
20
20
  /**
21
21
  * <p>The label options (label text, label visibility) of the groups that are displayed in a tree map.</p>
22
22
  * @public
23
23
  */
24
- GroupLabelOptions?: ChartAxisLabelOptions;
24
+ GroupLabelOptions?: ChartAxisLabelOptions | undefined;
25
25
  /**
26
26
  * <p>The label options (label text, label visibility) of the sizes that are displayed in a tree map.</p>
27
27
  * @public
28
28
  */
29
- SizeLabelOptions?: ChartAxisLabelOptions;
29
+ SizeLabelOptions?: ChartAxisLabelOptions | undefined;
30
30
  /**
31
31
  * <p>The label options (label text, label visibility) for the colors displayed in a tree map.</p>
32
32
  * @public
33
33
  */
34
- ColorLabelOptions?: ChartAxisLabelOptions;
34
+ ColorLabelOptions?: ChartAxisLabelOptions | undefined;
35
35
  /**
36
36
  * <p>The color options (gradient color, point of divergence) of a tree map.</p>
37
37
  * @public
38
38
  */
39
- ColorScale?: ColorScale;
39
+ ColorScale?: ColorScale | undefined;
40
40
  /**
41
41
  * <p>The legend display setup of the visual.</p>
42
42
  * @public
43
43
  */
44
- Legend?: LegendOptions;
44
+ Legend?: LegendOptions | undefined;
45
45
  /**
46
46
  * <p>The options that determine if visual data labels are displayed.</p>
47
47
  * @public
48
48
  */
49
- DataLabels?: DataLabelOptions;
49
+ DataLabels?: DataLabelOptions | undefined;
50
50
  /**
51
51
  * <p>The tooltip display setup of the visual.</p>
52
52
  * @public
53
53
  */
54
- Tooltip?: TooltipOptions;
54
+ Tooltip?: TooltipOptions | undefined;
55
55
  /**
56
56
  * <p>The general visual interactions setup for a visual.</p>
57
57
  * @public
58
58
  */
59
- Interactions?: VisualInteractionOptions;
59
+ Interactions?: VisualInteractionOptions | undefined;
60
60
  }
61
61
  /**
62
62
  * <p>A tree map.</p>
@@ -73,27 +73,27 @@ export interface TreeMapVisual {
73
73
  * <p>The title that is displayed on the visual.</p>
74
74
  * @public
75
75
  */
76
- Title?: VisualTitleLabelOptions;
76
+ Title?: VisualTitleLabelOptions | undefined;
77
77
  /**
78
78
  * <p>The subtitle that is displayed on the visual.</p>
79
79
  * @public
80
80
  */
81
- Subtitle?: VisualSubtitleLabelOptions;
81
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
82
82
  /**
83
83
  * <p>The configuration settings of the visual.</p>
84
84
  * @public
85
85
  */
86
- ChartConfiguration?: TreeMapConfiguration;
86
+ ChartConfiguration?: TreeMapConfiguration | undefined;
87
87
  /**
88
88
  * <p>The list of custom actions that are configured for a visual.</p>
89
89
  * @public
90
90
  */
91
- Actions?: VisualCustomAction[];
91
+ Actions?: VisualCustomAction[] | undefined;
92
92
  /**
93
93
  * <p>The column hierarchy that is used during drill-downs and drill-ups.</p>
94
94
  * @public
95
95
  */
96
- ColumnHierarchies?: ColumnHierarchy[];
96
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
97
97
  }
98
98
  /**
99
99
  * <p>The color configuration for individual groups within a waterfall visual.</p>
@@ -104,17 +104,17 @@ export interface WaterfallChartGroupColorConfiguration {
104
104
  * <p>Defines the color for the positive bars of a waterfall chart.</p>
105
105
  * @public
106
106
  */
107
- PositiveBarColor?: string;
107
+ PositiveBarColor?: string | undefined;
108
108
  /**
109
109
  * <p>Defines the color for the negative bars of a waterfall chart.</p>
110
110
  * @public
111
111
  */
112
- NegativeBarColor?: string;
112
+ NegativeBarColor?: string | undefined;
113
113
  /**
114
114
  * <p>Defines the color for the total bars of a waterfall chart.</p>
115
115
  * @public
116
116
  */
117
- TotalBarColor?: string;
117
+ TotalBarColor?: string | undefined;
118
118
  }
119
119
  /**
120
120
  * <p>The color configuration of a waterfall visual.</p>
@@ -125,7 +125,7 @@ export interface WaterfallChartColorConfiguration {
125
125
  * <p>The color configuration for individual groups within a waterfall visual.</p>
126
126
  * @public
127
127
  */
128
- GroupColorConfiguration?: WaterfallChartGroupColorConfiguration;
128
+ GroupColorConfiguration?: WaterfallChartGroupColorConfiguration | undefined;
129
129
  }
130
130
  /**
131
131
  * <p>The field well configuration of a waterfall visual.</p>
@@ -136,17 +136,17 @@ export interface WaterfallChartAggregatedFieldWells {
136
136
  * <p>The category field wells of a waterfall visual.</p>
137
137
  * @public
138
138
  */
139
- Categories?: DimensionField[];
139
+ Categories?: DimensionField[] | undefined;
140
140
  /**
141
141
  * <p>The value field wells of a waterfall visual.</p>
142
142
  * @public
143
143
  */
144
- Values?: MeasureField[];
144
+ Values?: MeasureField[] | undefined;
145
145
  /**
146
146
  * <p>The breakdown field wells of a waterfall visual.</p>
147
147
  * @public
148
148
  */
149
- Breakdowns?: DimensionField[];
149
+ Breakdowns?: DimensionField[] | undefined;
150
150
  }
151
151
  /**
152
152
  * <p>The field well configuration of a waterfall visual.</p>
@@ -157,7 +157,7 @@ export interface WaterfallChartFieldWells {
157
157
  * <p>The field well configuration of a waterfall visual.</p>
158
158
  * @public
159
159
  */
160
- WaterfallChartAggregatedFieldWells?: WaterfallChartAggregatedFieldWells;
160
+ WaterfallChartAggregatedFieldWells?: WaterfallChartAggregatedFieldWells | undefined;
161
161
  }
162
162
  /**
163
163
  * <p>The sort configuration of a waterfall visual.</p>
@@ -168,12 +168,12 @@ export interface WaterfallChartSortConfiguration {
168
168
  * <p>The sort configuration of the category fields.</p>
169
169
  * @public
170
170
  */
171
- CategorySort?: FieldSortOptions[];
171
+ CategorySort?: FieldSortOptions[] | undefined;
172
172
  /**
173
173
  * <p>The limit on the number of bar groups that are displayed.</p>
174
174
  * @public
175
175
  */
176
- BreakdownItemsLimit?: ItemsLimitConfiguration;
176
+ BreakdownItemsLimit?: ItemsLimitConfiguration | undefined;
177
177
  }
178
178
  /**
179
179
  * <p>The options that determine the presentation of a waterfall visual.</p>
@@ -184,7 +184,7 @@ export interface WaterfallChartOptions {
184
184
  * <p>This option determines the total bar label of a waterfall visual.</p>
185
185
  * @public
186
186
  */
187
- TotalBarLabel?: string;
187
+ TotalBarLabel?: string | undefined;
188
188
  }
189
189
  /**
190
190
  * <p>The configuration for a waterfall visual.</p>
@@ -195,62 +195,62 @@ export interface WaterfallChartConfiguration {
195
195
  * <p>The field well configuration of a waterfall visual.</p>
196
196
  * @public
197
197
  */
198
- FieldWells?: WaterfallChartFieldWells;
198
+ FieldWells?: WaterfallChartFieldWells | undefined;
199
199
  /**
200
200
  * <p>The sort configuration of a waterfall visual.</p>
201
201
  * @public
202
202
  */
203
- SortConfiguration?: WaterfallChartSortConfiguration;
203
+ SortConfiguration?: WaterfallChartSortConfiguration | undefined;
204
204
  /**
205
205
  * <p>The options that determine the presentation of a waterfall visual.</p>
206
206
  * @public
207
207
  */
208
- WaterfallChartOptions?: WaterfallChartOptions;
208
+ WaterfallChartOptions?: WaterfallChartOptions | undefined;
209
209
  /**
210
210
  * <p>The options that determine the presentation of the category axis label.</p>
211
211
  * @public
212
212
  */
213
- CategoryAxisLabelOptions?: ChartAxisLabelOptions;
213
+ CategoryAxisLabelOptions?: ChartAxisLabelOptions | undefined;
214
214
  /**
215
215
  * <p>The options that determine the presentation of the category axis.</p>
216
216
  * @public
217
217
  */
218
- CategoryAxisDisplayOptions?: AxisDisplayOptions;
218
+ CategoryAxisDisplayOptions?: AxisDisplayOptions | undefined;
219
219
  /**
220
220
  * <p>The options that determine the presentation of the y-axis label.</p>
221
221
  * @public
222
222
  */
223
- PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
223
+ PrimaryYAxisLabelOptions?: ChartAxisLabelOptions | undefined;
224
224
  /**
225
225
  * <p>The options that determine the presentation of the y-axis.</p>
226
226
  * @public
227
227
  */
228
- PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
228
+ PrimaryYAxisDisplayOptions?: AxisDisplayOptions | undefined;
229
229
  /**
230
230
  * <p>The legend configuration of a waterfall visual.</p>
231
231
  * @public
232
232
  */
233
- Legend?: LegendOptions;
233
+ Legend?: LegendOptions | undefined;
234
234
  /**
235
235
  * <p>The data label configuration of a waterfall visual.</p>
236
236
  * @public
237
237
  */
238
- DataLabels?: DataLabelOptions;
238
+ DataLabels?: DataLabelOptions | undefined;
239
239
  /**
240
240
  * <p>The visual palette configuration of a waterfall visual.</p>
241
241
  * @public
242
242
  */
243
- VisualPalette?: VisualPalette;
243
+ VisualPalette?: VisualPalette | undefined;
244
244
  /**
245
245
  * <p>The color configuration of a waterfall visual.</p>
246
246
  * @public
247
247
  */
248
- ColorConfiguration?: WaterfallChartColorConfiguration;
248
+ ColorConfiguration?: WaterfallChartColorConfiguration | undefined;
249
249
  /**
250
250
  * <p>The general visual interactions setup for a visual.</p>
251
251
  * @public
252
252
  */
253
- Interactions?: VisualInteractionOptions;
253
+ Interactions?: VisualInteractionOptions | undefined;
254
254
  }
255
255
  /**
256
256
  * <p>A waterfall chart.</p>
@@ -267,27 +267,27 @@ export interface WaterfallVisual {
267
267
  * <p>The title that is displayed on the visual.</p>
268
268
  * @public
269
269
  */
270
- Title?: VisualTitleLabelOptions;
270
+ Title?: VisualTitleLabelOptions | undefined;
271
271
  /**
272
272
  * <p>The subtitle that is displayed on the visual.</p>
273
273
  * @public
274
274
  */
275
- Subtitle?: VisualSubtitleLabelOptions;
275
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
276
276
  /**
277
277
  * <p>The configuration for a waterfall visual.</p>
278
278
  * @public
279
279
  */
280
- ChartConfiguration?: WaterfallChartConfiguration;
280
+ ChartConfiguration?: WaterfallChartConfiguration | undefined;
281
281
  /**
282
282
  * <p>The list of custom actions that are configured for a visual.</p>
283
283
  * @public
284
284
  */
285
- Actions?: VisualCustomAction[];
285
+ Actions?: VisualCustomAction[] | undefined;
286
286
  /**
287
287
  * <p>The column hierarchy that is used during drill-downs and drill-ups.</p>
288
288
  * @public
289
289
  */
290
- ColumnHierarchies?: ColumnHierarchy[];
290
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
291
291
  }
292
292
  /**
293
293
  * <p>The aggregated field wells of a word cloud.</p>
@@ -298,12 +298,12 @@ export interface WordCloudAggregatedFieldWells {
298
298
  * <p>The group by field well of a word cloud. Values are grouped by group by fields.</p>
299
299
  * @public
300
300
  */
301
- GroupBy?: DimensionField[];
301
+ GroupBy?: DimensionField[] | undefined;
302
302
  /**
303
303
  * <p>The size field well of a word cloud. Values are aggregated based on group by fields.</p>
304
304
  * @public
305
305
  */
306
- Size?: MeasureField[];
306
+ Size?: MeasureField[] | undefined;
307
307
  }
308
308
  /**
309
309
  * <p>The field wells of a word cloud visual.</p>
@@ -315,7 +315,7 @@ export interface WordCloudFieldWells {
315
315
  * <p>The aggregated field wells of a word cloud.</p>
316
316
  * @public
317
317
  */
318
- WordCloudAggregatedFieldWells?: WordCloudAggregatedFieldWells;
318
+ WordCloudAggregatedFieldWells?: WordCloudAggregatedFieldWells | undefined;
319
319
  }
320
320
  /**
321
321
  * <p>The sort configuration of a word cloud visual.</p>
@@ -326,12 +326,12 @@ export interface WordCloudSortConfiguration {
326
326
  * <p>The limit on the number of groups that are displayed in a word cloud.</p>
327
327
  * @public
328
328
  */
329
- CategoryItemsLimit?: ItemsLimitConfiguration;
329
+ CategoryItemsLimit?: ItemsLimitConfiguration | undefined;
330
330
  /**
331
331
  * <p>The sort configuration of group by fields.</p>
332
332
  * @public
333
333
  */
334
- CategorySort?: FieldSortOptions[];
334
+ CategorySort?: FieldSortOptions[] | undefined;
335
335
  }
336
336
  /**
337
337
  * @public
@@ -404,32 +404,32 @@ export interface WordCloudOptions {
404
404
  * <p>The word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud.</p>
405
405
  * @public
406
406
  */
407
- WordOrientation?: WordCloudWordOrientation;
407
+ WordOrientation?: WordCloudWordOrientation | undefined;
408
408
  /**
409
409
  * <p>The word scaling options (emphasize, normal) for the words in a word cloud.</p>
410
410
  * @public
411
411
  */
412
- WordScaling?: WordCloudWordScaling;
412
+ WordScaling?: WordCloudWordScaling | undefined;
413
413
  /**
414
414
  * <p>The cloud layout options (fluid, normal) of a word cloud.</p>
415
415
  * @public
416
416
  */
417
- CloudLayout?: WordCloudCloudLayout;
417
+ CloudLayout?: WordCloudCloudLayout | undefined;
418
418
  /**
419
419
  * <p>The word casing options (lower_case, existing_case) for the words in a word cloud.</p>
420
420
  * @public
421
421
  */
422
- WordCasing?: WordCloudWordCasing;
422
+ WordCasing?: WordCloudWordCasing | undefined;
423
423
  /**
424
424
  * <p>The word padding options (none, small, medium, large) for the words in a word cloud.</p>
425
425
  * @public
426
426
  */
427
- WordPadding?: WordCloudWordPadding;
427
+ WordPadding?: WordCloudWordPadding | undefined;
428
428
  /**
429
429
  * <p>The length limit of each word from 1-100.</p>
430
430
  * @public
431
431
  */
432
- MaximumStringLength?: number;
432
+ MaximumStringLength?: number | undefined;
433
433
  }
434
434
  /**
435
435
  * <p>The configuration of a word cloud visual.</p>
@@ -440,27 +440,27 @@ export interface WordCloudChartConfiguration {
440
440
  * <p>The field wells of the visual.</p>
441
441
  * @public
442
442
  */
443
- FieldWells?: WordCloudFieldWells;
443
+ FieldWells?: WordCloudFieldWells | undefined;
444
444
  /**
445
445
  * <p>The sort configuration of a word cloud visual.</p>
446
446
  * @public
447
447
  */
448
- SortConfiguration?: WordCloudSortConfiguration;
448
+ SortConfiguration?: WordCloudSortConfiguration | undefined;
449
449
  /**
450
450
  * <p>The label options (label text, label visibility, and sort icon visibility) for the word cloud category.</p>
451
451
  * @public
452
452
  */
453
- CategoryLabelOptions?: ChartAxisLabelOptions;
453
+ CategoryLabelOptions?: ChartAxisLabelOptions | undefined;
454
454
  /**
455
455
  * <p>The options for a word cloud visual.</p>
456
456
  * @public
457
457
  */
458
- WordCloudOptions?: WordCloudOptions;
458
+ WordCloudOptions?: WordCloudOptions | undefined;
459
459
  /**
460
460
  * <p>The general visual interactions setup for a visual.</p>
461
461
  * @public
462
462
  */
463
- Interactions?: VisualInteractionOptions;
463
+ Interactions?: VisualInteractionOptions | undefined;
464
464
  }
465
465
  /**
466
466
  * <p>A word cloud.</p>
@@ -477,27 +477,27 @@ export interface WordCloudVisual {
477
477
  * <p>The title that is displayed on the visual.</p>
478
478
  * @public
479
479
  */
480
- Title?: VisualTitleLabelOptions;
480
+ Title?: VisualTitleLabelOptions | undefined;
481
481
  /**
482
482
  * <p>The subtitle that is displayed on the visual.</p>
483
483
  * @public
484
484
  */
485
- Subtitle?: VisualSubtitleLabelOptions;
485
+ Subtitle?: VisualSubtitleLabelOptions | undefined;
486
486
  /**
487
487
  * <p>The configuration settings of the visual.</p>
488
488
  * @public
489
489
  */
490
- ChartConfiguration?: WordCloudChartConfiguration;
490
+ ChartConfiguration?: WordCloudChartConfiguration | undefined;
491
491
  /**
492
492
  * <p>The list of custom actions that are configured for a visual.</p>
493
493
  * @public
494
494
  */
495
- Actions?: VisualCustomAction[];
495
+ Actions?: VisualCustomAction[] | undefined;
496
496
  /**
497
497
  * <p>The column hierarchy that is used during drill-downs and drill-ups.</p>
498
498
  * @public
499
499
  */
500
- ColumnHierarchies?: ColumnHierarchy[];
500
+ ColumnHierarchies?: ColumnHierarchy[] | undefined;
501
501
  }
502
502
  /**
503
503
  * <p>A visual displayed on a sheet in an analysis, dashboard, or template.</p>
@@ -510,138 +510,138 @@ export interface Visual {
510
510
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/tabular.html">Using tables as visuals</a> in the <i>Amazon QuickSight User Guide</i>.</p>
511
511
  * @public
512
512
  */
513
- TableVisual?: TableVisual;
513
+ TableVisual?: TableVisual | undefined;
514
514
  /**
515
515
  * <p>A pivot table.</p>
516
516
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/pivot-table.html">Using pivot tables</a> in the <i>Amazon QuickSight User Guide</i>.</p>
517
517
  * @public
518
518
  */
519
- PivotTableVisual?: PivotTableVisual;
519
+ PivotTableVisual?: PivotTableVisual | undefined;
520
520
  /**
521
521
  * <p>A bar chart.</p>
522
522
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/bar-charts.html">Using bar charts</a> in the <i>Amazon QuickSight User Guide</i>.</p>
523
523
  * @public
524
524
  */
525
- BarChartVisual?: BarChartVisual;
525
+ BarChartVisual?: BarChartVisual | undefined;
526
526
  /**
527
527
  * <p>A key performance indicator (KPI).</p>
528
528
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/kpi.html">Using KPIs</a> in the <i>Amazon QuickSight User Guide</i>.</p>
529
529
  * @public
530
530
  */
531
- KPIVisual?: KPIVisual;
531
+ KPIVisual?: KPIVisual | undefined;
532
532
  /**
533
533
  * <p>A pie or donut chart.</p>
534
534
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/pie-chart.html">Using pie charts</a> in the <i>Amazon QuickSight User Guide</i>.</p>
535
535
  * @public
536
536
  */
537
- PieChartVisual?: PieChartVisual;
537
+ PieChartVisual?: PieChartVisual | undefined;
538
538
  /**
539
539
  * <p>A gauge chart.</p>
540
540
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/gauge-chart.html">Using gauge charts</a> in the <i>Amazon QuickSight User Guide</i>.</p>
541
541
  * @public
542
542
  */
543
- GaugeChartVisual?: GaugeChartVisual;
543
+ GaugeChartVisual?: GaugeChartVisual | undefined;
544
544
  /**
545
545
  * <p>A line chart.</p>
546
546
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/line-charts.html">Using line charts</a> in the <i>Amazon QuickSight User Guide</i>.</p>
547
547
  * @public
548
548
  */
549
- LineChartVisual?: LineChartVisual;
549
+ LineChartVisual?: LineChartVisual | undefined;
550
550
  /**
551
551
  * <p>A heat map.</p>
552
552
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/heat-map.html">Using heat maps</a> in the <i>Amazon QuickSight User Guide</i>.</p>
553
553
  * @public
554
554
  */
555
- HeatMapVisual?: HeatMapVisual;
555
+ HeatMapVisual?: HeatMapVisual | undefined;
556
556
  /**
557
557
  * <p>A tree map.</p>
558
558
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/tree-map.html">Using tree maps</a> in the <i>Amazon QuickSight User Guide</i>.</p>
559
559
  * @public
560
560
  */
561
- TreeMapVisual?: TreeMapVisual;
561
+ TreeMapVisual?: TreeMapVisual | undefined;
562
562
  /**
563
563
  * <p>A geospatial map or a points on map visual.</p>
564
564
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/point-maps.html">Creating point maps</a> in the <i>Amazon QuickSight User Guide</i>.</p>
565
565
  * @public
566
566
  */
567
- GeospatialMapVisual?: GeospatialMapVisual;
567
+ GeospatialMapVisual?: GeospatialMapVisual | undefined;
568
568
  /**
569
569
  * <p>A filled map.</p>
570
570
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/filled-maps.html">Creating filled maps</a> in the <i>Amazon QuickSight User Guide</i>.</p>
571
571
  * @public
572
572
  */
573
- FilledMapVisual?: FilledMapVisual;
573
+ FilledMapVisual?: FilledMapVisual | undefined;
574
574
  /**
575
575
  * <p>A funnel chart.</p>
576
576
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/funnel-visual-content.html">Using funnel charts</a> in the <i>Amazon QuickSight User Guide</i>.</p>
577
577
  * @public
578
578
  */
579
- FunnelChartVisual?: FunnelChartVisual;
579
+ FunnelChartVisual?: FunnelChartVisual | undefined;
580
580
  /**
581
581
  * <p>A scatter plot.</p>
582
582
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/scatter-plot.html">Using scatter plots</a> in the <i>Amazon QuickSight User Guide</i>.</p>
583
583
  * @public
584
584
  */
585
- ScatterPlotVisual?: ScatterPlotVisual;
585
+ ScatterPlotVisual?: ScatterPlotVisual | undefined;
586
586
  /**
587
587
  * <p>A combo chart.</p>
588
588
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/combo-charts.html">Using combo charts</a> in the <i>Amazon QuickSight User Guide</i>.</p>
589
589
  * @public
590
590
  */
591
- ComboChartVisual?: ComboChartVisual;
591
+ ComboChartVisual?: ComboChartVisual | undefined;
592
592
  /**
593
593
  * <p>A box plot.</p>
594
594
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/box-plots.html">Using box plots</a> in the <i>Amazon QuickSight User Guide</i>.</p>
595
595
  * @public
596
596
  */
597
- BoxPlotVisual?: BoxPlotVisual;
597
+ BoxPlotVisual?: BoxPlotVisual | undefined;
598
598
  /**
599
599
  * <p>A waterfall chart.</p>
600
600
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/waterfall-chart.html">Using waterfall charts</a> in the <i>Amazon QuickSight User Guide</i>.</p>
601
601
  * @public
602
602
  */
603
- WaterfallVisual?: WaterfallVisual;
603
+ WaterfallVisual?: WaterfallVisual | undefined;
604
604
  /**
605
605
  * <p>A histogram.</p>
606
606
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/histogram-charts.html">Using histograms</a> in the <i>Amazon QuickSight User Guide</i>.</p>
607
607
  * @public
608
608
  */
609
- HistogramVisual?: HistogramVisual;
609
+ HistogramVisual?: HistogramVisual | undefined;
610
610
  /**
611
611
  * <p>A word cloud.</p>
612
612
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/word-cloud.html">Using word clouds</a> in the <i>Amazon QuickSight User Guide</i>.</p>
613
613
  * @public
614
614
  */
615
- WordCloudVisual?: WordCloudVisual;
615
+ WordCloudVisual?: WordCloudVisual | undefined;
616
616
  /**
617
617
  * <p>An insight visual.</p>
618
618
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/computational-insights.html">Working with insights</a> in the <i>Amazon QuickSight User Guide</i>.</p>
619
619
  * @public
620
620
  */
621
- InsightVisual?: InsightVisual;
621
+ InsightVisual?: InsightVisual | undefined;
622
622
  /**
623
623
  * <p>A sankey diagram.</p>
624
624
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/sankey-diagram.html">Using Sankey diagrams</a> in the <i>Amazon QuickSight User Guide</i>.</p>
625
625
  * @public
626
626
  */
627
- SankeyDiagramVisual?: SankeyDiagramVisual;
627
+ SankeyDiagramVisual?: SankeyDiagramVisual | undefined;
628
628
  /**
629
629
  * <p>A visual that contains custom content.</p>
630
630
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/custom-visual-content.html">Using custom visual content</a> in the <i>Amazon QuickSight User Guide</i>.</p>
631
631
  * @public
632
632
  */
633
- CustomContentVisual?: CustomContentVisual;
633
+ CustomContentVisual?: CustomContentVisual | undefined;
634
634
  /**
635
635
  * <p>An empty visual.</p>
636
636
  * @public
637
637
  */
638
- EmptyVisual?: EmptyVisual;
638
+ EmptyVisual?: EmptyVisual | undefined;
639
639
  /**
640
640
  * <p>A radar chart visual.</p>
641
641
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/radar-chart.html">Using radar charts</a> in the <i>Amazon QuickSight User Guide</i>.</p>
642
642
  * @public
643
643
  */
644
- RadarChartVisual?: RadarChartVisual;
644
+ RadarChartVisual?: RadarChartVisual | undefined;
645
645
  }
646
646
  /**
647
647
  * <p>A sheet is an object that contains a set of visuals that
@@ -658,51 +658,51 @@ export interface SheetDefinition {
658
658
  * <p>The title of the sheet.</p>
659
659
  * @public
660
660
  */
661
- Title?: string;
661
+ Title?: string | undefined;
662
662
  /**
663
663
  * <p>A description of the sheet.</p>
664
664
  * @public
665
665
  */
666
- Description?: string;
666
+ Description?: string | undefined;
667
667
  /**
668
668
  * <p>The name of the sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
669
669
  * console.</p>
670
670
  * @public
671
671
  */
672
- Name?: string;
672
+ Name?: string | undefined;
673
673
  /**
674
674
  * <p>The list of parameter controls that are on a sheet.</p>
675
675
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html">Using a Control with a Parameter in Amazon QuickSight</a> in the <i>Amazon QuickSight User Guide</i>.</p>
676
676
  * @public
677
677
  */
678
- ParameterControls?: ParameterControl[];
678
+ ParameterControls?: ParameterControl[] | undefined;
679
679
  /**
680
680
  * <p>The list of filter controls that are on a sheet.</p>
681
681
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/filter-controls.html">Adding filter controls to analysis sheets</a> in the <i>Amazon QuickSight User Guide</i>.</p>
682
682
  * @public
683
683
  */
684
- FilterControls?: FilterControl[];
684
+ FilterControls?: FilterControl[] | undefined;
685
685
  /**
686
686
  * <p>A list of the visuals that are on a sheet. Visual placement is determined by the layout of the sheet.</p>
687
687
  * @public
688
688
  */
689
- Visuals?: Visual[];
689
+ Visuals?: Visual[] | undefined;
690
690
  /**
691
691
  * <p>The text boxes that are on a sheet.</p>
692
692
  * @public
693
693
  */
694
- TextBoxes?: SheetTextBox[];
694
+ TextBoxes?: SheetTextBox[] | undefined;
695
695
  /**
696
696
  * <p>Layouts define how the components of a sheet are arranged.</p>
697
697
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html">Types of layout</a> in the <i>Amazon QuickSight User Guide</i>.</p>
698
698
  * @public
699
699
  */
700
- Layouts?: Layout[];
700
+ Layouts?: Layout[] | undefined;
701
701
  /**
702
702
  * <p>The control layouts of the sheet.</p>
703
703
  * @public
704
704
  */
705
- SheetControlLayouts?: SheetControlLayout[];
705
+ SheetControlLayouts?: SheetControlLayout[] | undefined;
706
706
  /**
707
707
  * <p>The layout content type of the sheet. Choose one of the following options:</p>
708
708
  * <ul>
@@ -717,7 +717,7 @@ export interface SheetDefinition {
717
717
  * </ul>
718
718
  * @public
719
719
  */
720
- ContentType?: SheetContentType;
720
+ ContentType?: SheetContentType | undefined;
721
721
  }
722
722
  /**
723
723
  * <p>The definition of an analysis.</p>
@@ -735,25 +735,25 @@ export interface AnalysisDefinition {
735
735
  * a sheet within this analysis.</p>
736
736
  * @public
737
737
  */
738
- Sheets?: SheetDefinition[];
738
+ Sheets?: SheetDefinition[] | undefined;
739
739
  /**
740
740
  * <p>An array of calculated field definitions for the analysis.</p>
741
741
  * @public
742
742
  */
743
- CalculatedFields?: CalculatedField[];
743
+ CalculatedFields?: CalculatedField[] | undefined;
744
744
  /**
745
745
  * <p>An array of parameter declarations for an analysis.</p>
746
746
  * <p>Parameters are named variables that can transfer a value for use by an action or an object.</p>
747
747
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/parameters-in-quicksight.html">Parameters in Amazon QuickSight</a> in the <i>Amazon QuickSight User Guide</i>.</p>
748
748
  * @public
749
749
  */
750
- ParameterDeclarations?: ParameterDeclaration[];
750
+ ParameterDeclarations?: ParameterDeclaration[] | undefined;
751
751
  /**
752
752
  * <p>Filter definitions for an analysis.</p>
753
753
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/adding-a-filter.html">Filtering Data in Amazon QuickSight</a> in the <i>Amazon QuickSight User Guide</i>.</p>
754
754
  * @public
755
755
  */
756
- FilterGroups?: FilterGroup[];
756
+ FilterGroups?: FilterGroup[] | undefined;
757
757
  /**
758
758
  * <p>
759
759
  * An array of analysis-level column configurations. Column configurations can be used to set default
@@ -761,22 +761,22 @@ export interface AnalysisDefinition {
761
761
  * </p>
762
762
  * @public
763
763
  */
764
- ColumnConfigurations?: ColumnConfiguration[];
764
+ ColumnConfigurations?: ColumnConfiguration[] | undefined;
765
765
  /**
766
766
  * <p>The configuration for default analysis settings.</p>
767
767
  * @public
768
768
  */
769
- AnalysisDefaults?: AnalysisDefaults;
769
+ AnalysisDefaults?: AnalysisDefaults | undefined;
770
770
  /**
771
771
  * <p>An array of option definitions for an analysis.</p>
772
772
  * @public
773
773
  */
774
- Options?: AssetOptions;
774
+ Options?: AssetOptions | undefined;
775
775
  /**
776
776
  * <p>A structure that describes the query execution options.</p>
777
777
  * @public
778
778
  */
779
- QueryExecutionOptions?: QueryExecutionOptions;
779
+ QueryExecutionOptions?: QueryExecutionOptions | undefined;
780
780
  }
781
781
  /**
782
782
  * @public
@@ -818,7 +818,7 @@ export interface AnalysisSearchFilter {
818
818
  * <p>If you set the value to <code>"StringLike"</code>, you need to provide the name of the folders you are searching for. For example, <code>"Name":"ANALYSIS_NAME", "Operator": "StringLike", "Value": "Test"</code>. The <code>"StringLike"</code> operator only supports the <code>NAME</code> value <code>ANALYSIS_NAME</code>.</p>
819
819
  * @public
820
820
  */
821
- Operator?: FilterOperator;
821
+ Operator?: FilterOperator | undefined;
822
822
  /**
823
823
  * <p>The name of the value that you want to use as a filter, for example <code>"Name":
824
824
  * "QUICKSIGHT_OWNER"</code>.</p>
@@ -851,14 +851,14 @@ export interface AnalysisSearchFilter {
851
851
  * </ul>
852
852
  * @public
853
853
  */
854
- Name?: AnalysisFilterAttribute;
854
+ Name?: AnalysisFilterAttribute | undefined;
855
855
  /**
856
856
  * <p>The value of the named item, in this case <code>QUICKSIGHT_USER</code>, that you want
857
857
  * to use as a filter, for example <code>"Value"</code>. An example is
858
858
  * <code>"arn:aws:quicksight:us-east-1:1:user/default/UserName1"</code>.</p>
859
859
  * @public
860
860
  */
861
- Value?: string;
861
+ Value?: string | undefined;
862
862
  }
863
863
  /**
864
864
  * <p>Dataset reference.</p>
@@ -901,7 +901,7 @@ export interface AnalysisSourceEntity {
901
901
  * <p>The source template for the source entity of the analysis.</p>
902
902
  * @public
903
903
  */
904
- SourceTemplate?: AnalysisSourceTemplate;
904
+ SourceTemplate?: AnalysisSourceTemplate | undefined;
905
905
  }
906
906
  /**
907
907
  * <p>The summary metadata that describes an analysis.</p>
@@ -912,33 +912,33 @@ export interface AnalysisSummary {
912
912
  * <p>The Amazon Resource Name (ARN) for the analysis.</p>
913
913
  * @public
914
914
  */
915
- Arn?: string;
915
+ Arn?: string | undefined;
916
916
  /**
917
917
  * <p>The ID of the analysis. This ID displays in the URL.</p>
918
918
  * @public
919
919
  */
920
- AnalysisId?: string;
920
+ AnalysisId?: string | undefined;
921
921
  /**
922
922
  * <p>The name of the analysis. This name is displayed in the Amazon QuickSight console.
923
923
  * </p>
924
924
  * @public
925
925
  */
926
- Name?: string;
926
+ Name?: string | undefined;
927
927
  /**
928
928
  * <p>The last known status for the analysis.</p>
929
929
  * @public
930
930
  */
931
- Status?: ResourceStatus;
931
+ Status?: ResourceStatus | undefined;
932
932
  /**
933
933
  * <p>The time that the analysis was created.</p>
934
934
  * @public
935
935
  */
936
- CreatedTime?: Date;
936
+ CreatedTime?: Date | undefined;
937
937
  /**
938
938
  * <p>The time that the analysis was last updated.</p>
939
939
  * @public
940
940
  */
941
- LastUpdatedTime?: Date;
941
+ LastUpdatedTime?: Date | undefined;
942
942
  }
943
943
  /**
944
944
  * @public
@@ -960,17 +960,17 @@ export interface Anchor {
960
960
  * <p>The <code>AnchorType</code> for the Anchor.</p>
961
961
  * @public
962
962
  */
963
- AnchorType?: AnchorType;
963
+ AnchorType?: AnchorType | undefined;
964
964
  /**
965
965
  * <p>The <code>TimeGranularity</code> of the Anchor.</p>
966
966
  * @public
967
967
  */
968
- TimeGranularity?: TimeGranularity;
968
+ TimeGranularity?: TimeGranularity | undefined;
969
969
  /**
970
970
  * <p>The offset of the Anchor.</p>
971
971
  * @public
972
972
  */
973
- Offset?: number;
973
+ Offset?: number | undefined;
974
974
  }
975
975
  /**
976
976
  * @public
@@ -1014,7 +1014,7 @@ export interface AnonymousUserDashboardFeatureConfigurations {
1014
1014
  * <p>The shared view settings of an embedded dashboard.</p>
1015
1015
  * @public
1016
1016
  */
1017
- SharedView?: SharedViewConfigurations;
1017
+ SharedView?: SharedViewConfigurations | undefined;
1018
1018
  }
1019
1019
  /**
1020
1020
  * <p>Information about the dashboard that you want to embed.</p>
@@ -1031,17 +1031,17 @@ export interface AnonymousUserDashboardEmbeddingConfiguration {
1031
1031
  * <p>A list of all enabled features of a specified anonymous dashboard.</p>
1032
1032
  * @public
1033
1033
  */
1034
- EnabledFeatures?: AnonymousUserDashboardEmbeddingConfigurationEnabledFeature[];
1034
+ EnabledFeatures?: AnonymousUserDashboardEmbeddingConfigurationEnabledFeature[] | undefined;
1035
1035
  /**
1036
1036
  * <p>A list of all disabled features of a specified anonymous dashboard.</p>
1037
1037
  * @public
1038
1038
  */
1039
- DisabledFeatures?: AnonymousUserDashboardEmbeddingConfigurationDisabledFeature[];
1039
+ DisabledFeatures?: AnonymousUserDashboardEmbeddingConfigurationDisabledFeature[] | undefined;
1040
1040
  /**
1041
1041
  * <p>The feature configuration for an embedded dashboard.</p>
1042
1042
  * @public
1043
1043
  */
1044
- FeatureConfigurations?: AnonymousUserDashboardFeatureConfigurations;
1044
+ FeatureConfigurations?: AnonymousUserDashboardFeatureConfigurations | undefined;
1045
1045
  }
1046
1046
  /**
1047
1047
  * <p>A structure that contains the following elements:</p>
@@ -1121,22 +1121,22 @@ export interface AnonymousUserEmbeddingExperienceConfiguration {
1121
1121
  * <p>The type of embedding experience. In this case, Amazon QuickSight dashboards.</p>
1122
1122
  * @public
1123
1123
  */
1124
- Dashboard?: AnonymousUserDashboardEmbeddingConfiguration;
1124
+ Dashboard?: AnonymousUserDashboardEmbeddingConfiguration | undefined;
1125
1125
  /**
1126
1126
  * <p>The type of embedding experience. In this case, Amazon QuickSight visuals.</p>
1127
1127
  * @public
1128
1128
  */
1129
- DashboardVisual?: AnonymousUserDashboardVisualEmbeddingConfiguration;
1129
+ DashboardVisual?: AnonymousUserDashboardVisualEmbeddingConfiguration | undefined;
1130
1130
  /**
1131
1131
  * <p>The Q search bar that you want to use for anonymous user embedding.</p>
1132
1132
  * @public
1133
1133
  */
1134
- QSearchBar?: AnonymousUserQSearchBarEmbeddingConfiguration;
1134
+ QSearchBar?: AnonymousUserQSearchBarEmbeddingConfiguration | undefined;
1135
1135
  /**
1136
1136
  * <p>The Generative Q&A experience that you want to use for anonymous user embedding.</p>
1137
1137
  * @public
1138
1138
  */
1139
- GenerativeQnA?: AnonymousUserGenerativeQnAEmbeddingConfiguration;
1139
+ GenerativeQnA?: AnonymousUserGenerativeQnAEmbeddingConfiguration | undefined;
1140
1140
  }
1141
1141
  /**
1142
1142
  * @public
@@ -1194,7 +1194,7 @@ export interface SnapshotFileSheetSelection {
1194
1194
  * </p>
1195
1195
  * @public
1196
1196
  */
1197
- VisualIds?: string[];
1197
+ VisualIds?: string[] | undefined;
1198
1198
  }
1199
1199
  /**
1200
1200
  * <p>A structure that contains the information for the snapshot that you want to generate. This information is provided by you when you start a new snapshot job.</p>
@@ -1221,12 +1221,12 @@ export interface SnapshotJobResultErrorInfo {
1221
1221
  * <p>The error message.</p>
1222
1222
  * @public
1223
1223
  */
1224
- ErrorMessage?: string;
1224
+ ErrorMessage?: string | undefined;
1225
1225
  /**
1226
1226
  * <p>The error type.</p>
1227
1227
  * @public
1228
1228
  */
1229
- ErrorType?: string;
1229
+ ErrorType?: string | undefined;
1230
1230
  }
1231
1231
  /**
1232
1232
  * <p>An optional structure that contains the Amazon S3 bucket configuration that the generated snapshots are stored in. If you don't provide this information, generated snapshots are stored in the default Amazon QuickSight bucket.</p>
@@ -1270,17 +1270,17 @@ export interface SnapshotJobS3Result {
1270
1270
  * </p>
1271
1271
  * @public
1272
1272
  */
1273
- S3DestinationConfiguration?: SnapshotS3DestinationConfiguration;
1273
+ S3DestinationConfiguration?: SnapshotS3DestinationConfiguration | undefined;
1274
1274
  /**
1275
1275
  * <p>The Amazon S3 Uri.</p>
1276
1276
  * @public
1277
1277
  */
1278
- S3Uri?: string;
1278
+ S3Uri?: string | undefined;
1279
1279
  /**
1280
1280
  * <p>An array of error records that describe any failures that occur while the dashboard snapshot job runs.</p>
1281
1281
  * @public
1282
1282
  */
1283
- ErrorInfo?: SnapshotJobResultErrorInfo[];
1283
+ ErrorInfo?: SnapshotJobResultErrorInfo[] | undefined;
1284
1284
  }
1285
1285
  /**
1286
1286
  * <p>A structure that contains information on the generated snapshot file groups.</p>
@@ -1291,12 +1291,12 @@ export interface SnapshotJobResultFileGroup {
1291
1291
  * <p> A list of <code>SnapshotFile</code> objects.</p>
1292
1292
  * @public
1293
1293
  */
1294
- Files?: SnapshotFile[];
1294
+ Files?: SnapshotFile[] | undefined;
1295
1295
  /**
1296
1296
  * <p> A list of <code>SnapshotJobS3Result</code> objects.</p>
1297
1297
  * @public
1298
1298
  */
1299
- S3Results?: SnapshotJobS3Result[];
1299
+ S3Results?: SnapshotJobS3Result[] | undefined;
1300
1300
  }
1301
1301
  /**
1302
1302
  * <p>A structure that contains the file groups that are requested for the artifact generation in a <code>StartDashboardSnapshotJob</code> API call.
@@ -1308,7 +1308,7 @@ export interface AnonymousUserSnapshotJobResult {
1308
1308
  * <p>A list of <code>SnapshotJobResultFileGroup</code> objects that contain information on the files that are requested during a <code>StartDashboardSnapshotJob</code> API call. If the job succeeds, these objects contain the location where the snapshot artifacts are stored. If the job fails, the objects contain information about the error that caused the job to fail.</p>
1309
1309
  * @public
1310
1310
  */
1311
- FileGroups?: SnapshotJobResultFileGroup[];
1311
+ FileGroups?: SnapshotJobResultFileGroup[] | undefined;
1312
1312
  }
1313
1313
  /**
1314
1314
  * @public
@@ -1499,7 +1499,7 @@ export interface AssetBundleExportJobResourceIdOverrideConfiguration {
1499
1499
  * <p>An option to request a CloudFormation variable for a prefix to be prepended to each resource's ID before import. The prefix is only added to the asset IDs and does not change the name of the asset.</p>
1500
1500
  * @public
1501
1501
  */
1502
- PrefixForAllResources?: boolean;
1502
+ PrefixForAllResources?: boolean | undefined;
1503
1503
  }
1504
1504
  /**
1505
1505
  * @public
@@ -1566,47 +1566,47 @@ export interface AssetBundleCloudFormationOverridePropertyConfiguration {
1566
1566
  * <p>An optional list of structures that control how resource IDs are parameterized in the returned CloudFormation template.</p>
1567
1567
  * @public
1568
1568
  */
1569
- ResourceIdOverrideConfiguration?: AssetBundleExportJobResourceIdOverrideConfiguration;
1569
+ ResourceIdOverrideConfiguration?: AssetBundleExportJobResourceIdOverrideConfiguration | undefined;
1570
1570
  /**
1571
1571
  * <p>An optional list of structures that control how <code>VPCConnection</code> resources are parameterized in the returned CloudFormation template.</p>
1572
1572
  * @public
1573
1573
  */
1574
- VPCConnections?: AssetBundleExportJobVPCConnectionOverrideProperties[];
1574
+ VPCConnections?: AssetBundleExportJobVPCConnectionOverrideProperties[] | undefined;
1575
1575
  /**
1576
1576
  * <p>An optional list of structures that control how <code>RefreshSchedule</code> resources are parameterized in the returned CloudFormation template.</p>
1577
1577
  * @public
1578
1578
  */
1579
- RefreshSchedules?: AssetBundleExportJobRefreshScheduleOverrideProperties[];
1579
+ RefreshSchedules?: AssetBundleExportJobRefreshScheduleOverrideProperties[] | undefined;
1580
1580
  /**
1581
1581
  * <p>An optional list of structures that control how <code>DataSource</code> resources are parameterized in the returned CloudFormation template.</p>
1582
1582
  * @public
1583
1583
  */
1584
- DataSources?: AssetBundleExportJobDataSourceOverrideProperties[];
1584
+ DataSources?: AssetBundleExportJobDataSourceOverrideProperties[] | undefined;
1585
1585
  /**
1586
1586
  * <p>An optional list of structures that control how <code>DataSet</code> resources are parameterized in the returned CloudFormation template.</p>
1587
1587
  * @public
1588
1588
  */
1589
- DataSets?: AssetBundleExportJobDataSetOverrideProperties[];
1589
+ DataSets?: AssetBundleExportJobDataSetOverrideProperties[] | undefined;
1590
1590
  /**
1591
1591
  * <p>An optional list of structures that control how <code>Theme</code> resources are parameterized in the returned CloudFormation template.</p>
1592
1592
  * @public
1593
1593
  */
1594
- Themes?: AssetBundleExportJobThemeOverrideProperties[];
1594
+ Themes?: AssetBundleExportJobThemeOverrideProperties[] | undefined;
1595
1595
  /**
1596
1596
  * <p>An optional list of structures that control how <code>Analysis</code> resources are parameterized in the returned CloudFormation template.</p>
1597
1597
  * @public
1598
1598
  */
1599
- Analyses?: AssetBundleExportJobAnalysisOverrideProperties[];
1599
+ Analyses?: AssetBundleExportJobAnalysisOverrideProperties[] | undefined;
1600
1600
  /**
1601
1601
  * <p>An optional list of structures that control how <code>Dashboard</code> resources are parameterized in the returned CloudFormation template.</p>
1602
1602
  * @public
1603
1603
  */
1604
- Dashboards?: AssetBundleExportJobDashboardOverrideProperties[];
1604
+ Dashboards?: AssetBundleExportJobDashboardOverrideProperties[] | undefined;
1605
1605
  /**
1606
1606
  * <p>An optional list of structures that controls how <code>Folder</code> resources are parameterized in the returned CloudFormation template.</p>
1607
1607
  * @public
1608
1608
  */
1609
- Folders?: AssetBundleExportJobFolderOverrideProperties[];
1609
+ Folders?: AssetBundleExportJobFolderOverrideProperties[] | undefined;
1610
1610
  }
1611
1611
  /**
1612
1612
  * @public
@@ -1629,17 +1629,17 @@ export interface AssetBundleExportJobError {
1629
1629
  * <p>The ARN of the resource whose processing caused an error.</p>
1630
1630
  * @public
1631
1631
  */
1632
- Arn?: string;
1632
+ Arn?: string | undefined;
1633
1633
  /**
1634
1634
  * <p>The specific error type of the error that occurred.</p>
1635
1635
  * @public
1636
1636
  */
1637
- Type?: string;
1637
+ Type?: string | undefined;
1638
1638
  /**
1639
1639
  * <p>A description of the error.</p>
1640
1640
  * @public
1641
1641
  */
1642
- Message?: string;
1642
+ Message?: string | undefined;
1643
1643
  }
1644
1644
  /**
1645
1645
  * @public
@@ -1664,42 +1664,42 @@ export interface AssetBundleExportJobSummary {
1664
1664
  * <p>The current status of the export job.</p>
1665
1665
  * @public
1666
1666
  */
1667
- JobStatus?: AssetBundleExportJobStatus;
1667
+ JobStatus?: AssetBundleExportJobStatus | undefined;
1668
1668
  /**
1669
1669
  * <p>The ARN of the export job.</p>
1670
1670
  * @public
1671
1671
  */
1672
- Arn?: string;
1672
+ Arn?: string | undefined;
1673
1673
  /**
1674
1674
  * <p>The time that the export job was created.</p>
1675
1675
  * @public
1676
1676
  */
1677
- CreatedTime?: Date;
1677
+ CreatedTime?: Date | undefined;
1678
1678
  /**
1679
1679
  * <p>The ID of the export job.</p>
1680
1680
  * @public
1681
1681
  */
1682
- AssetBundleExportJobId?: string;
1682
+ AssetBundleExportJobId?: string | undefined;
1683
1683
  /**
1684
1684
  * <p>The flag that determines the inclusion of resource dependencies in the returned asset bundle.</p>
1685
1685
  * @public
1686
1686
  */
1687
- IncludeAllDependencies?: boolean;
1687
+ IncludeAllDependencies?: boolean | undefined;
1688
1688
  /**
1689
1689
  * <p>The format for the export job.</p>
1690
1690
  * @public
1691
1691
  */
1692
- ExportFormat?: AssetBundleExportFormat;
1692
+ ExportFormat?: AssetBundleExportFormat | undefined;
1693
1693
  /**
1694
1694
  * <p>The flag that determines the inclusion of permissions associated with each resource ARN.</p>
1695
1695
  * @public
1696
1696
  */
1697
- IncludePermissions?: boolean;
1697
+ IncludePermissions?: boolean | undefined;
1698
1698
  /**
1699
1699
  * <p>The flag that determines the inclusion of tags associated with each resource ARN.</p>
1700
1700
  * @public
1701
1701
  */
1702
- IncludeTags?: boolean;
1702
+ IncludeTags?: boolean | undefined;
1703
1703
  }
1704
1704
  /**
1705
1705
  * <p>The option to relax the validation that is required to export each asset. When <code>StrictModeForAllResource</code> is set to <code>false</code>, validation is skipped for specific UI errors.</p>
@@ -1710,7 +1710,7 @@ export interface AssetBundleExportJobValidationStrategy {
1710
1710
  * <p>A Boolean value that indicates whether to export resources under strict or lenient mode.</p>
1711
1711
  * @public
1712
1712
  */
1713
- StrictModeForAllResources?: boolean;
1713
+ StrictModeForAllResources?: boolean | undefined;
1714
1714
  }
1715
1715
  /**
1716
1716
  * <p>Describes a warning that occurred during an Asset Bundle export job.</p>
@@ -1721,12 +1721,12 @@ export interface AssetBundleExportJobWarning {
1721
1721
  * <p>The ARN of the resource whose processing caused a warning.</p>
1722
1722
  * @public
1723
1723
  */
1724
- Arn?: string;
1724
+ Arn?: string | undefined;
1725
1725
  /**
1726
1726
  * <p>A description of the warning.</p>
1727
1727
  * @public
1728
1728
  */
1729
- Message?: string;
1729
+ Message?: string | undefined;
1730
1730
  }
1731
1731
  /**
1732
1732
  * @public
@@ -1754,7 +1754,7 @@ export interface AssetBundleImportJobAnalysisOverrideParameters {
1754
1754
  * <p>A new name for the analysis.</p>
1755
1755
  * @public
1756
1756
  */
1757
- Name?: string;
1757
+ Name?: string | undefined;
1758
1758
  }
1759
1759
  /**
1760
1760
  * <p>A structure that contains the permissions for the resource that you want to override in an asset bundle import job.</p>
@@ -1835,7 +1835,7 @@ export interface AssetBundleImportJobDashboardOverrideParameters {
1835
1835
  * <p>A new name for the dashboard.</p>
1836
1836
  * @public
1837
1837
  */
1838
- Name?: string;
1838
+ Name?: string | undefined;
1839
1839
  }
1840
1840
  /**
1841
1841
  * <p>A structure that contains the configuration of a shared link to an Amazon QuickSight dashboard.</p>
@@ -1846,7 +1846,7 @@ export interface AssetBundleResourceLinkSharingConfiguration {
1846
1846
  * <p>A list of link sharing permissions for the dashboards that you want to apply overrides to.</p>
1847
1847
  * @public
1848
1848
  */
1849
- Permissions?: AssetBundleResourcePermissions;
1849
+ Permissions?: AssetBundleResourcePermissions | undefined;
1850
1850
  }
1851
1851
  /**
1852
1852
  * <p>An object that contains a list of permissions to be applied to a list of dashboard IDs.</p>
@@ -1862,12 +1862,12 @@ export interface AssetBundleImportJobDashboardOverridePermissions {
1862
1862
  * <p>A list of permissions for the dashboards that you want to apply overrides to.</p>
1863
1863
  * @public
1864
1864
  */
1865
- Permissions?: AssetBundleResourcePermissions;
1865
+ Permissions?: AssetBundleResourcePermissions | undefined;
1866
1866
  /**
1867
1867
  * <p>A structure that contains the link sharing configurations that you want to apply overrides to.</p>
1868
1868
  * @public
1869
1869
  */
1870
- LinkSharingConfiguration?: AssetBundleResourceLinkSharingConfiguration;
1870
+ LinkSharingConfiguration?: AssetBundleResourceLinkSharingConfiguration | undefined;
1871
1871
  }
1872
1872
  /**
1873
1873
  * <p>An object that contains a list of tags to be assigned to a list of dashboard IDs.</p>
@@ -1899,7 +1899,7 @@ export interface AssetBundleImportJobDataSetOverrideParameters {
1899
1899
  * <p>A new name for the dataset.</p>
1900
1900
  * @public
1901
1901
  */
1902
- Name?: string;
1902
+ Name?: string | undefined;
1903
1903
  }
1904
1904
  /**
1905
1905
  * <p>An object that contains a list of permissions to be applied to a list of dataset IDs.</p>
@@ -1958,12 +1958,12 @@ export interface AssetBundleImportJobDataSourceCredentials {
1958
1958
  * <p>A username and password credential pair to be used to create the imported data source. Keep this field blank if you are using a Secrets Manager secret to provide credentials.</p>
1959
1959
  * @public
1960
1960
  */
1961
- CredentialPair?: AssetBundleImportJobDataSourceCredentialPair;
1961
+ CredentialPair?: AssetBundleImportJobDataSourceCredentialPair | undefined;
1962
1962
  /**
1963
1963
  * <p>The ARN of the Secrets Manager secret that's used to create the imported data source. Keep this field blank, unless you are using a secret in place of a credential pair.</p>
1964
1964
  * @public
1965
1965
  */
1966
- SecretArn?: string;
1966
+ SecretArn?: string | undefined;
1967
1967
  }
1968
1968
  /**
1969
1969
  * <p>Parameters for Amazon Athena.</p>
@@ -1974,12 +1974,12 @@ export interface AthenaParameters {
1974
1974
  * <p>The workgroup that Amazon Athena uses.</p>
1975
1975
  * @public
1976
1976
  */
1977
- WorkGroup?: string;
1977
+ WorkGroup?: string | undefined;
1978
1978
  /**
1979
1979
  * <p>Use the <code>RoleArn</code> structure to override an account-wide role for a specific Athena data source. For example, say an account administrator has turned off all Athena access with an account-wide role. The administrator can then use <code>RoleArn</code> to bypass the account-wide role and allow Athena access for the single Athena data source that is specified in the structure, even if the account-wide role forbidding Athena access is still active.</p>
1980
1980
  * @public
1981
1981
  */
1982
- RoleArn?: string;
1982
+ RoleArn?: string | undefined;
1983
1983
  }
1984
1984
  /**
1985
1985
  * <p>Parameters for Amazon Aurora.</p>
@@ -2048,7 +2048,7 @@ export interface BigQueryParameters {
2048
2048
  * <p>The storage location where you create a Google BigQuery data source.</p>
2049
2049
  * @public
2050
2050
  */
2051
- DataSetRegion?: string;
2051
+ DataSetRegion?: string | undefined;
2052
2052
  }
2053
2053
  /**
2054
2054
  * <p>The parameters that are required to connect to a Databricks data source.</p>
@@ -2235,17 +2235,17 @@ export interface RedshiftIAMParameters {
2235
2235
  * <p>The user whose permissions and group memberships will be used by Amazon QuickSight to access the cluster. If this user already exists in your database, Amazon QuickSight is granted the same permissions that the user has. If the user doesn't exist, set the value of <code>AutoCreateDatabaseUser</code> to <code>True</code> to create a new user with PUBLIC permissions.</p>
2236
2236
  * @public
2237
2237
  */
2238
- DatabaseUser?: string;
2238
+ DatabaseUser?: string | undefined;
2239
2239
  /**
2240
2240
  * <p>A list of groups whose permissions will be granted to Amazon QuickSight to access the cluster. These permissions are combined with the permissions granted to Amazon QuickSight by the <code>DatabaseUser</code>. If you choose to include this parameter, the <code>RoleArn</code> must grant access to <code>redshift:JoinGroup</code>.</p>
2241
2241
  * @public
2242
2242
  */
2243
- DatabaseGroups?: string[];
2243
+ DatabaseGroups?: string[] | undefined;
2244
2244
  /**
2245
2245
  * <p>Automatically creates a database user. If your database doesn't have a <code>DatabaseUser</code>, set this parameter to <code>True</code>. If there is no <code>DatabaseUser</code>, Amazon QuickSight can't connect to your cluster. The <code>RoleArn</code> that you use for this operation must grant access to <code>redshift:CreateClusterUser</code> to successfully create the user.</p>
2246
2246
  * @public
2247
2247
  */
2248
- AutoCreateDatabaseUser?: boolean;
2248
+ AutoCreateDatabaseUser?: boolean | undefined;
2249
2249
  }
2250
2250
  /**
2251
2251
  * <p>The parameters for an IAM Identity Center configuration.</p>
@@ -2256,7 +2256,7 @@ export interface IdentityCenterConfiguration {
2256
2256
  * <p>A Boolean option that controls whether Trusted Identity Propagation should be used.</p>
2257
2257
  * @public
2258
2258
  */
2259
- EnableIdentityPropagation?: boolean;
2259
+ EnableIdentityPropagation?: boolean | undefined;
2260
2260
  }
2261
2261
  /**
2262
2262
  * <p>The parameters for Amazon Redshift. The <code>ClusterId</code> field can be blank if
@@ -2268,12 +2268,12 @@ export interface RedshiftParameters {
2268
2268
  * <p>Host. This field can be blank if <code>ClusterId</code> is provided.</p>
2269
2269
  * @public
2270
2270
  */
2271
- Host?: string;
2271
+ Host?: string | undefined;
2272
2272
  /**
2273
2273
  * <p>Port. This field can be blank if the <code>ClusterId</code> is provided.</p>
2274
2274
  * @public
2275
2275
  */
2276
- Port?: number;
2276
+ Port?: number | undefined;
2277
2277
  /**
2278
2278
  * <p>Database.</p>
2279
2279
  * @public
@@ -2284,18 +2284,18 @@ export interface RedshiftParameters {
2284
2284
  * provided.</p>
2285
2285
  * @public
2286
2286
  */
2287
- ClusterId?: string;
2287
+ ClusterId?: string | undefined;
2288
2288
  /**
2289
2289
  * <p>An optional parameter that uses IAM authentication to grant Amazon QuickSight access to your cluster. This parameter can be used instead of <a href="https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DataSourceCredentials.html">DataSourceCredentials</a>.</p>
2290
2290
  * @public
2291
2291
  */
2292
- IAMParameters?: RedshiftIAMParameters;
2292
+ IAMParameters?: RedshiftIAMParameters | undefined;
2293
2293
  /**
2294
2294
  * <p>An optional parameter that configures IAM Identity Center authentication to grant Amazon QuickSight access to your cluster.</p>
2295
2295
  * <p>This parameter can only be specified if your Amazon QuickSight account is configured with IAM Identity Center.</p>
2296
2296
  * @public
2297
2297
  */
2298
- IdentityCenterConfiguration?: IdentityCenterConfiguration;
2298
+ IdentityCenterConfiguration?: IdentityCenterConfiguration | undefined;
2299
2299
  }
2300
2300
  /**
2301
2301
  * <p>Amazon S3 manifest file location.</p>
@@ -2328,7 +2328,7 @@ export interface S3Parameters {
2328
2328
  * <p>Use the <code>RoleArn</code> structure to override an account-wide role for a specific S3 data source. For example, say an account administrator has turned off all S3 access with an account-wide role. The administrator can then use <code>RoleArn</code> to bypass the account-wide role and allow S3 access for the single S3 data source that is specified in the structure, even if the account-wide role forbidding S3 access is still active.</p>
2329
2329
  * @public
2330
2330
  */
2331
- RoleArn?: string;
2331
+ RoleArn?: string | undefined;
2332
2332
  }
2333
2333
  /**
2334
2334
  * <p>The parameters for ServiceNow.</p>
@@ -2379,17 +2379,17 @@ export interface OAuthParameters {
2379
2379
  * <p>The OAuth scope.</p>
2380
2380
  * @public
2381
2381
  */
2382
- OAuthScope?: string;
2382
+ OAuthScope?: string | undefined;
2383
2383
  /**
2384
2384
  * <p>VPC connection properties.</p>
2385
2385
  * @public
2386
2386
  */
2387
- IdentityProviderVpcConnectionProperties?: VpcConnectionProperties;
2387
+ IdentityProviderVpcConnectionProperties?: VpcConnectionProperties | undefined;
2388
2388
  /**
2389
2389
  * <p>The resource uri of the identity provider.</p>
2390
2390
  * @public
2391
2391
  */
2392
- IdentityProviderResourceUri?: string;
2392
+ IdentityProviderResourceUri?: string | undefined;
2393
2393
  }
2394
2394
  /**
2395
2395
  * <p>The parameters for Snowflake.</p>
@@ -2415,17 +2415,17 @@ export interface SnowflakeParameters {
2415
2415
  * <p>The authentication type that you want to use for your connection. This parameter accepts OAuth and non-OAuth authentication types.</p>
2416
2416
  * @public
2417
2417
  */
2418
- AuthenticationType?: AuthenticationType;
2418
+ AuthenticationType?: AuthenticationType | undefined;
2419
2419
  /**
2420
2420
  * <p>The database access control role.</p>
2421
2421
  * @public
2422
2422
  */
2423
- DatabaseAccessControlRole?: string;
2423
+ DatabaseAccessControlRole?: string | undefined;
2424
2424
  /**
2425
2425
  * <p>An object that contains information needed to create a data source connection between an Amazon QuickSight account and Snowflake.</p>
2426
2426
  * @public
2427
2427
  */
2428
- OAuthParameters?: OAuthParameters;
2428
+ OAuthParameters?: OAuthParameters | undefined;
2429
2429
  }
2430
2430
  /**
2431
2431
  * <p>The parameters for Spark.</p>
@@ -2500,22 +2500,22 @@ export interface StarburstParameters {
2500
2500
  * <p>The product type for the Starburst data source.</p>
2501
2501
  * @public
2502
2502
  */
2503
- ProductType?: StarburstProductType;
2503
+ ProductType?: StarburstProductType | undefined;
2504
2504
  /**
2505
2505
  * <p>The database access control role.</p>
2506
2506
  * @public
2507
2507
  */
2508
- DatabaseAccessControlRole?: string;
2508
+ DatabaseAccessControlRole?: string | undefined;
2509
2509
  /**
2510
2510
  * <p>The authentication type that you want to use for your connection. This parameter accepts OAuth and non-OAuth authentication types.</p>
2511
2511
  * @public
2512
2512
  */
2513
- AuthenticationType?: AuthenticationType;
2513
+ AuthenticationType?: AuthenticationType | undefined;
2514
2514
  /**
2515
2515
  * <p>An object that contains information needed to create a data source connection between an Amazon QuickSight account and Starburst.</p>
2516
2516
  * @public
2517
2517
  */
2518
- OAuthParameters?: OAuthParameters;
2518
+ OAuthParameters?: OAuthParameters | undefined;
2519
2519
  }
2520
2520
  /**
2521
2521
  * <p>The parameters for Teradata.</p>
@@ -3517,7 +3517,7 @@ export interface SslProperties {
3517
3517
  * <p>A Boolean option to control whether SSL should be disabled.</p>
3518
3518
  * @public
3519
3519
  */
3520
- DisableSsl?: boolean;
3520
+ DisableSsl?: boolean | undefined;
3521
3521
  }
3522
3522
  /**
3523
3523
  * <p>The override parameters for a single data source that is being imported.</p>
@@ -3533,30 +3533,30 @@ export interface AssetBundleImportJobDataSourceOverrideParameters {
3533
3533
  * <p>A new name for the data source.</p>
3534
3534
  * @public
3535
3535
  */
3536
- Name?: string;
3536
+ Name?: string | undefined;
3537
3537
  /**
3538
3538
  * <p>The parameters that Amazon QuickSight uses to connect to your underlying data source.
3539
3539
  * This is a variant type structure. For this structure to be valid, only one of the
3540
3540
  * attributes can be non-null.</p>
3541
3541
  * @public
3542
3542
  */
3543
- DataSourceParameters?: DataSourceParameters;
3543
+ DataSourceParameters?: DataSourceParameters | undefined;
3544
3544
  /**
3545
3545
  * <p>VPC connection properties.</p>
3546
3546
  * @public
3547
3547
  */
3548
- VpcConnectionProperties?: VpcConnectionProperties;
3548
+ VpcConnectionProperties?: VpcConnectionProperties | undefined;
3549
3549
  /**
3550
3550
  * <p>Secure Socket Layer (SSL) properties that apply when Amazon QuickSight connects to your
3551
3551
  * underlying data source.</p>
3552
3552
  * @public
3553
3553
  */
3554
- SslProperties?: SslProperties;
3554
+ SslProperties?: SslProperties | undefined;
3555
3555
  /**
3556
3556
  * <p>An optional structure that provides the credentials to be used to create the imported data source.</p>
3557
3557
  * @public
3558
3558
  */
3559
- Credentials?: AssetBundleImportJobDataSourceCredentials;
3559
+ Credentials?: AssetBundleImportJobDataSourceCredentials | undefined;
3560
3560
  }
3561
3561
  /**
3562
3562
  * <p>An object that contains a list of permissions to be applied to a list of data source IDs.</p>
@@ -3599,17 +3599,17 @@ export interface AssetBundleImportJobError {
3599
3599
  * <p>The ARN of the resource whose processing caused an error.</p>
3600
3600
  * @public
3601
3601
  */
3602
- Arn?: string;
3602
+ Arn?: string | undefined;
3603
3603
  /**
3604
3604
  * <p>The specific error type or the error that occurred.</p>
3605
3605
  * @public
3606
3606
  */
3607
- Type?: string;
3607
+ Type?: string | undefined;
3608
3608
  /**
3609
3609
  * <p>A description of the error.</p>
3610
3610
  * @public
3611
3611
  */
3612
- Message?: string;
3612
+ Message?: string | undefined;
3613
3613
  }
3614
3614
  /**
3615
3615
  * <p>The override parameters for a single folder that is being imported.</p>
@@ -3625,12 +3625,12 @@ export interface AssetBundleImportJobFolderOverrideParameters {
3625
3625
  * <p>A new name for the folder.</p>
3626
3626
  * @public
3627
3627
  */
3628
- Name?: string;
3628
+ Name?: string | undefined;
3629
3629
  /**
3630
3630
  * <p>A new parent folder arn. This change can only be applied if the import creates a brand new folder. Existing folders cannot be moved.</p>
3631
3631
  * @public
3632
3632
  */
3633
- ParentFolderArn?: string;
3633
+ ParentFolderArn?: string | undefined;
3634
3634
  }
3635
3635
  /**
3636
3636
  * <p>An object that contains a list of permissions to be applied to a list of folder IDs.</p>
@@ -3646,7 +3646,7 @@ export interface AssetBundleImportJobFolderOverridePermissions {
3646
3646
  * <p>A structure that contains the permissions for the resource that you want to override in an asset bundle import job.</p>
3647
3647
  * @public
3648
3648
  */
3649
- Permissions?: AssetBundleResourcePermissions;
3649
+ Permissions?: AssetBundleResourcePermissions | undefined;
3650
3650
  }
3651
3651
  /**
3652
3652
  * <p>An object that contains a list of tags to be assigned to a list of folder IDs.</p>
@@ -3685,7 +3685,7 @@ export interface AssetBundleImportJobRefreshScheduleOverrideParameters {
3685
3685
  * place in the future.</p>
3686
3686
  * @public
3687
3687
  */
3688
- StartAfterDateTime?: Date;
3688
+ StartAfterDateTime?: Date | undefined;
3689
3689
  }
3690
3690
  /**
3691
3691
  * <p>An optional structure that configures resource ID overrides for the import job.</p>
@@ -3696,7 +3696,7 @@ export interface AssetBundleImportJobResourceIdOverrideConfiguration {
3696
3696
  * <p>An option to request a CloudFormation variable for a prefix to be prepended to each resource's ID before import. The prefix is only added to the asset IDs and does not change the name of the asset.</p>
3697
3697
  * @public
3698
3698
  */
3699
- PrefixForAllResources?: string;
3699
+ PrefixForAllResources?: string | undefined;
3700
3700
  }
3701
3701
  /**
3702
3702
  * <p>The override parameters for a single theme that is imported.</p>
@@ -3712,7 +3712,7 @@ export interface AssetBundleImportJobThemeOverrideParameters {
3712
3712
  * <p>A new name for the theme.</p>
3713
3713
  * @public
3714
3714
  */
3715
- Name?: string;
3715
+ Name?: string | undefined;
3716
3716
  }
3717
3717
  /**
3718
3718
  * <p>The override parameters for a single VPC connection that is imported.</p>
@@ -3728,29 +3728,29 @@ export interface AssetBundleImportJobVPCConnectionOverrideParameters {
3728
3728
  * <p>A new name for the VPC connection.</p>
3729
3729
  * @public
3730
3730
  */
3731
- Name?: string;
3731
+ Name?: string | undefined;
3732
3732
  /**
3733
3733
  * <p>A list of new subnet IDs for the VPC connection you are importing. This field is
3734
3734
  * required if you are importing the VPC connection from another Amazon Web Services account or Region.</p>
3735
3735
  * @public
3736
3736
  */
3737
- SubnetIds?: string[];
3737
+ SubnetIds?: string[] | undefined;
3738
3738
  /**
3739
3739
  * <p>A new security group ID for the VPC connection you are importing. This field is required
3740
3740
  * if you are importing the VPC connection from another Amazon Web Services account or Region.</p>
3741
3741
  * @public
3742
3742
  */
3743
- SecurityGroupIds?: string[];
3743
+ SecurityGroupIds?: string[] | undefined;
3744
3744
  /**
3745
3745
  * <p>An optional override of DNS resolvers to be used by the VPC connection.</p>
3746
3746
  * @public
3747
3747
  */
3748
- DnsResolvers?: string[];
3748
+ DnsResolvers?: string[] | undefined;
3749
3749
  /**
3750
3750
  * <p>An optional override of the role ARN to be used by the VPC connection.</p>
3751
3751
  * @public
3752
3752
  */
3753
- RoleArn?: string;
3753
+ RoleArn?: string | undefined;
3754
3754
  }
3755
3755
  /**
3756
3756
  * <p>A list of overrides that modify the asset bundle resource configuration before the resource is imported.</p>
@@ -3761,47 +3761,47 @@ export interface AssetBundleImportJobOverrideParameters {
3761
3761
  * <p>An optional structure that configures resource ID overrides to be applied within the import job.</p>
3762
3762
  * @public
3763
3763
  */
3764
- ResourceIdOverrideConfiguration?: AssetBundleImportJobResourceIdOverrideConfiguration;
3764
+ ResourceIdOverrideConfiguration?: AssetBundleImportJobResourceIdOverrideConfiguration | undefined;
3765
3765
  /**
3766
3766
  * <p>A list of overrides for any <code>VPCConnection</code> resources that are present in the asset bundle that is imported.</p>
3767
3767
  * @public
3768
3768
  */
3769
- VPCConnections?: AssetBundleImportJobVPCConnectionOverrideParameters[];
3769
+ VPCConnections?: AssetBundleImportJobVPCConnectionOverrideParameters[] | undefined;
3770
3770
  /**
3771
3771
  * <p>A list of overrides for any <code>RefreshSchedule</code> resources that are present in the asset bundle that is imported.</p>
3772
3772
  * @public
3773
3773
  */
3774
- RefreshSchedules?: AssetBundleImportJobRefreshScheduleOverrideParameters[];
3774
+ RefreshSchedules?: AssetBundleImportJobRefreshScheduleOverrideParameters[] | undefined;
3775
3775
  /**
3776
3776
  * <p> A list of overrides for any <code>DataSource</code> resources that are present in the asset bundle that is imported.</p>
3777
3777
  * @public
3778
3778
  */
3779
- DataSources?: AssetBundleImportJobDataSourceOverrideParameters[];
3779
+ DataSources?: AssetBundleImportJobDataSourceOverrideParameters[] | undefined;
3780
3780
  /**
3781
3781
  * <p>A list of overrides for any <code>DataSet</code> resources that are present in the asset bundle that is imported.</p>
3782
3782
  * @public
3783
3783
  */
3784
- DataSets?: AssetBundleImportJobDataSetOverrideParameters[];
3784
+ DataSets?: AssetBundleImportJobDataSetOverrideParameters[] | undefined;
3785
3785
  /**
3786
3786
  * <p>A list of overrides for any <code>Theme</code> resources that are present in the asset bundle that is imported.</p>
3787
3787
  * @public
3788
3788
  */
3789
- Themes?: AssetBundleImportJobThemeOverrideParameters[];
3789
+ Themes?: AssetBundleImportJobThemeOverrideParameters[] | undefined;
3790
3790
  /**
3791
3791
  * <p>A list of overrides for any <code>Analysis</code> resources that are present in the asset bundle that is imported.</p>
3792
3792
  * @public
3793
3793
  */
3794
- Analyses?: AssetBundleImportJobAnalysisOverrideParameters[];
3794
+ Analyses?: AssetBundleImportJobAnalysisOverrideParameters[] | undefined;
3795
3795
  /**
3796
3796
  * <p>A list of overrides for any <code>Dashboard</code> resources that are present in the asset bundle that is imported.</p>
3797
3797
  * @public
3798
3798
  */
3799
- Dashboards?: AssetBundleImportJobDashboardOverrideParameters[];
3799
+ Dashboards?: AssetBundleImportJobDashboardOverrideParameters[] | undefined;
3800
3800
  /**
3801
3801
  * <p>A list of overrides for any <code>Folder</code> resources that are present in the asset bundle that is imported.</p>
3802
3802
  * @public
3803
3803
  */
3804
- Folders?: AssetBundleImportJobFolderOverrideParameters[];
3804
+ Folders?: AssetBundleImportJobFolderOverrideParameters[] | undefined;
3805
3805
  }
3806
3806
  /**
3807
3807
  * <p>An object that contains a list of permissions to be applied to a list of theme IDs.</p>
@@ -3828,32 +3828,32 @@ export interface AssetBundleImportJobOverridePermissions {
3828
3828
  * <p>A list of permissions overrides for any <code>DataSource</code> resources that are present in the asset bundle that is imported.</p>
3829
3829
  * @public
3830
3830
  */
3831
- DataSources?: AssetBundleImportJobDataSourceOverridePermissions[];
3831
+ DataSources?: AssetBundleImportJobDataSourceOverridePermissions[] | undefined;
3832
3832
  /**
3833
3833
  * <p>A list of permissions overrides for any <code>DataSet</code> resources that are present in the asset bundle that is imported.</p>
3834
3834
  * @public
3835
3835
  */
3836
- DataSets?: AssetBundleImportJobDataSetOverridePermissions[];
3836
+ DataSets?: AssetBundleImportJobDataSetOverridePermissions[] | undefined;
3837
3837
  /**
3838
3838
  * <p>A list of permissions overrides for any <code>Theme</code> resources that are present in the asset bundle that is imported.</p>
3839
3839
  * @public
3840
3840
  */
3841
- Themes?: AssetBundleImportJobThemeOverridePermissions[];
3841
+ Themes?: AssetBundleImportJobThemeOverridePermissions[] | undefined;
3842
3842
  /**
3843
3843
  * <p>A list of permissions overrides for any <code>Analysis</code> resources that are present in the asset bundle that is imported.</p>
3844
3844
  * @public
3845
3845
  */
3846
- Analyses?: AssetBundleImportJobAnalysisOverridePermissions[];
3846
+ Analyses?: AssetBundleImportJobAnalysisOverridePermissions[] | undefined;
3847
3847
  /**
3848
3848
  * <p>A list of permissions overrides for any <code>Dashboard</code> resources that are present in the asset bundle that is imported.</p>
3849
3849
  * @public
3850
3850
  */
3851
- Dashboards?: AssetBundleImportJobDashboardOverridePermissions[];
3851
+ Dashboards?: AssetBundleImportJobDashboardOverridePermissions[] | undefined;
3852
3852
  /**
3853
3853
  * <p>A list of permissions for the folders that you want to apply overrides to.</p>
3854
3854
  * @public
3855
3855
  */
3856
- Folders?: AssetBundleImportJobFolderOverridePermissions[];
3856
+ Folders?: AssetBundleImportJobFolderOverridePermissions[] | undefined;
3857
3857
  }
3858
3858
  /**
3859
3859
  * <p>An object that contains a list of tags to be assigned to a list of theme IDs.</p>
@@ -3896,37 +3896,37 @@ export interface AssetBundleImportJobOverrideTags {
3896
3896
  * <p>A list of tag overrides for any <code>VPCConnection</code> resources that are present in the asset bundle that is imported.</p>
3897
3897
  * @public
3898
3898
  */
3899
- VPCConnections?: AssetBundleImportJobVPCConnectionOverrideTags[];
3899
+ VPCConnections?: AssetBundleImportJobVPCConnectionOverrideTags[] | undefined;
3900
3900
  /**
3901
3901
  * <p>A list of tag overrides for any <code>DataSource</code> resources that are present in the asset bundle that is imported.</p>
3902
3902
  * @public
3903
3903
  */
3904
- DataSources?: AssetBundleImportJobDataSourceOverrideTags[];
3904
+ DataSources?: AssetBundleImportJobDataSourceOverrideTags[] | undefined;
3905
3905
  /**
3906
3906
  * <p>A list of tag overrides for any <code>DataSet</code> resources that are present in the asset bundle that is imported.</p>
3907
3907
  * @public
3908
3908
  */
3909
- DataSets?: AssetBundleImportJobDataSetOverrideTags[];
3909
+ DataSets?: AssetBundleImportJobDataSetOverrideTags[] | undefined;
3910
3910
  /**
3911
3911
  * <p>A list of tag overrides for any <code>Theme</code> resources that are present in the asset bundle that is imported.</p>
3912
3912
  * @public
3913
3913
  */
3914
- Themes?: AssetBundleImportJobThemeOverrideTags[];
3914
+ Themes?: AssetBundleImportJobThemeOverrideTags[] | undefined;
3915
3915
  /**
3916
3916
  * <p>A list of tag overrides for any <code>Analysis</code> resources that are present in the asset bundle that is imported.</p>
3917
3917
  * @public
3918
3918
  */
3919
- Analyses?: AssetBundleImportJobAnalysisOverrideTags[];
3919
+ Analyses?: AssetBundleImportJobAnalysisOverrideTags[] | undefined;
3920
3920
  /**
3921
3921
  * <p>A list of tag overrides for any <code>Dashboard</code> resources that are present in the asset bundle that is imported.</p>
3922
3922
  * @public
3923
3923
  */
3924
- Dashboards?: AssetBundleImportJobDashboardOverrideTags[];
3924
+ Dashboards?: AssetBundleImportJobDashboardOverrideTags[] | undefined;
3925
3925
  /**
3926
3926
  * <p>A list of tag overrides for any <code>Folder</code> resources that are present in the asset bundle that is imported.</p>
3927
3927
  * @public
3928
3928
  */
3929
- Folders?: AssetBundleImportJobFolderOverrideTags[];
3929
+ Folders?: AssetBundleImportJobFolderOverrideTags[] | undefined;
3930
3930
  }
3931
3931
  /**
3932
3932
  * <p>An optional parameter that overrides the validation strategy for all analyses and dashboards before the resource is imported.</p>
@@ -3937,7 +3937,7 @@ export interface AssetBundleImportJobOverrideValidationStrategy {
3937
3937
  * <p>A Boolean value that indicates whether to import all analyses and dashboards under strict or lenient mode.</p>
3938
3938
  * @public
3939
3939
  */
3940
- StrictModeForAllResources?: boolean;
3940
+ StrictModeForAllResources?: boolean | undefined;
3941
3941
  }
3942
3942
  /**
3943
3943
  * @public
@@ -3965,27 +3965,27 @@ export interface AssetBundleImportJobSummary {
3965
3965
  * <p>The current status of the import job.</p>
3966
3966
  * @public
3967
3967
  */
3968
- JobStatus?: AssetBundleImportJobStatus;
3968
+ JobStatus?: AssetBundleImportJobStatus | undefined;
3969
3969
  /**
3970
3970
  * <p>The ARN of the import job.</p>
3971
3971
  * @public
3972
3972
  */
3973
- Arn?: string;
3973
+ Arn?: string | undefined;
3974
3974
  /**
3975
3975
  * <p>The time that the import job was created.</p>
3976
3976
  * @public
3977
3977
  */
3978
- CreatedTime?: Date;
3978
+ CreatedTime?: Date | undefined;
3979
3979
  /**
3980
3980
  * <p>The ID of the job. This ID is unique while the job is running. After the job is completed, you can reuse this ID for another job.</p>
3981
3981
  * @public
3982
3982
  */
3983
- AssetBundleImportJobId?: string;
3983
+ AssetBundleImportJobId?: string | undefined;
3984
3984
  /**
3985
3985
  * <p>The failure action for the import job.</p>
3986
3986
  * @public
3987
3987
  */
3988
- FailureAction?: AssetBundleImportFailureAction;
3988
+ FailureAction?: AssetBundleImportFailureAction | undefined;
3989
3989
  }
3990
3990
  /**
3991
3991
  * <p>Describes a warning that occurred during an Asset Bundle import job.</p>
@@ -3996,12 +3996,12 @@ export interface AssetBundleImportJobWarning {
3996
3996
  * <p>The ARN of the resource that the warning occurred for.</p>
3997
3997
  * @public
3998
3998
  */
3999
- Arn?: string;
3999
+ Arn?: string | undefined;
4000
4000
  /**
4001
4001
  * <p>A description of the warning that occurred during an Asset Bundle import job.</p>
4002
4002
  * @public
4003
4003
  */
4004
- Message?: string;
4004
+ Message?: string | undefined;
4005
4005
  }
4006
4006
  /**
4007
4007
  * <p>The source of the asset bundle zip file that contains the data that you want to import. The file must be in <code>QUICKSIGHT_JSON</code> format.</p>
@@ -4015,13 +4015,13 @@ export interface AssetBundleImportSource {
4015
4015
  * an SDK for a different language or receiving related errors, try to base64 encode your data.</p>
4016
4016
  * @public
4017
4017
  */
4018
- Body?: Uint8Array;
4018
+ Body?: Uint8Array | undefined;
4019
4019
  /**
4020
4020
  * <p>The Amazon S3 URI for an asset bundle import file that exists in an Amazon S3 bucket that the caller
4021
4021
  * has read access to. The file must be a zip format file and can't exceed 20 MB.</p>
4022
4022
  * @public
4023
4023
  */
4024
- S3Uri?: string;
4024
+ S3Uri?: string | undefined;
4025
4025
  }
4026
4026
  /**
4027
4027
  * <p>A description of the import source that you provide at the start of an import job. This value is set to either <code>Body</code> or <code>S3Uri</code>, depending on how the <code>StartAssetBundleImportJobRequest</code> is configured.</p>
@@ -4032,12 +4032,12 @@ export interface AssetBundleImportSourceDescription {
4032
4032
  * <p>An HTTPS download URL for the provided asset bundle that you optionally provided at the start of the import job. This URL is valid for five minutes after issuance. Call <code>DescribeAssetBundleExportJob</code> again for a fresh URL if needed. The downloaded asset bundle is a <code>.qs</code> zip file.</p>
4033
4033
  * @public
4034
4034
  */
4035
- Body?: string;
4035
+ Body?: string | undefined;
4036
4036
  /**
4037
4037
  * <p>The Amazon S3 URI that you provided at the start of the import job.</p>
4038
4038
  * @public
4039
4039
  */
4040
- S3Uri?: string;
4040
+ S3Uri?: string | undefined;
4041
4041
  }
4042
4042
  /**
4043
4043
  * @public
@@ -4086,12 +4086,12 @@ export interface AuthorizedTargetsByService {
4086
4086
  * <p>The name of the Amazon Web Services service.</p>
4087
4087
  * @public
4088
4088
  */
4089
- Service?: ServiceType;
4089
+ Service?: ServiceType | undefined;
4090
4090
  /**
4091
4091
  * <p>Aist of authorized targets that are represented by IAM Identity Center application ARNs.</p>
4092
4092
  * @public
4093
4093
  */
4094
- AuthorizedTargets?: string[];
4094
+ AuthorizedTargets?: string[] | undefined;
4095
4095
  }
4096
4096
  /**
4097
4097
  * @public
@@ -4137,7 +4137,7 @@ export interface ContributionAnalysisFactor {
4137
4137
  * <p>The field name of the <code>ContributionAnalysisFactor</code>.</p>
4138
4138
  * @public
4139
4139
  */
4140
- FieldName?: string;
4140
+ FieldName?: string | undefined;
4141
4141
  }
4142
4142
  /**
4143
4143
  * @public
@@ -4185,17 +4185,17 @@ export interface FilterAggMetrics {
4185
4185
  * <p>The metric operand of the <code>FilterAggMetrics</code>.</p>
4186
4186
  * @public
4187
4187
  */
4188
- MetricOperand?: Identifier;
4188
+ MetricOperand?: Identifier | undefined;
4189
4189
  /**
4190
4190
  * <p>The function for the <code>FilterAggMetrics</code>.</p>
4191
4191
  * @public
4192
4192
  */
4193
- Function?: AggType;
4193
+ Function?: AggType | undefined;
4194
4194
  /**
4195
4195
  * <p>The sort direction for <code>FilterAggMetrics</code>.</p>
4196
4196
  * @public
4197
4197
  */
4198
- SortDirection?: TopicSortDirection;
4198
+ SortDirection?: TopicSortDirection | undefined;
4199
4199
  }
4200
4200
  /**
4201
4201
  * @public
@@ -4219,12 +4219,12 @@ export interface CollectiveConstantEntry {
4219
4219
  * <p>The <code>ConstantType</code> of a <code>CollectiveConstantEntry</code>.</p>
4220
4220
  * @public
4221
4221
  */
4222
- ConstantType?: ConstantType;
4222
+ ConstantType?: ConstantType | undefined;
4223
4223
  /**
4224
4224
  * <p>The value of a <code>CollectiveConstantEntry</code>.</p>
4225
4225
  * @public
4226
4226
  */
4227
- Value?: string;
4227
+ Value?: string | undefined;
4228
4228
  }
4229
4229
  /**
4230
4230
  * <p>The definition for a <code>TopicConstantValue</code>.</p>
@@ -4235,27 +4235,27 @@ export interface TopicConstantValue {
4235
4235
  * <p>The constant type of a <code>TopicConstantValue</code>.</p>
4236
4236
  * @public
4237
4237
  */
4238
- ConstantType?: ConstantType;
4238
+ ConstantType?: ConstantType | undefined;
4239
4239
  /**
4240
4240
  * <p>The value of the <code>TopicConstantValue</code>.</p>
4241
4241
  * @public
4242
4242
  */
4243
- Value?: string;
4243
+ Value?: string | undefined;
4244
4244
  /**
4245
4245
  * <p>The minimum for the <code>TopicConstantValue</code>.</p>
4246
4246
  * @public
4247
4247
  */
4248
- Minimum?: string;
4248
+ Minimum?: string | undefined;
4249
4249
  /**
4250
4250
  * <p>The maximum for the <code>TopicConstantValue</code>.</p>
4251
4251
  * @public
4252
4252
  */
4253
- Maximum?: string;
4253
+ Maximum?: string | undefined;
4254
4254
  /**
4255
4255
  * <p>The value list of the <code>TopicConstantValue</code>.</p>
4256
4256
  * @public
4257
4257
  */
4258
- ValueList?: CollectiveConstantEntry[];
4258
+ ValueList?: CollectiveConstantEntry[] | undefined;
4259
4259
  }
4260
4260
  /**
4261
4261
  * @public
@@ -4331,92 +4331,92 @@ export interface TopicIRFilterOption {
4331
4331
  * <p>The filter type for the <code>TopicIRFilterOption</code>.</p>
4332
4332
  * @public
4333
4333
  */
4334
- FilterType?: TopicIRFilterType;
4334
+ FilterType?: TopicIRFilterType | undefined;
4335
4335
  /**
4336
4336
  * <p>The filter class for the <code>TopicIRFilterOption</code>.</p>
4337
4337
  * @public
4338
4338
  */
4339
- FilterClass?: FilterClass;
4339
+ FilterClass?: FilterClass | undefined;
4340
4340
  /**
4341
4341
  * <p>The operand field for the <code>TopicIRFilterOption</code>.</p>
4342
4342
  * @public
4343
4343
  */
4344
- OperandField?: Identifier;
4344
+ OperandField?: Identifier | undefined;
4345
4345
  /**
4346
4346
  * <p>The function for the <code>TopicIRFilterOption</code>.</p>
4347
4347
  * @public
4348
4348
  */
4349
- Function?: TopicIRFilterFunction;
4349
+ Function?: TopicIRFilterFunction | undefined;
4350
4350
  /**
4351
4351
  * <p>The constant for the <code>TopicIRFilterOption</code>.</p>
4352
4352
  * @public
4353
4353
  */
4354
- Constant?: TopicConstantValue;
4354
+ Constant?: TopicConstantValue | undefined;
4355
4355
  /**
4356
4356
  * <p>The inverse for the <code>TopicIRFilterOption</code>.</p>
4357
4357
  * @public
4358
4358
  */
4359
- Inverse?: boolean;
4359
+ Inverse?: boolean | undefined;
4360
4360
  /**
4361
4361
  * <p>The null filter for the <code>TopicIRFilterOption</code>.</p>
4362
4362
  * @public
4363
4363
  */
4364
- NullFilter?: NullFilterOption;
4364
+ NullFilter?: NullFilterOption | undefined;
4365
4365
  /**
4366
4366
  * <p>The aggregation for the <code>TopicIRFilterOption</code>.</p>
4367
4367
  * @public
4368
4368
  */
4369
- Aggregation?: AggType;
4369
+ Aggregation?: AggType | undefined;
4370
4370
  /**
4371
4371
  * <p>The aggregation function parameters for the <code>TopicIRFilterOption</code>.</p>
4372
4372
  * @public
4373
4373
  */
4374
- AggregationFunctionParameters?: Record<string, string>;
4374
+ AggregationFunctionParameters?: Record<string, string> | undefined;
4375
4375
  /**
4376
4376
  * <p>The <code>AggregationPartitionBy</code> for the <code>TopicIRFilterOption</code>.</p>
4377
4377
  * @public
4378
4378
  */
4379
- AggregationPartitionBy?: AggregationPartitionBy[];
4379
+ AggregationPartitionBy?: AggregationPartitionBy[] | undefined;
4380
4380
  /**
4381
4381
  * <p>The range for the <code>TopicIRFilterOption</code>.</p>
4382
4382
  * @public
4383
4383
  */
4384
- Range?: TopicConstantValue;
4384
+ Range?: TopicConstantValue | undefined;
4385
4385
  /**
4386
4386
  * <p>The inclusive for the <code>TopicIRFilterOption</code>.</p>
4387
4387
  * @public
4388
4388
  */
4389
- Inclusive?: boolean;
4389
+ Inclusive?: boolean | undefined;
4390
4390
  /**
4391
4391
  * <p>The time granularity for the <code>TopicIRFilterOption</code>.</p>
4392
4392
  * @public
4393
4393
  */
4394
- TimeGranularity?: TimeGranularity;
4394
+ TimeGranularity?: TimeGranularity | undefined;
4395
4395
  /**
4396
4396
  * <p>The last next offset for the <code>TopicIRFilterOption</code>.</p>
4397
4397
  * @public
4398
4398
  */
4399
- LastNextOffset?: TopicConstantValue;
4399
+ LastNextOffset?: TopicConstantValue | undefined;
4400
4400
  /**
4401
4401
  * <p>The agg metrics for the <code>TopicIRFilterOption</code>.</p>
4402
4402
  * @public
4403
4403
  */
4404
- AggMetrics?: FilterAggMetrics[];
4404
+ AggMetrics?: FilterAggMetrics[] | undefined;
4405
4405
  /**
4406
4406
  * <p>The <code>TopBottomLimit</code> for the <code>TopicIRFilterOption</code>.</p>
4407
4407
  * @public
4408
4408
  */
4409
- TopBottomLimit?: TopicConstantValue;
4409
+ TopBottomLimit?: TopicConstantValue | undefined;
4410
4410
  /**
4411
4411
  * <p>The sort direction for the <code>TopicIRFilterOption</code>.</p>
4412
4412
  * @public
4413
4413
  */
4414
- SortDirection?: TopicSortDirection;
4414
+ SortDirection?: TopicSortDirection | undefined;
4415
4415
  /**
4416
4416
  * <p>The anchor for the <code>TopicIRFilterOption</code>.</p>
4417
4417
  * @public
4418
4418
  */
4419
- Anchor?: Anchor;
4419
+ Anchor?: Anchor | undefined;
4420
4420
  }
4421
4421
  /**
4422
4422
  * <p>The definition for the <code>ContributionAnalysisTimeRanges</code>.</p>
@@ -4427,12 +4427,12 @@ export interface ContributionAnalysisTimeRanges {
4427
4427
  * <p>The start range for the <code>ContributionAnalysisTimeRanges</code>.</p>
4428
4428
  * @public
4429
4429
  */
4430
- StartRange?: TopicIRFilterOption;
4430
+ StartRange?: TopicIRFilterOption | undefined;
4431
4431
  /**
4432
4432
  * <p>The end range for the <code>ContributionAnalysisTimeRanges</code>.</p>
4433
4433
  * @public
4434
4434
  */
4435
- EndRange?: TopicIRFilterOption;
4435
+ EndRange?: TopicIRFilterOption | undefined;
4436
4436
  }
4437
4437
  /**
4438
4438
  * <p>The definition for a <code>TopicIRContributionAnalysis</code>.</p>
@@ -4443,22 +4443,22 @@ export interface TopicIRContributionAnalysis {
4443
4443
  * <p>The factors for a <code>TopicIRContributionAnalysis</code>.</p>
4444
4444
  * @public
4445
4445
  */
4446
- Factors?: ContributionAnalysisFactor[];
4446
+ Factors?: ContributionAnalysisFactor[] | undefined;
4447
4447
  /**
4448
4448
  * <p>The time ranges for the <code>TopicIRContributionAnalysis</code>.</p>
4449
4449
  * @public
4450
4450
  */
4451
- TimeRanges?: ContributionAnalysisTimeRanges;
4451
+ TimeRanges?: ContributionAnalysisTimeRanges | undefined;
4452
4452
  /**
4453
4453
  * <p>The direction for the <code>TopicIRContributionAnalysis</code>.</p>
4454
4454
  * @public
4455
4455
  */
4456
- Direction?: ContributionAnalysisDirection;
4456
+ Direction?: ContributionAnalysisDirection | undefined;
4457
4457
  /**
4458
4458
  * <p>The sort type for the <code>TopicIRContributionAnalysis</code>.</p>
4459
4459
  * @public
4460
4460
  */
4461
- SortType?: ContributionAnalysisSortType;
4461
+ SortType?: ContributionAnalysisSortType | undefined;
4462
4462
  }
4463
4463
  /**
4464
4464
  * @public
@@ -4497,12 +4497,12 @@ export interface NegativeFormat {
4497
4497
  * <p>The prefix for a negative format.</p>
4498
4498
  * @public
4499
4499
  */
4500
- Prefix?: string;
4500
+ Prefix?: string | undefined;
4501
4501
  /**
4502
4502
  * <p>The suffix for a negative format.</p>
4503
4503
  * @public
4504
4504
  */
4505
- Suffix?: string;
4505
+ Suffix?: string | undefined;
4506
4506
  }
4507
4507
  /**
4508
4508
  * <p>A structure that represents additional options for display formatting.</p>
@@ -4513,47 +4513,47 @@ export interface DisplayFormatOptions {
4513
4513
  * <p>A Boolean value that indicates whether to use blank cell format.</p>
4514
4514
  * @public
4515
4515
  */
4516
- UseBlankCellFormat?: boolean;
4516
+ UseBlankCellFormat?: boolean | undefined;
4517
4517
  /**
4518
4518
  * <p>Determines the blank cell format.</p>
4519
4519
  * @public
4520
4520
  */
4521
- BlankCellFormat?: string;
4521
+ BlankCellFormat?: string | undefined;
4522
4522
  /**
4523
4523
  * <p>Determines the <code>DateTime</code> format.</p>
4524
4524
  * @public
4525
4525
  */
4526
- DateFormat?: string;
4526
+ DateFormat?: string | undefined;
4527
4527
  /**
4528
4528
  * <p>Determines the decimal separator.</p>
4529
4529
  * @public
4530
4530
  */
4531
- DecimalSeparator?: TopicNumericSeparatorSymbol;
4531
+ DecimalSeparator?: TopicNumericSeparatorSymbol | undefined;
4532
4532
  /**
4533
4533
  * <p>Determines the grouping separator.</p>
4534
4534
  * @public
4535
4535
  */
4536
- GroupingSeparator?: string;
4536
+ GroupingSeparator?: string | undefined;
4537
4537
  /**
4538
4538
  * <p>A Boolean value that indicates whether to use grouping.</p>
4539
4539
  * @public
4540
4540
  */
4541
- UseGrouping?: boolean;
4541
+ UseGrouping?: boolean | undefined;
4542
4542
  /**
4543
4543
  * <p>Determines the number of fraction digits.</p>
4544
4544
  * @public
4545
4545
  */
4546
- FractionDigits?: number;
4546
+ FractionDigits?: number | undefined;
4547
4547
  /**
4548
4548
  * <p>The prefix value for a display format.</p>
4549
4549
  * @public
4550
4550
  */
4551
- Prefix?: string;
4551
+ Prefix?: string | undefined;
4552
4552
  /**
4553
4553
  * <p>The suffix value for a display format.</p>
4554
4554
  * @public
4555
4555
  */
4556
- Suffix?: string;
4556
+ Suffix?: string | undefined;
4557
4557
  /**
4558
4558
  * <p>The unit scaler. Valid values for this structure are: <code>NONE</code>,
4559
4559
  * <code>AUTO</code>, <code>THOUSANDS</code>, <code>MILLIONS</code>,
@@ -4561,17 +4561,17 @@ export interface DisplayFormatOptions {
4561
4561
  * and <code>TRILLIONS</code>.</p>
4562
4562
  * @public
4563
4563
  */
4564
- UnitScaler?: NumberScale;
4564
+ UnitScaler?: NumberScale | undefined;
4565
4565
  /**
4566
4566
  * <p>The negative format.</p>
4567
4567
  * @public
4568
4568
  */
4569
- NegativeFormat?: NegativeFormat;
4569
+ NegativeFormat?: NegativeFormat | undefined;
4570
4570
  /**
4571
4571
  * <p>The currency symbol, such as <code>USD</code>.</p>
4572
4572
  * @public
4573
4573
  */
4574
- CurrencySymbol?: string;
4574
+ CurrencySymbol?: string | undefined;
4575
4575
  }
4576
4576
  /**
4577
4577
  * <p>The definition for a <code>NamedEntityRef</code>.</p>
@@ -4582,7 +4582,7 @@ export interface NamedEntityRef {
4582
4582
  * <p>The <code>NamedEntityName</code> for the <code>NamedEntityRef</code>.</p>
4583
4583
  * @public
4584
4584
  */
4585
- NamedEntityName?: string;
4585
+ NamedEntityName?: string | undefined;
4586
4586
  }
4587
4587
  /**
4588
4588
  * <p>The definition for a <code>TopicSortClause</code>.</p>
@@ -4593,12 +4593,12 @@ export interface TopicSortClause {
4593
4593
  * <p>The operand for a <code>TopicSortClause</code>.</p>
4594
4594
  * @public
4595
4595
  */
4596
- Operand?: Identifier;
4596
+ Operand?: Identifier | undefined;
4597
4597
  /**
4598
4598
  * <p>The sort direction for the <code>TopicSortClause</code>.</p>
4599
4599
  * @public
4600
4600
  */
4601
- SortDirection?: TopicSortDirection;
4601
+ SortDirection?: TopicSortDirection | undefined;
4602
4602
  }
4603
4603
  /**
4604
4604
  * <p>The definition for a <code>TopicIRGroupBy</code>.</p>
@@ -4609,32 +4609,32 @@ export interface TopicIRGroupBy {
4609
4609
  * <p>The field name for the <code>TopicIRGroupBy</code>.</p>
4610
4610
  * @public
4611
4611
  */
4612
- FieldName?: Identifier;
4612
+ FieldName?: Identifier | undefined;
4613
4613
  /**
4614
4614
  * <p>The time granularity for the <code>TopicIRGroupBy</code>.</p>
4615
4615
  * @public
4616
4616
  */
4617
- TimeGranularity?: TopicTimeGranularity;
4617
+ TimeGranularity?: TopicTimeGranularity | undefined;
4618
4618
  /**
4619
4619
  * <p>The sort for the <code>TopicIRGroupBy</code>.</p>
4620
4620
  * @public
4621
4621
  */
4622
- Sort?: TopicSortClause;
4622
+ Sort?: TopicSortClause | undefined;
4623
4623
  /**
4624
4624
  * <p>The display format for the <code>TopicIRGroupBy</code>.</p>
4625
4625
  * @public
4626
4626
  */
4627
- DisplayFormat?: DisplayFormat;
4627
+ DisplayFormat?: DisplayFormat | undefined;
4628
4628
  /**
4629
4629
  * <p>A structure that represents additional options for display formatting.</p>
4630
4630
  * @public
4631
4631
  */
4632
- DisplayFormatOptions?: DisplayFormatOptions;
4632
+ DisplayFormatOptions?: DisplayFormatOptions | undefined;
4633
4633
  /**
4634
4634
  * <p>The named entity for the <code>TopicIRGroupBy</code>.</p>
4635
4635
  * @public
4636
4636
  */
4637
- NamedEntity?: NamedEntityRef;
4637
+ NamedEntity?: NamedEntityRef | undefined;
4638
4638
  }
4639
4639
  /**
4640
4640
  * @public
@@ -4665,17 +4665,17 @@ export interface TopicIRComparisonMethod {
4665
4665
  * <p>The type for the <code>TopicIRComparisonMethod</code>.</p>
4666
4666
  * @public
4667
4667
  */
4668
- Type?: ComparisonMethodType;
4668
+ Type?: ComparisonMethodType | undefined;
4669
4669
  /**
4670
4670
  * <p>The period for the <code>TopicIRComparisonMethod</code>.</p>
4671
4671
  * @public
4672
4672
  */
4673
- Period?: TopicTimeGranularity;
4673
+ Period?: TopicTimeGranularity | undefined;
4674
4674
  /**
4675
4675
  * <p>The window size for the <code>TopicIRComparisonMethod</code>.</p>
4676
4676
  * @public
4677
4677
  */
4678
- WindowSize?: number;
4678
+ WindowSize?: number | undefined;
4679
4679
  }
4680
4680
  /**
4681
4681
  * <p>The definition for a <code>TopicIRMetric</code>.</p>
@@ -4686,47 +4686,47 @@ export interface TopicIRMetric {
4686
4686
  * <p>The metric ID for the <code>TopicIRMetric</code>.</p>
4687
4687
  * @public
4688
4688
  */
4689
- MetricId?: Identifier;
4689
+ MetricId?: Identifier | undefined;
4690
4690
  /**
4691
4691
  * <p>The function for the <code>TopicIRMetric</code>.</p>
4692
4692
  * @public
4693
4693
  */
4694
- Function?: AggFunction;
4694
+ Function?: AggFunction | undefined;
4695
4695
  /**
4696
4696
  * <p>The operands for the <code>TopicIRMetric</code>.</p>
4697
4697
  * @public
4698
4698
  */
4699
- Operands?: Identifier[];
4699
+ Operands?: Identifier[] | undefined;
4700
4700
  /**
4701
4701
  * <p>The comparison method for the <code>TopicIRMetric</code>.</p>
4702
4702
  * @public
4703
4703
  */
4704
- ComparisonMethod?: TopicIRComparisonMethod;
4704
+ ComparisonMethod?: TopicIRComparisonMethod | undefined;
4705
4705
  /**
4706
4706
  * <p>The expression for the <code>TopicIRMetric</code>.</p>
4707
4707
  * @public
4708
4708
  */
4709
- Expression?: string;
4709
+ Expression?: string | undefined;
4710
4710
  /**
4711
4711
  * <p>The calculated field references for the <code>TopicIRMetric</code>.</p>
4712
4712
  * @public
4713
4713
  */
4714
- CalculatedFieldReferences?: Identifier[];
4714
+ CalculatedFieldReferences?: Identifier[] | undefined;
4715
4715
  /**
4716
4716
  * <p>The display format for the <code>TopicIRMetric</code>.</p>
4717
4717
  * @public
4718
4718
  */
4719
- DisplayFormat?: DisplayFormat;
4719
+ DisplayFormat?: DisplayFormat | undefined;
4720
4720
  /**
4721
4721
  * <p>A structure that represents additional options for display formatting.</p>
4722
4722
  * @public
4723
4723
  */
4724
- DisplayFormatOptions?: DisplayFormatOptions;
4724
+ DisplayFormatOptions?: DisplayFormatOptions | undefined;
4725
4725
  /**
4726
4726
  * <p>The named entity for the <code>TopicIRMetric</code>.</p>
4727
4727
  * @public
4728
4728
  */
4729
- NamedEntity?: NamedEntityRef;
4729
+ NamedEntity?: NamedEntityRef | undefined;
4730
4730
  }
4731
4731
  /**
4732
4732
  * <p>The definition for a <code>VisualOptions</code>.</p>
@@ -4737,7 +4737,7 @@ export interface VisualOptions {
4737
4737
  * <p>The type for a <code>VisualOptions</code>.</p>
4738
4738
  * @public
4739
4739
  */
4740
- type?: string;
4740
+ type?: string | undefined;
4741
4741
  }
4742
4742
  /**
4743
4743
  * <p>The definition for a <code>TopicIR</code>.</p>
@@ -4748,32 +4748,32 @@ export interface TopicIR {
4748
4748
  * <p>The metrics for the <code>TopicIR</code>.</p>
4749
4749
  * @public
4750
4750
  */
4751
- Metrics?: TopicIRMetric[];
4751
+ Metrics?: TopicIRMetric[] | undefined;
4752
4752
  /**
4753
4753
  * <p>The GroupBy list for the <code>TopicIR</code>.</p>
4754
4754
  * @public
4755
4755
  */
4756
- GroupByList?: TopicIRGroupBy[];
4756
+ GroupByList?: TopicIRGroupBy[] | undefined;
4757
4757
  /**
4758
4758
  * <p>The filters for the <code>TopicIR</code>.</p>
4759
4759
  * @public
4760
4760
  */
4761
- Filters?: TopicIRFilterOption[][];
4761
+ Filters?: TopicIRFilterOption[][] | undefined;
4762
4762
  /**
4763
4763
  * <p>The sort for the <code>TopicIR</code>.</p>
4764
4764
  * @public
4765
4765
  */
4766
- Sort?: TopicSortClause;
4766
+ Sort?: TopicSortClause | undefined;
4767
4767
  /**
4768
4768
  * <p>The contribution analysis for the <code>TopicIR</code>.</p>
4769
4769
  * @public
4770
4770
  */
4771
- ContributionAnalysis?: TopicIRContributionAnalysis;
4771
+ ContributionAnalysis?: TopicIRContributionAnalysis | undefined;
4772
4772
  /**
4773
4773
  * <p>The visual for the <code>TopicIR</code>.</p>
4774
4774
  * @public
4775
4775
  */
4776
- Visual?: VisualOptions;
4776
+ Visual?: VisualOptions | undefined;
4777
4777
  }
4778
4778
  /**
4779
4779
  * @public
@@ -4799,12 +4799,12 @@ export interface Slot {
4799
4799
  * <p>The slot ID of the slot.</p>
4800
4800
  * @public
4801
4801
  */
4802
- SlotId?: string;
4802
+ SlotId?: string | undefined;
4803
4803
  /**
4804
4804
  * <p>The visual ID for the slot.</p>
4805
4805
  * @public
4806
4806
  */
4807
- VisualId?: string;
4807
+ VisualId?: string | undefined;
4808
4808
  }
4809
4809
  /**
4810
4810
  * <p>The definition for a <code>TopicTemplate</code>.</p>
@@ -4815,12 +4815,12 @@ export interface TopicTemplate {
4815
4815
  * <p>The template type for the <code>TopicTemplate</code>.</p>
4816
4816
  * @public
4817
4817
  */
4818
- TemplateType?: string;
4818
+ TemplateType?: string | undefined;
4819
4819
  /**
4820
4820
  * <p>The slots for the <code>TopicTemplate</code>.</p>
4821
4821
  * @public
4822
4822
  */
4823
- Slots?: Slot[];
4823
+ Slots?: Slot[] | undefined;
4824
4824
  }
4825
4825
  /**
4826
4826
  * @public
@@ -4848,12 +4848,12 @@ export interface InvalidTopicReviewedAnswer {
4848
4848
  * <p>The answer ID for the <code>InvalidTopicReviewedAnswer</code>.</p>
4849
4849
  * @public
4850
4850
  */
4851
- AnswerId?: string;
4851
+ AnswerId?: string | undefined;
4852
4852
  /**
4853
4853
  * <p>The error that is returned for the <code>InvalidTopicReviewedAnswer</code>.</p>
4854
4854
  * @public
4855
4855
  */
4856
- Error?: ReviewedAnswerErrorCode;
4856
+ Error?: ReviewedAnswerErrorCode | undefined;
4857
4857
  }
4858
4858
  /**
4859
4859
  * <p>The definition for a <code>SucceededTopicReviewedAnswer</code>.</p>
@@ -4864,7 +4864,7 @@ export interface SucceededTopicReviewedAnswer {
4864
4864
  * <p>The answer ID for the <code>SucceededTopicReviewedAnswer</code>.</p>
4865
4865
  * @public
4866
4866
  */
4867
- AnswerId?: string;
4867
+ AnswerId?: string | undefined;
4868
4868
  }
4869
4869
  /**
4870
4870
  * @public
@@ -4875,32 +4875,32 @@ export interface BatchCreateTopicReviewedAnswerResponse {
4875
4875
  * for each Amazon Web Services account.</p>
4876
4876
  * @public
4877
4877
  */
4878
- TopicId?: string;
4878
+ TopicId?: string | undefined;
4879
4879
  /**
4880
4880
  * <p>The Amazon Resource Name (ARN) of the topic.</p>
4881
4881
  * @public
4882
4882
  */
4883
- TopicArn?: string;
4883
+ TopicArn?: string | undefined;
4884
4884
  /**
4885
4885
  * <p>The definition of Answers that are successfully created.</p>
4886
4886
  * @public
4887
4887
  */
4888
- SucceededAnswers?: SucceededTopicReviewedAnswer[];
4888
+ SucceededAnswers?: SucceededTopicReviewedAnswer[] | undefined;
4889
4889
  /**
4890
4890
  * <p>The definition of Answers that are invalid and not created.</p>
4891
4891
  * @public
4892
4892
  */
4893
- InvalidAnswers?: InvalidTopicReviewedAnswer[];
4893
+ InvalidAnswers?: InvalidTopicReviewedAnswer[] | undefined;
4894
4894
  /**
4895
4895
  * <p>The HTTP status of the request.</p>
4896
4896
  * @public
4897
4897
  */
4898
- Status?: number;
4898
+ Status?: number | undefined;
4899
4899
  /**
4900
4900
  * <p>The Amazon Web Services request ID for this operation.</p>
4901
4901
  * @public
4902
4902
  */
4903
- RequestId?: string;
4903
+ RequestId?: string | undefined;
4904
4904
  }
4905
4905
  /**
4906
4906
  * <p>An internal failure occurred.</p>
@@ -4909,12 +4909,12 @@ export interface BatchCreateTopicReviewedAnswerResponse {
4909
4909
  export declare class InternalFailureException extends __BaseException {
4910
4910
  readonly name: "InternalFailureException";
4911
4911
  readonly $fault: "server";
4912
- Message?: string;
4912
+ Message?: string | undefined;
4913
4913
  /**
4914
4914
  * <p>The Amazon Web Services request ID for this request.</p>
4915
4915
  * @public
4916
4916
  */
4917
- RequestId?: string;
4917
+ RequestId?: string | undefined;
4918
4918
  /**
4919
4919
  * @internal
4920
4920
  */
@@ -4927,12 +4927,12 @@ export declare class InternalFailureException extends __BaseException {
4927
4927
  export declare class InvalidParameterValueException extends __BaseException {
4928
4928
  readonly name: "InvalidParameterValueException";
4929
4929
  readonly $fault: "client";
4930
- Message?: string;
4930
+ Message?: string | undefined;
4931
4931
  /**
4932
4932
  * <p>The Amazon Web Services request ID for this request.</p>
4933
4933
  * @public
4934
4934
  */
4935
- RequestId?: string;
4935
+ RequestId?: string | undefined;
4936
4936
  /**
4937
4937
  * @internal
4938
4938
  */
@@ -4964,17 +4964,17 @@ export type ExceptionResourceType = (typeof ExceptionResourceType)[keyof typeof
4964
4964
  export declare class ResourceNotFoundException extends __BaseException {
4965
4965
  readonly name: "ResourceNotFoundException";
4966
4966
  readonly $fault: "client";
4967
- Message?: string;
4967
+ Message?: string | undefined;
4968
4968
  /**
4969
4969
  * <p>The resource type for this request.</p>
4970
4970
  * @public
4971
4971
  */
4972
- ResourceType?: ExceptionResourceType;
4972
+ ResourceType?: ExceptionResourceType | undefined;
4973
4973
  /**
4974
4974
  * <p>The Amazon Web Services request ID for this request.</p>
4975
4975
  * @public
4976
4976
  */
4977
- RequestId?: string;
4977
+ RequestId?: string | undefined;
4978
4978
  /**
4979
4979
  * @internal
4980
4980
  */
@@ -4987,12 +4987,12 @@ export declare class ResourceNotFoundException extends __BaseException {
4987
4987
  export declare class ThrottlingException extends __BaseException {
4988
4988
  readonly name: "ThrottlingException";
4989
4989
  readonly $fault: "client";
4990
- Message?: string;
4990
+ Message?: string | undefined;
4991
4991
  /**
4992
4992
  * <p>The Amazon Web Services request ID for this request.</p>
4993
4993
  * @public
4994
4994
  */
4995
- RequestId?: string;
4995
+ RequestId?: string | undefined;
4996
4996
  /**
4997
4997
  * @internal
4998
4998
  */
@@ -5016,7 +5016,7 @@ export interface BatchDeleteTopicReviewedAnswerRequest {
5016
5016
  * <p>The Answer IDs of the Answers to be deleted.</p>
5017
5017
  * @public
5018
5018
  */
5019
- AnswerIds?: string[];
5019
+ AnswerIds?: string[] | undefined;
5020
5020
  }
5021
5021
  /**
5022
5022
  * @public
@@ -5026,32 +5026,32 @@ export interface BatchDeleteTopicReviewedAnswerResponse {
5026
5026
  * <p>The ID of the topic reviewed answer that you want to delete. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
5027
5027
  * @public
5028
5028
  */
5029
- TopicId?: string;
5029
+ TopicId?: string | undefined;
5030
5030
  /**
5031
5031
  * <p>The Amazon Resource Name (ARN) of the topic.</p>
5032
5032
  * @public
5033
5033
  */
5034
- TopicArn?: string;
5034
+ TopicArn?: string | undefined;
5035
5035
  /**
5036
5036
  * <p>The definition of Answers that are successfully deleted.</p>
5037
5037
  * @public
5038
5038
  */
5039
- SucceededAnswers?: SucceededTopicReviewedAnswer[];
5039
+ SucceededAnswers?: SucceededTopicReviewedAnswer[] | undefined;
5040
5040
  /**
5041
5041
  * <p>The definition of Answers that are invalid and not deleted.</p>
5042
5042
  * @public
5043
5043
  */
5044
- InvalidAnswers?: InvalidTopicReviewedAnswer[];
5044
+ InvalidAnswers?: InvalidTopicReviewedAnswer[] | undefined;
5045
5045
  /**
5046
5046
  * <p>The Amazon Web Services request ID for this operation.</p>
5047
5047
  * @public
5048
5048
  */
5049
- RequestId?: string;
5049
+ RequestId?: string | undefined;
5050
5050
  /**
5051
5051
  * <p>The HTTP status of the request.</p>
5052
5052
  * @public
5053
5053
  */
5054
- Status?: number;
5054
+ Status?: number | undefined;
5055
5055
  }
5056
5056
  /**
5057
5057
  * <p>Updating or deleting a resource can cause an inconsistent state.</p>
@@ -5060,12 +5060,12 @@ export interface BatchDeleteTopicReviewedAnswerResponse {
5060
5060
  export declare class ConflictException extends __BaseException {
5061
5061
  readonly name: "ConflictException";
5062
5062
  readonly $fault: "client";
5063
- Message?: string;
5063
+ Message?: string | undefined;
5064
5064
  /**
5065
5065
  * <p>The Amazon Web Services request ID for this request.</p>
5066
5066
  * @public
5067
5067
  */
5068
- RequestId?: string;
5068
+ RequestId?: string | undefined;
5069
5069
  /**
5070
5070
  * @internal
5071
5071
  */
@@ -5092,7 +5092,7 @@ export interface BorderStyle {
5092
5092
  * <p>The option to enable display of borders for visuals.</p>
5093
5093
  * @public
5094
5094
  */
5095
- Show?: boolean;
5095
+ Show?: boolean | undefined;
5096
5096
  }
5097
5097
  /**
5098
5098
  * <p>A calculated column for a dataset.</p>
@@ -5145,22 +5145,22 @@ export interface CancelIngestionResponse {
5145
5145
  * <p>The Amazon Resource Name (ARN) for the data ingestion.</p>
5146
5146
  * @public
5147
5147
  */
5148
- Arn?: string;
5148
+ Arn?: string | undefined;
5149
5149
  /**
5150
5150
  * <p>An ID for the ingestion.</p>
5151
5151
  * @public
5152
5152
  */
5153
- IngestionId?: string;
5153
+ IngestionId?: string | undefined;
5154
5154
  /**
5155
5155
  * <p>The Amazon Web Services request ID for this operation.</p>
5156
5156
  * @public
5157
5157
  */
5158
- RequestId?: string;
5158
+ RequestId?: string | undefined;
5159
5159
  /**
5160
5160
  * <p>The HTTP status of the request.</p>
5161
5161
  * @public
5162
5162
  */
5163
- Status?: number;
5163
+ Status?: number | undefined;
5164
5164
  }
5165
5165
  /**
5166
5166
  * <p>The resource specified already exists. </p>
@@ -5169,17 +5169,17 @@ export interface CancelIngestionResponse {
5169
5169
  export declare class ResourceExistsException extends __BaseException {
5170
5170
  readonly name: "ResourceExistsException";
5171
5171
  readonly $fault: "client";
5172
- Message?: string;
5172
+ Message?: string | undefined;
5173
5173
  /**
5174
5174
  * <p>The resource type for this request.</p>
5175
5175
  * @public
5176
5176
  */
5177
- ResourceType?: ExceptionResourceType;
5177
+ ResourceType?: ExceptionResourceType | undefined;
5178
5178
  /**
5179
5179
  * <p>The Amazon Web Services request ID for this request.</p>
5180
5180
  * @public
5181
5181
  */
5182
- RequestId?: string;
5182
+ RequestId?: string | undefined;
5183
5183
  /**
5184
5184
  * @internal
5185
5185
  */
@@ -5230,13 +5230,13 @@ export interface CastColumnTypeOperation {
5230
5230
  * <p>The sub data type of the new column. Sub types are only available for decimal columns that are part of a SPICE dataset.</p>
5231
5231
  * @public
5232
5232
  */
5233
- SubType?: ColumnDataSubType;
5233
+ SubType?: ColumnDataSubType | undefined;
5234
5234
  /**
5235
5235
  * <p>When casting a column from string to datetime type, you can supply a string in a
5236
5236
  * format supported by Amazon QuickSight to denote the source data format.</p>
5237
5237
  * @public
5238
5238
  */
5239
- Format?: string;
5239
+ Format?: string | undefined;
5240
5240
  }
5241
5241
  /**
5242
5242
  * @public
@@ -5272,12 +5272,12 @@ export interface CellValueSynonym {
5272
5272
  * <p>The cell value.</p>
5273
5273
  * @public
5274
5274
  */
5275
- CellValue?: string;
5275
+ CellValue?: string | undefined;
5276
5276
  /**
5277
5277
  * <p>Other names or aliases for the cell value.</p>
5278
5278
  * @public
5279
5279
  */
5280
- Synonyms?: string[];
5280
+ Synonyms?: string[] | undefined;
5281
5281
  }
5282
5282
  /**
5283
5283
  * <p>A structure that represents a collective constant.</p>
@@ -5288,7 +5288,7 @@ export interface CollectiveConstant {
5288
5288
  * <p>A list of values for the collective constant.</p>
5289
5289
  * @public
5290
5290
  */
5291
- ValueList?: string[];
5291
+ ValueList?: string[] | undefined;
5292
5292
  }
5293
5293
  /**
5294
5294
  * @public
@@ -5311,7 +5311,7 @@ export interface ColumnDescription {
5311
5311
  * <p>The text of a description for a column.</p>
5312
5312
  * @public
5313
5313
  */
5314
- Text?: string;
5314
+ Text?: string | undefined;
5315
5315
  }
5316
5316
  /**
5317
5317
  * @public
@@ -5338,7 +5338,7 @@ export interface GeoSpatialColumnGroup {
5338
5338
  * <p>Country code.</p>
5339
5339
  * @public
5340
5340
  */
5341
- CountryCode?: GeoSpatialCountryCode;
5341
+ CountryCode?: GeoSpatialCountryCode | undefined;
5342
5342
  /**
5343
5343
  * <p>Columns in this hierarchy.</p>
5344
5344
  * @public
@@ -5356,7 +5356,7 @@ export interface ColumnGroup {
5356
5356
  * <p>Geospatial column group that denotes a hierarchy.</p>
5357
5357
  * @public
5358
5358
  */
5359
- GeoSpatialColumnGroup?: GeoSpatialColumnGroup;
5359
+ GeoSpatialColumnGroup?: GeoSpatialColumnGroup | undefined;
5360
5360
  }
5361
5361
  /**
5362
5362
  * <p>A structure describing the name, data type, and geographic role of the columns.</p>
@@ -5367,7 +5367,7 @@ export interface ColumnGroupColumnSchema {
5367
5367
  * <p>The name of the column group's column schema.</p>
5368
5368
  * @public
5369
5369
  */
5370
- Name?: string;
5370
+ Name?: string | undefined;
5371
5371
  }
5372
5372
  /**
5373
5373
  * <p>The column group schema.</p>
@@ -5378,12 +5378,12 @@ export interface ColumnGroupSchema {
5378
5378
  * <p>The name of the column group schema.</p>
5379
5379
  * @public
5380
5380
  */
5381
- Name?: string;
5381
+ Name?: string | undefined;
5382
5382
  /**
5383
5383
  * <p>A structure containing the list of schemas for column group columns.</p>
5384
5384
  * @public
5385
5385
  */
5386
- ColumnGroupColumnSchemaList?: ColumnGroupColumnSchema[];
5386
+ ColumnGroupColumnSchemaList?: ColumnGroupColumnSchema[] | undefined;
5387
5387
  }
5388
5388
  /**
5389
5389
  * <p>A rule defined to grant access on one or more restricted columns.
@@ -5399,12 +5399,12 @@ export interface ColumnLevelPermissionRule {
5399
5399
  * <p>An array of Amazon Resource Names (ARNs) for Amazon QuickSight users or groups.</p>
5400
5400
  * @public
5401
5401
  */
5402
- Principals?: string[];
5402
+ Principals?: string[] | undefined;
5403
5403
  /**
5404
5404
  * <p>An array of column names.</p>
5405
5405
  * @public
5406
5406
  */
5407
- ColumnNames?: string[];
5407
+ ColumnNames?: string[] | undefined;
5408
5408
  }
5409
5409
  /**
5410
5410
  * @public
@@ -5428,17 +5428,17 @@ export interface ColumnSchema {
5428
5428
  * <p>The name of the column schema.</p>
5429
5429
  * @public
5430
5430
  */
5431
- Name?: string;
5431
+ Name?: string | undefined;
5432
5432
  /**
5433
5433
  * <p>The data type of the column schema.</p>
5434
5434
  * @public
5435
5435
  */
5436
- DataType?: string;
5436
+ DataType?: string | undefined;
5437
5437
  /**
5438
5438
  * <p>The geographic role of the column schema.</p>
5439
5439
  * @public
5440
5440
  */
5441
- GeographicRole?: string;
5441
+ GeographicRole?: string | undefined;
5442
5442
  }
5443
5443
  /**
5444
5444
  * @public
@@ -5472,12 +5472,12 @@ export interface ColumnTag {
5472
5472
  * <p>A geospatial role for a column.</p>
5473
5473
  * @public
5474
5474
  */
5475
- ColumnGeographicRole?: GeoSpatialDataRole;
5475
+ ColumnGeographicRole?: GeoSpatialDataRole | undefined;
5476
5476
  /**
5477
5477
  * <p>A description for a column.</p>
5478
5478
  * @public
5479
5479
  */
5480
- ColumnDescription?: ColumnDescription;
5480
+ ColumnDescription?: ColumnDescription | undefined;
5481
5481
  }
5482
5482
  /**
5483
5483
  * @public
@@ -5512,17 +5512,17 @@ export interface ComparativeOrder {
5512
5512
  * <p>The ordering type for a column. Valid values for this structure are <code>GREATER_IS_BETTER</code>, <code>LESSER_IS_BETTER</code> and <code>SPECIFIED</code>.</p>
5513
5513
  * @public
5514
5514
  */
5515
- UseOrdering?: ColumnOrderingType;
5515
+ UseOrdering?: ColumnOrderingType | undefined;
5516
5516
  /**
5517
5517
  * <p>The list of columns to be used in the ordering.</p>
5518
5518
  * @public
5519
5519
  */
5520
- SpecifedOrder?: string[];
5520
+ SpecifedOrder?: string[] | undefined;
5521
5521
  /**
5522
5522
  * <p>The treat of undefined specified values. Valid values for this structure are <code>LEAST</code> and <code>MOST</code>.</p>
5523
5523
  * @public
5524
5524
  */
5525
- TreatUndefinedSpecifiedValues?: UndefinedSpecifiedValueType;
5525
+ TreatUndefinedSpecifiedValues?: UndefinedSpecifiedValueType | undefined;
5526
5526
  }
5527
5527
  /**
5528
5528
  * <p>A resource is already in a state that indicates an operation is happening that must complete
@@ -5532,8 +5532,8 @@ export interface ComparativeOrder {
5532
5532
  export declare class ConcurrentUpdatingException extends __BaseException {
5533
5533
  readonly name: "ConcurrentUpdatingException";
5534
5534
  readonly $fault: "server";
5535
- Message?: string;
5536
- RequestId?: string;
5535
+ Message?: string | undefined;
5536
+ RequestId?: string | undefined;
5537
5537
  /**
5538
5538
  * @internal
5539
5539
  */
@@ -5552,7 +5552,7 @@ export interface CreateAccountCustomizationRequest {
5552
5552
  * <p>The Amazon QuickSight namespace that you want to add customizations to.</p>
5553
5553
  * @public
5554
5554
  */
5555
- Namespace?: string;
5555
+ Namespace?: string | undefined;
5556
5556
  /**
5557
5557
  * <p>The Amazon QuickSight customizations you're adding in the current Amazon Web Services Region. You can add
5558
5558
  * these to an Amazon Web Services account and a QuickSight namespace. </p>
@@ -5569,7 +5569,7 @@ export interface CreateAccountCustomizationRequest {
5569
5569
  * <p>A list of the tags that you want to attach to this resource.</p>
5570
5570
  * @public
5571
5571
  */
5572
- Tags?: Tag[];
5572
+ Tags?: Tag[] | undefined;
5573
5573
  }
5574
5574
  /**
5575
5575
  * @public
@@ -5579,32 +5579,32 @@ export interface CreateAccountCustomizationResponse {
5579
5579
  * <p>The Amazon Resource Name (ARN) for the customization that you created for this Amazon Web Services account.</p>
5580
5580
  * @public
5581
5581
  */
5582
- Arn?: string;
5582
+ Arn?: string | undefined;
5583
5583
  /**
5584
5584
  * <p>The ID for the Amazon Web Services account that you want to customize Amazon QuickSight for.</p>
5585
5585
  * @public
5586
5586
  */
5587
- AwsAccountId?: string;
5587
+ AwsAccountId?: string | undefined;
5588
5588
  /**
5589
5589
  * <p>The namespace associated with the customization you're creating. </p>
5590
5590
  * @public
5591
5591
  */
5592
- Namespace?: string;
5592
+ Namespace?: string | undefined;
5593
5593
  /**
5594
5594
  * <p>The Amazon QuickSight customizations you're adding in the current Amazon Web Services Region. </p>
5595
5595
  * @public
5596
5596
  */
5597
- AccountCustomization?: AccountCustomization;
5597
+ AccountCustomization?: AccountCustomization | undefined;
5598
5598
  /**
5599
5599
  * <p>The Amazon Web Services request ID for this operation.</p>
5600
5600
  * @public
5601
5601
  */
5602
- RequestId?: string;
5602
+ RequestId?: string | undefined;
5603
5603
  /**
5604
5604
  * <p>The HTTP status of the request.</p>
5605
5605
  * @public
5606
5606
  */
5607
- Status?: number;
5607
+ Status?: number | undefined;
5608
5608
  }
5609
5609
  /**
5610
5610
  * <p>This resource is currently unavailable.</p>
@@ -5613,17 +5613,17 @@ export interface CreateAccountCustomizationResponse {
5613
5613
  export declare class ResourceUnavailableException extends __BaseException {
5614
5614
  readonly name: "ResourceUnavailableException";
5615
5615
  readonly $fault: "server";
5616
- Message?: string;
5616
+ Message?: string | undefined;
5617
5617
  /**
5618
5618
  * <p>The resource type for this request.</p>
5619
5619
  * @public
5620
5620
  */
5621
- ResourceType?: ExceptionResourceType;
5621
+ ResourceType?: ExceptionResourceType | undefined;
5622
5622
  /**
5623
5623
  * <p>The Amazon Web Services request ID for this request.</p>
5624
5624
  * @public
5625
5625
  */
5626
- RequestId?: string;
5626
+ RequestId?: string | undefined;
5627
5627
  /**
5628
5628
  * @internal
5629
5629
  */
@@ -5663,7 +5663,7 @@ export interface CreateAccountSubscriptionRequest {
5663
5663
  * </ul>
5664
5664
  * @public
5665
5665
  */
5666
- Edition?: Edition;
5666
+ Edition?: Edition | undefined;
5667
5667
  /**
5668
5668
  * <p>The method that you want to use to authenticate your Amazon QuickSight account.</p>
5669
5669
  * <p>If you choose <code>ACTIVE_DIRECTORY</code>, provide an <code>ActiveDirectoryName</code>
@@ -5693,86 +5693,86 @@ export interface CreateAccountSubscriptionRequest {
5693
5693
  * <p>The name of your Active Directory. This field is required if <code>ACTIVE_DIRECTORY</code> is the selected authentication method of the new Amazon QuickSight account.</p>
5694
5694
  * @public
5695
5695
  */
5696
- ActiveDirectoryName?: string;
5696
+ ActiveDirectoryName?: string | undefined;
5697
5697
  /**
5698
5698
  * <p>The realm of the Active Directory that is associated with your Amazon QuickSight account. This field is required if <code>ACTIVE_DIRECTORY</code> is the selected authentication method of the new Amazon QuickSight account.</p>
5699
5699
  * @public
5700
5700
  */
5701
- Realm?: string;
5701
+ Realm?: string | undefined;
5702
5702
  /**
5703
5703
  * <p>The ID of the Active Directory that is associated with your Amazon QuickSight account.</p>
5704
5704
  * @public
5705
5705
  */
5706
- DirectoryId?: string;
5706
+ DirectoryId?: string | undefined;
5707
5707
  /**
5708
5708
  * <p>The admin group associated with your Active Directory or IAM Identity Center account. Either this field or the <code>AdminProGroup</code> field is required if <code>ACTIVE_DIRECTORY</code> or <code>IAM_IDENTITY_CENTER</code> is the selected authentication method of the new Amazon QuickSight account.</p>
5709
5709
  * <p>For more information about using IAM Identity Center in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html">Using IAM Identity Center with Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight User Guide. For more information about using Active Directory in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html">Using Active Directory with Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight User Guide.</p>
5710
5710
  * @public
5711
5711
  */
5712
- AdminGroup?: string[];
5712
+ AdminGroup?: string[] | undefined;
5713
5713
  /**
5714
5714
  * <p>The author group associated with your Active Directory or IAM Identity Center account.</p>
5715
5715
  * <p>For more information about using IAM Identity Center in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html">Using IAM Identity Center with Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight User Guide. For more information about using Active Directory in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html">Using Active Directory with Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight User Guide.</p>
5716
5716
  * @public
5717
5717
  */
5718
- AuthorGroup?: string[];
5718
+ AuthorGroup?: string[] | undefined;
5719
5719
  /**
5720
5720
  * <p>The reader group associated with your Active Directory or IAM Identity Center account.</p>
5721
5721
  * <p>For more information about using IAM Identity Center in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html">Using IAM Identity Center with Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight User Guide. For more information about using Active Directory in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html">Using Active Directory with Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight User Guide.</p>
5722
5722
  * @public
5723
5723
  */
5724
- ReaderGroup?: string[];
5724
+ ReaderGroup?: string[] | undefined;
5725
5725
  /**
5726
5726
  * <p>The admin pro group associated with your Active Directory or IAM Identity Center account. Either this field or the <code>AdminGroup</code> field is required if <code>ACTIVE_DIRECTORY</code> or <code>IAM_IDENTITY_CENTER</code> is the selected authentication method of the new Amazon QuickSight account.</p>
5727
5727
  * <p>For more information about using IAM Identity Center in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html">Using IAM Identity Center with Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight User Guide. For more information about using Active Directory in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html">Using Active Directory with Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight User Guide.</p>
5728
5728
  * @public
5729
5729
  */
5730
- AdminProGroup?: string[];
5730
+ AdminProGroup?: string[] | undefined;
5731
5731
  /**
5732
5732
  * <p>The author pro group associated with your Active Directory or IAM Identity Center account.</p>
5733
5733
  * <p>For more information about using IAM Identity Center in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html">Using IAM Identity Center with Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight User Guide. For more information about using Active Directory in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html">Using Active Directory with Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight User Guide.</p>
5734
5734
  * @public
5735
5735
  */
5736
- AuthorProGroup?: string[];
5736
+ AuthorProGroup?: string[] | undefined;
5737
5737
  /**
5738
5738
  * <p>The reader pro group associated with your Active Directory or IAM Identity Center account.</p>
5739
5739
  * <p>For more information about using IAM Identity Center in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html">Using IAM Identity Center with Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight User Guide. For more information about using Active Directory in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html">Using Active Directory with Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight User Guide.</p>
5740
5740
  * @public
5741
5741
  */
5742
- ReaderProGroup?: string[];
5742
+ ReaderProGroup?: string[] | undefined;
5743
5743
  /**
5744
5744
  * <p>The first name of the author of the Amazon QuickSight account to use for future
5745
5745
  * communications. This field is required if <code>ENTERPPRISE_AND_Q</code> is the selected
5746
5746
  * edition of the new Amazon QuickSight account.</p>
5747
5747
  * @public
5748
5748
  */
5749
- FirstName?: string;
5749
+ FirstName?: string | undefined;
5750
5750
  /**
5751
5751
  * <p>The last name of the author of the Amazon QuickSight account to use for future
5752
5752
  * communications. This field is required if <code>ENTERPPRISE_AND_Q</code> is the selected
5753
5753
  * edition of the new Amazon QuickSight account.</p>
5754
5754
  * @public
5755
5755
  */
5756
- LastName?: string;
5756
+ LastName?: string | undefined;
5757
5757
  /**
5758
5758
  * <p>The email address of the author of the Amazon QuickSight account to use for future
5759
5759
  * communications. This field is required if <code>ENTERPPRISE_AND_Q</code> is the selected
5760
5760
  * edition of the new Amazon QuickSight account.</p>
5761
5761
  * @public
5762
5762
  */
5763
- EmailAddress?: string;
5763
+ EmailAddress?: string | undefined;
5764
5764
  /**
5765
5765
  * <p>A 10-digit phone number for the author of the Amazon QuickSight account to use for
5766
5766
  * future communications. This field is required if <code>ENTERPPRISE_AND_Q</code> is the
5767
5767
  * selected edition of the new Amazon QuickSight account.</p>
5768
5768
  * @public
5769
5769
  */
5770
- ContactNumber?: string;
5770
+ ContactNumber?: string | undefined;
5771
5771
  /**
5772
5772
  * <p>The Amazon Resource Name (ARN) for the IAM Identity Center instance.</p>
5773
5773
  * @public
5774
5774
  */
5775
- IAMIdentityCenterInstanceArn?: string;
5775
+ IAMIdentityCenterInstanceArn?: string | undefined;
5776
5776
  }
5777
5777
  /**
5778
5778
  * <p>A <code>SignupResponse</code> object that contains a summary of a newly created account.</p>
@@ -5784,24 +5784,24 @@ export interface SignupResponse {
5784
5784
  * authentication method.</p>
5785
5785
  * @public
5786
5786
  */
5787
- IAMUser?: boolean;
5787
+ IAMUser?: boolean | undefined;
5788
5788
  /**
5789
5789
  * <p>The user login name for your Amazon QuickSight account.</p>
5790
5790
  * @public
5791
5791
  */
5792
- userLoginName?: string;
5792
+ userLoginName?: string | undefined;
5793
5793
  /**
5794
5794
  * <p>The name of your Amazon QuickSight account.</p>
5795
5795
  * @public
5796
5796
  */
5797
- accountName?: string;
5797
+ accountName?: string | undefined;
5798
5798
  /**
5799
5799
  * <p>The type of Active Directory that is being used to authenticate the Amazon QuickSight
5800
5800
  * account. Valid values are <code>SIMPLE_AD</code>, <code>AD_CONNECTOR</code>, and
5801
5801
  * <code>MICROSOFT_AD</code>.</p>
5802
5802
  * @public
5803
5803
  */
5804
- directoryType?: string;
5804
+ directoryType?: string | undefined;
5805
5805
  }
5806
5806
  /**
5807
5807
  * @public
@@ -5811,17 +5811,17 @@ export interface CreateAccountSubscriptionResponse {
5811
5811
  * <p>A <code>SignupResponse</code> object that returns information about a newly created Amazon QuickSight account.</p>
5812
5812
  * @public
5813
5813
  */
5814
- SignupResponse?: SignupResponse;
5814
+ SignupResponse?: SignupResponse | undefined;
5815
5815
  /**
5816
5816
  * <p>The HTTP status of the request.</p>
5817
5817
  * @public
5818
5818
  */
5819
- Status?: number;
5819
+ Status?: number | undefined;
5820
5820
  /**
5821
5821
  * <p>The Amazon Web Services request ID for this operation.</p>
5822
5822
  * @public
5823
5823
  */
5824
- RequestId?: string;
5824
+ RequestId?: string | undefined;
5825
5825
  }
5826
5826
  /**
5827
5827
  * <p>One or more preconditions aren't met.</p>
@@ -5830,12 +5830,12 @@ export interface CreateAccountSubscriptionResponse {
5830
5830
  export declare class PreconditionNotMetException extends __BaseException {
5831
5831
  readonly name: "PreconditionNotMetException";
5832
5832
  readonly $fault: "client";
5833
- Message?: string;
5833
+ Message?: string | undefined;
5834
5834
  /**
5835
5835
  * <p>The Amazon Web Services request ID for this request.</p>
5836
5836
  * @public
5837
5837
  */
5838
- RequestId?: string;
5838
+ RequestId?: string | undefined;
5839
5839
  /**
5840
5840
  * @internal
5841
5841
  */
@@ -5914,22 +5914,22 @@ export interface _Parameters {
5914
5914
  * <p>The parameters that have a data type of string.</p>
5915
5915
  * @public
5916
5916
  */
5917
- StringParameters?: StringParameter[];
5917
+ StringParameters?: StringParameter[] | undefined;
5918
5918
  /**
5919
5919
  * <p>The parameters that have a data type of integer.</p>
5920
5920
  * @public
5921
5921
  */
5922
- IntegerParameters?: IntegerParameter[];
5922
+ IntegerParameters?: IntegerParameter[] | undefined;
5923
5923
  /**
5924
5924
  * <p>The parameters that have a data type of decimal.</p>
5925
5925
  * @public
5926
5926
  */
5927
- DecimalParameters?: DecimalParameter[];
5927
+ DecimalParameters?: DecimalParameter[] | undefined;
5928
5928
  /**
5929
5929
  * <p>The parameters that have a data type of date-time.</p>
5930
5930
  * @public
5931
5931
  */
5932
- DateTimeParameters?: DateTimeParameter[];
5932
+ DateTimeParameters?: DateTimeParameter[] | undefined;
5933
5933
  }
5934
5934
  /**
5935
5935
  * <p>Permission for the resource.</p>
@@ -6010,7 +6010,7 @@ export interface CreateAnalysisRequest {
6010
6010
  * any parameter type, and some parameters might accept multiple values. </p>
6011
6011
  * @public
6012
6012
  */
6013
- Parameters?: _Parameters;
6013
+ Parameters?: _Parameters | undefined;
6014
6014
  /**
6015
6015
  * <p>A structure that describes the principals and the resource-level permissions on an
6016
6016
  * analysis. You can use the <code>Permissions</code> structure to grant permissions by
@@ -6019,7 +6019,7 @@ export interface CreateAnalysisRequest {
6019
6019
  * <p>To specify no permissions, omit <code>Permissions</code>.</p>
6020
6020
  * @public
6021
6021
  */
6022
- Permissions?: ResourcePermission[];
6022
+ Permissions?: ResourcePermission[] | undefined;
6023
6023
  /**
6024
6024
  * <p>A source entity to use for the analysis that you're creating. This metadata structure
6025
6025
  * contains details that describe a source template and one or more datasets.</p>
@@ -6027,19 +6027,19 @@ export interface CreateAnalysisRequest {
6027
6027
  * order for the request to be valid.</p>
6028
6028
  * @public
6029
6029
  */
6030
- SourceEntity?: AnalysisSourceEntity;
6030
+ SourceEntity?: AnalysisSourceEntity | undefined;
6031
6031
  /**
6032
6032
  * <p>The ARN for the theme to apply to the analysis that you're creating. To see the theme
6033
6033
  * in the Amazon QuickSight console, make sure that you have access to it.</p>
6034
6034
  * @public
6035
6035
  */
6036
- ThemeArn?: string;
6036
+ ThemeArn?: string | undefined;
6037
6037
  /**
6038
6038
  * <p>Contains a map of the key-value pairs for the resource tag or tags assigned to the
6039
6039
  * analysis.</p>
6040
6040
  * @public
6041
6041
  */
6042
- Tags?: Tag[];
6042
+ Tags?: Tag[] | undefined;
6043
6043
  /**
6044
6044
  * <p>The definition of an analysis.</p>
6045
6045
  * <p>A definition is the data model of all features in a Dashboard, Template, or Analysis.</p>
@@ -6047,17 +6047,17 @@ export interface CreateAnalysisRequest {
6047
6047
  * order for the request to be valid.</p>
6048
6048
  * @public
6049
6049
  */
6050
- Definition?: AnalysisDefinition;
6050
+ Definition?: AnalysisDefinition | undefined;
6051
6051
  /**
6052
6052
  * <p>The option to relax the validation needed to create an analysis with definition objects. This skips the validation step for specific errors.</p>
6053
6053
  * @public
6054
6054
  */
6055
- ValidationStrategy?: ValidationStrategy;
6055
+ ValidationStrategy?: ValidationStrategy | undefined;
6056
6056
  /**
6057
6057
  * <p>When you create the analysis, Amazon QuickSight adds the analysis to these folders.</p>
6058
6058
  * @public
6059
6059
  */
6060
- FolderArns?: string[];
6060
+ FolderArns?: string[] | undefined;
6061
6061
  }
6062
6062
  /**
6063
6063
  * @public
@@ -6067,27 +6067,27 @@ export interface CreateAnalysisResponse {
6067
6067
  * <p>The ARN for the analysis.</p>
6068
6068
  * @public
6069
6069
  */
6070
- Arn?: string;
6070
+ Arn?: string | undefined;
6071
6071
  /**
6072
6072
  * <p>The ID of the analysis.</p>
6073
6073
  * @public
6074
6074
  */
6075
- AnalysisId?: string;
6075
+ AnalysisId?: string | undefined;
6076
6076
  /**
6077
6077
  * <p>The status of the creation of the analysis. </p>
6078
6078
  * @public
6079
6079
  */
6080
- CreationStatus?: ResourceStatus;
6080
+ CreationStatus?: ResourceStatus | undefined;
6081
6081
  /**
6082
6082
  * <p>The HTTP status of the request.</p>
6083
6083
  * @public
6084
6084
  */
6085
- Status?: number;
6085
+ Status?: number | undefined;
6086
6086
  /**
6087
6087
  * <p>The Amazon Web Services request ID for this operation.</p>
6088
6088
  * @public
6089
6089
  */
6090
- RequestId?: string;
6090
+ RequestId?: string | undefined;
6091
6091
  }
6092
6092
  /**
6093
6093
  * <p>A limit is exceeded.</p>
@@ -6096,17 +6096,17 @@ export interface CreateAnalysisResponse {
6096
6096
  export declare class LimitExceededException extends __BaseException {
6097
6097
  readonly name: "LimitExceededException";
6098
6098
  readonly $fault: "client";
6099
- Message?: string;
6099
+ Message?: string | undefined;
6100
6100
  /**
6101
6101
  * <p>Limit exceeded.</p>
6102
6102
  * @public
6103
6103
  */
6104
- ResourceType?: ExceptionResourceType;
6104
+ ResourceType?: ExceptionResourceType | undefined;
6105
6105
  /**
6106
6106
  * <p>The Amazon Web Services request ID for this request.</p>
6107
6107
  * @public
6108
6108
  */
6109
- RequestId?: string;
6109
+ RequestId?: string | undefined;
6110
6110
  /**
6111
6111
  * @internal
6112
6112
  */
@@ -6122,12 +6122,12 @@ export declare class LimitExceededException extends __BaseException {
6122
6122
  export declare class UnsupportedUserEditionException extends __BaseException {
6123
6123
  readonly name: "UnsupportedUserEditionException";
6124
6124
  readonly $fault: "client";
6125
- Message?: string;
6125
+ Message?: string | undefined;
6126
6126
  /**
6127
6127
  * <p>The Amazon Web Services request ID for this request.</p>
6128
6128
  * @public
6129
6129
  */
6130
- RequestId?: string;
6130
+ RequestId?: string | undefined;
6131
6131
  /**
6132
6132
  * @internal
6133
6133
  */
@@ -6154,7 +6154,7 @@ export interface DataPointDrillUpDownOption {
6154
6154
  * <p>The status of the drill down options of data points.</p>
6155
6155
  * @public
6156
6156
  */
6157
- AvailabilityStatus?: DashboardBehavior;
6157
+ AvailabilityStatus?: DashboardBehavior | undefined;
6158
6158
  }
6159
6159
  /**
6160
6160
  * <p>The data point menu options of a dashboard.</p>
@@ -6165,7 +6165,7 @@ export interface DataPointMenuLabelOption {
6165
6165
  * <p>The status of the data point menu options.</p>
6166
6166
  * @public
6167
6167
  */
6168
- AvailabilityStatus?: DashboardBehavior;
6168
+ AvailabilityStatus?: DashboardBehavior | undefined;
6169
6169
  }
6170
6170
  /**
6171
6171
  * <p>The data point tooltip options.</p>
@@ -6176,7 +6176,7 @@ export interface DataPointTooltipOption {
6176
6176
  * <p>The status of the data point tool tip options.</p>
6177
6177
  * @public
6178
6178
  */
6179
- AvailabilityStatus?: DashboardBehavior;
6179
+ AvailabilityStatus?: DashboardBehavior | undefined;
6180
6180
  }
6181
6181
  /**
6182
6182
  * <p>Export to .csv option.</p>
@@ -6187,7 +6187,7 @@ export interface ExportToCSVOption {
6187
6187
  * <p>Availability status.</p>
6188
6188
  * @public
6189
6189
  */
6190
- AvailabilityStatus?: DashboardBehavior;
6190
+ AvailabilityStatus?: DashboardBehavior | undefined;
6191
6191
  }
6192
6192
  /**
6193
6193
  * <p>Determines whether or not hidden fields are visible on exported dashbaords.</p>
@@ -6198,7 +6198,7 @@ export interface ExportWithHiddenFieldsOption {
6198
6198
  * <p>The status of the export with hidden fields options.</p>
6199
6199
  * @public
6200
6200
  */
6201
- AvailabilityStatus?: DashboardBehavior;
6201
+ AvailabilityStatus?: DashboardBehavior | undefined;
6202
6202
  }
6203
6203
  /**
6204
6204
  * @public
@@ -6221,7 +6221,7 @@ export interface SheetControlsOption {
6221
6221
  * <p>Visibility state.</p>
6222
6222
  * @public
6223
6223
  */
6224
- VisibilityState?: DashboardUIState;
6224
+ VisibilityState?: DashboardUIState | undefined;
6225
6225
  }
6226
6226
  /**
6227
6227
  * <p>The sheet layout maximization options of a dashbaord.</p>
@@ -6232,7 +6232,7 @@ export interface SheetLayoutElementMaximizationOption {
6232
6232
  * <p>The status of the sheet layout maximization options of a dashbaord.</p>
6233
6233
  * @public
6234
6234
  */
6235
- AvailabilityStatus?: DashboardBehavior;
6235
+ AvailabilityStatus?: DashboardBehavior | undefined;
6236
6236
  }
6237
6237
  /**
6238
6238
  * <p>The axis sort options for a visual.</p>
@@ -6243,7 +6243,7 @@ export interface VisualAxisSortOption {
6243
6243
  * <p>The availaiblity status of a visual's axis sort options.</p>
6244
6244
  * @public
6245
6245
  */
6246
- AvailabilityStatus?: DashboardBehavior;
6246
+ AvailabilityStatus?: DashboardBehavior | undefined;
6247
6247
  }
6248
6248
  /**
6249
6249
  * <p>Determines if hidden fields are included in an exported dashboard.</p>
@@ -6254,7 +6254,7 @@ export interface ExportHiddenFieldsOption {
6254
6254
  * <p>The status of the export hidden fields options of a dashbaord.</p>
6255
6255
  * @public
6256
6256
  */
6257
- AvailabilityStatus?: DashboardBehavior;
6257
+ AvailabilityStatus?: DashboardBehavior | undefined;
6258
6258
  }
6259
6259
  /**
6260
6260
  * <p>The visual publish options of a visual in a dashboard</p>
@@ -6265,7 +6265,7 @@ export interface DashboardVisualPublishOptions {
6265
6265
  * <p>Determines if hidden fields are included in an exported dashboard.</p>
6266
6266
  * @public
6267
6267
  */
6268
- ExportHiddenFieldsOption?: ExportHiddenFieldsOption;
6268
+ ExportHiddenFieldsOption?: ExportHiddenFieldsOption | undefined;
6269
6269
  }
6270
6270
  /**
6271
6271
  * <p>Dashboard publish options.</p>
@@ -6276,59 +6276,59 @@ export interface DashboardPublishOptions {
6276
6276
  * <p>Ad hoc (one-time) filtering option.</p>
6277
6277
  * @public
6278
6278
  */
6279
- AdHocFilteringOption?: AdHocFilteringOption;
6279
+ AdHocFilteringOption?: AdHocFilteringOption | undefined;
6280
6280
  /**
6281
6281
  * <p>Export to .csv option.</p>
6282
6282
  * @public
6283
6283
  */
6284
- ExportToCSVOption?: ExportToCSVOption;
6284
+ ExportToCSVOption?: ExportToCSVOption | undefined;
6285
6285
  /**
6286
6286
  * <p>Sheet controls option.</p>
6287
6287
  * @public
6288
6288
  */
6289
- SheetControlsOption?: SheetControlsOption;
6289
+ SheetControlsOption?: SheetControlsOption | undefined;
6290
6290
  /**
6291
6291
  * @deprecated
6292
6292
  *
6293
6293
  * <p>The visual publish options of a visual in a dashboard.</p>
6294
6294
  * @public
6295
6295
  */
6296
- VisualPublishOptions?: DashboardVisualPublishOptions;
6296
+ VisualPublishOptions?: DashboardVisualPublishOptions | undefined;
6297
6297
  /**
6298
6298
  * <p>The sheet layout maximization options of a dashbaord.</p>
6299
6299
  * @public
6300
6300
  */
6301
- SheetLayoutElementMaximizationOption?: SheetLayoutElementMaximizationOption;
6301
+ SheetLayoutElementMaximizationOption?: SheetLayoutElementMaximizationOption | undefined;
6302
6302
  /**
6303
6303
  * <p>The menu options of a visual in a dashboard.</p>
6304
6304
  * @public
6305
6305
  */
6306
- VisualMenuOption?: VisualMenuOption;
6306
+ VisualMenuOption?: VisualMenuOption | undefined;
6307
6307
  /**
6308
6308
  * <p>The axis sort options of a dashboard.</p>
6309
6309
  * @public
6310
6310
  */
6311
- VisualAxisSortOption?: VisualAxisSortOption;
6311
+ VisualAxisSortOption?: VisualAxisSortOption | undefined;
6312
6312
  /**
6313
6313
  * <p>Determines if hidden fields are exported with a dashboard.</p>
6314
6314
  * @public
6315
6315
  */
6316
- ExportWithHiddenFieldsOption?: ExportWithHiddenFieldsOption;
6316
+ ExportWithHiddenFieldsOption?: ExportWithHiddenFieldsOption | undefined;
6317
6317
  /**
6318
6318
  * <p>The drill-down options of data points in a dashboard.</p>
6319
6319
  * @public
6320
6320
  */
6321
- DataPointDrillUpDownOption?: DataPointDrillUpDownOption;
6321
+ DataPointDrillUpDownOption?: DataPointDrillUpDownOption | undefined;
6322
6322
  /**
6323
6323
  * <p>The data point menu label options of a dashboard.</p>
6324
6324
  * @public
6325
6325
  */
6326
- DataPointMenuLabelOption?: DataPointMenuLabelOption;
6326
+ DataPointMenuLabelOption?: DataPointMenuLabelOption | undefined;
6327
6327
  /**
6328
6328
  * <p>The data point tool tip options of a dashboard.</p>
6329
6329
  * @public
6330
6330
  */
6331
- DataPointTooltipOption?: DataPointTooltipOption;
6331
+ DataPointTooltipOption?: DataPointTooltipOption | undefined;
6332
6332
  }
6333
6333
  /**
6334
6334
  * <p>The contents of a dashboard.</p>
@@ -6345,41 +6345,41 @@ export interface DashboardVersionDefinition {
6345
6345
  * <p>An array of sheet definitions for a dashboard.</p>
6346
6346
  * @public
6347
6347
  */
6348
- Sheets?: SheetDefinition[];
6348
+ Sheets?: SheetDefinition[] | undefined;
6349
6349
  /**
6350
6350
  * <p>An array of calculated field definitions for the dashboard.</p>
6351
6351
  * @public
6352
6352
  */
6353
- CalculatedFields?: CalculatedField[];
6353
+ CalculatedFields?: CalculatedField[] | undefined;
6354
6354
  /**
6355
6355
  * <p>The parameter declarations for a dashboard. Parameters are named variables that can transfer a value for use by an action or an object.</p>
6356
6356
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/parameters-in-quicksight.html">Parameters in Amazon QuickSight</a> in the <i>Amazon QuickSight User Guide</i>.</p>
6357
6357
  * @public
6358
6358
  */
6359
- ParameterDeclarations?: ParameterDeclaration[];
6359
+ ParameterDeclarations?: ParameterDeclaration[] | undefined;
6360
6360
  /**
6361
6361
  * <p>The filter definitions for a dashboard.</p>
6362
6362
  * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/adding-a-filter.html">Filtering Data in Amazon QuickSight</a> in the <i>Amazon QuickSight User Guide</i>.</p>
6363
6363
  * @public
6364
6364
  */
6365
- FilterGroups?: FilterGroup[];
6365
+ FilterGroups?: FilterGroup[] | undefined;
6366
6366
  /**
6367
6367
  * <p>An array of dashboard-level column configurations. Column configurations
6368
6368
  * are used to set the default formatting for a column that
6369
6369
  * is used throughout a dashboard. </p>
6370
6370
  * @public
6371
6371
  */
6372
- ColumnConfigurations?: ColumnConfiguration[];
6372
+ ColumnConfigurations?: ColumnConfiguration[] | undefined;
6373
6373
  /**
6374
6374
  * <p>The configuration for default analysis settings.</p>
6375
6375
  * @public
6376
6376
  */
6377
- AnalysisDefaults?: AnalysisDefaults;
6377
+ AnalysisDefaults?: AnalysisDefaults | undefined;
6378
6378
  /**
6379
6379
  * <p>An array of option definitions for a dashboard.</p>
6380
6380
  * @public
6381
6381
  */
6382
- Options?: AssetOptions;
6382
+ Options?: AssetOptions | undefined;
6383
6383
  }
6384
6384
  /**
6385
6385
  * <p>A structure that contains the configuration of a shareable link to the dashboard.</p>
@@ -6390,7 +6390,7 @@ export interface LinkSharingConfiguration {
6390
6390
  * <p>A structure that contains the permissions of a shareable link.</p>
6391
6391
  * @public
6392
6392
  */
6393
- Permissions?: ResourcePermission[];
6393
+ Permissions?: ResourcePermission[] | undefined;
6394
6394
  }
6395
6395
  /**
6396
6396
  * <p>Dashboard source template.</p>
@@ -6417,7 +6417,7 @@ export interface DashboardSourceEntity {
6417
6417
  * <p>Source template.</p>
6418
6418
  * @public
6419
6419
  */
6420
- SourceTemplate?: DashboardSourceTemplate;
6420
+ SourceTemplate?: DashboardSourceTemplate | undefined;
6421
6421
  }
6422
6422
  /**
6423
6423
  * @public
@@ -6444,7 +6444,7 @@ export interface CreateDashboardRequest {
6444
6444
  * might accept multiple values. </p>
6445
6445
  * @public
6446
6446
  */
6447
- Parameters?: _Parameters;
6447
+ Parameters?: _Parameters | undefined;
6448
6448
  /**
6449
6449
  * <p>A structure that contains the permissions of the dashboard. You can use this structure
6450
6450
  * for granting permissions by providing a list of IAM action information for each
@@ -6452,7 +6452,7 @@ export interface CreateDashboardRequest {
6452
6452
  * <p>To specify no permissions, omit the permissions list.</p>
6453
6453
  * @public
6454
6454
  */
6455
- Permissions?: ResourcePermission[];
6455
+ Permissions?: ResourcePermission[] | undefined;
6456
6456
  /**
6457
6457
  * <p>The entity that you are using as a source when you create the dashboard. In
6458
6458
  * <code>SourceEntity</code>, you specify the type of object you're using as source. You
@@ -6472,18 +6472,18 @@ export interface CreateDashboardRequest {
6472
6472
  * order for the request to be valid.</p>
6473
6473
  * @public
6474
6474
  */
6475
- SourceEntity?: DashboardSourceEntity;
6475
+ SourceEntity?: DashboardSourceEntity | undefined;
6476
6476
  /**
6477
6477
  * <p>Contains a map of the key-value pairs for the resource tag or tags assigned to the
6478
6478
  * dashboard.</p>
6479
6479
  * @public
6480
6480
  */
6481
- Tags?: Tag[];
6481
+ Tags?: Tag[] | undefined;
6482
6482
  /**
6483
6483
  * <p>A description for the first version of the dashboard being created.</p>
6484
6484
  * @public
6485
6485
  */
6486
- VersionDescription?: string;
6486
+ VersionDescription?: string | undefined;
6487
6487
  /**
6488
6488
  * <p>Options for publishing the dashboard when you create it:</p>
6489
6489
  * <ul>
@@ -6511,7 +6511,7 @@ export interface CreateDashboardRequest {
6511
6511
  * </ul>
6512
6512
  * @public
6513
6513
  */
6514
- DashboardPublishOptions?: DashboardPublishOptions;
6514
+ DashboardPublishOptions?: DashboardPublishOptions | undefined;
6515
6515
  /**
6516
6516
  * <p>The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. If
6517
6517
  * you add a value for this field, it overrides the value that is used in the source
@@ -6519,7 +6519,7 @@ export interface CreateDashboardRequest {
6519
6519
  * dashboard.</p>
6520
6520
  * @public
6521
6521
  */
6522
- ThemeArn?: string;
6522
+ ThemeArn?: string | undefined;
6523
6523
  /**
6524
6524
  * <p>The definition of a dashboard.</p>
6525
6525
  * <p>A definition is the data model of all features in a Dashboard, Template, or Analysis.</p>
@@ -6527,27 +6527,27 @@ export interface CreateDashboardRequest {
6527
6527
  * order for the request to be valid.</p>
6528
6528
  * @public
6529
6529
  */
6530
- Definition?: DashboardVersionDefinition;
6530
+ Definition?: DashboardVersionDefinition | undefined;
6531
6531
  /**
6532
6532
  * <p>The option to relax the validation needed to create a dashboard with definition objects. This option skips the validation step for specific errors.</p>
6533
6533
  * @public
6534
6534
  */
6535
- ValidationStrategy?: ValidationStrategy;
6535
+ ValidationStrategy?: ValidationStrategy | undefined;
6536
6536
  /**
6537
6537
  * <p>When you create the dashboard, Amazon QuickSight adds the dashboard to these folders.</p>
6538
6538
  * @public
6539
6539
  */
6540
- FolderArns?: string[];
6540
+ FolderArns?: string[] | undefined;
6541
6541
  /**
6542
6542
  * <p>A structure that contains the permissions of a shareable link to the dashboard.</p>
6543
6543
  * @public
6544
6544
  */
6545
- LinkSharingConfiguration?: LinkSharingConfiguration;
6545
+ LinkSharingConfiguration?: LinkSharingConfiguration | undefined;
6546
6546
  /**
6547
6547
  * <p>A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.</p>
6548
6548
  * @public
6549
6549
  */
6550
- LinkEntities?: string[];
6550
+ LinkEntities?: string[] | undefined;
6551
6551
  }
6552
6552
  /**
6553
6553
  * @public
@@ -6557,33 +6557,33 @@ export interface CreateDashboardResponse {
6557
6557
  * <p>The ARN of the dashboard.</p>
6558
6558
  * @public
6559
6559
  */
6560
- Arn?: string;
6560
+ Arn?: string | undefined;
6561
6561
  /**
6562
6562
  * <p>The ARN of the dashboard, including the version number of the first version that is
6563
6563
  * created.</p>
6564
6564
  * @public
6565
6565
  */
6566
- VersionArn?: string;
6566
+ VersionArn?: string | undefined;
6567
6567
  /**
6568
6568
  * <p>The ID for the dashboard.</p>
6569
6569
  * @public
6570
6570
  */
6571
- DashboardId?: string;
6571
+ DashboardId?: string | undefined;
6572
6572
  /**
6573
6573
  * <p>The status of the dashboard creation request.</p>
6574
6574
  * @public
6575
6575
  */
6576
- CreationStatus?: ResourceStatus;
6576
+ CreationStatus?: ResourceStatus | undefined;
6577
6577
  /**
6578
6578
  * <p>The HTTP status of the request.</p>
6579
6579
  * @public
6580
6580
  */
6581
- Status?: number;
6581
+ Status?: number | undefined;
6582
6582
  /**
6583
6583
  * <p>The Amazon Web Services request ID for this operation.</p>
6584
6584
  * @public
6585
6585
  */
6586
- RequestId?: string;
6586
+ RequestId?: string | undefined;
6587
6587
  }
6588
6588
  /**
6589
6589
  * <p>The default values of a date time parameter.</p>
@@ -6594,7 +6594,7 @@ export interface DateTimeDatasetParameterDefaultValues {
6594
6594
  * <p>A list of static default values for a given date time parameter.</p>
6595
6595
  * @public
6596
6596
  */
6597
- StaticValues?: Date[];
6597
+ StaticValues?: Date[] | undefined;
6598
6598
  }
6599
6599
  /**
6600
6600
  * @public
@@ -6632,12 +6632,12 @@ export interface DateTimeDatasetParameter {
6632
6632
  * <p>The time granularity of the date time parameter.</p>
6633
6633
  * @public
6634
6634
  */
6635
- TimeGranularity?: TimeGranularity;
6635
+ TimeGranularity?: TimeGranularity | undefined;
6636
6636
  /**
6637
6637
  * <p>A list of default values for a given date time parameter. This structure only accepts static values.</p>
6638
6638
  * @public
6639
6639
  */
6640
- DefaultValues?: DateTimeDatasetParameterDefaultValues;
6640
+ DefaultValues?: DateTimeDatasetParameterDefaultValues | undefined;
6641
6641
  }
6642
6642
  /**
6643
6643
  * <p>The default values of a decimal parameter.</p>
@@ -6648,7 +6648,7 @@ export interface DecimalDatasetParameterDefaultValues {
6648
6648
  * <p>A list of static default values for a given decimal parameter.</p>
6649
6649
  * @public
6650
6650
  */
6651
- StaticValues?: number[];
6651
+ StaticValues?: number[] | undefined;
6652
6652
  }
6653
6653
  /**
6654
6654
  * <p>A decimal parameter for a dataset.</p>
@@ -6674,7 +6674,7 @@ export interface DecimalDatasetParameter {
6674
6674
  * <p>A list of default values for a given decimal parameter. This structure only accepts static values.</p>
6675
6675
  * @public
6676
6676
  */
6677
- DefaultValues?: DecimalDatasetParameterDefaultValues;
6677
+ DefaultValues?: DecimalDatasetParameterDefaultValues | undefined;
6678
6678
  }
6679
6679
  /**
6680
6680
  * <p>The default values of an integer parameter.</p>
@@ -6685,7 +6685,7 @@ export interface IntegerDatasetParameterDefaultValues {
6685
6685
  * <p>A list of static default values for a given integer parameter.</p>
6686
6686
  * @public
6687
6687
  */
6688
- StaticValues?: number[];
6688
+ StaticValues?: number[] | undefined;
6689
6689
  }
6690
6690
  /**
6691
6691
  * <p>An integer parameter for a dataset.</p>
@@ -6711,7 +6711,7 @@ export interface IntegerDatasetParameter {
6711
6711
  * <p>A list of default values for a given integer parameter. This structure only accepts static values.</p>
6712
6712
  * @public
6713
6713
  */
6714
- DefaultValues?: IntegerDatasetParameterDefaultValues;
6714
+ DefaultValues?: IntegerDatasetParameterDefaultValues | undefined;
6715
6715
  }
6716
6716
  /**
6717
6717
  * <p>The default values of a string parameter.</p>
@@ -6722,7 +6722,7 @@ export interface StringDatasetParameterDefaultValues {
6722
6722
  * <p>A list of static default values for a given string parameter.</p>
6723
6723
  * @public
6724
6724
  */
6725
- StaticValues?: string[];
6725
+ StaticValues?: string[] | undefined;
6726
6726
  }
6727
6727
  /**
6728
6728
  * <p>A string parameter for a dataset.</p>
@@ -6748,7 +6748,7 @@ export interface StringDatasetParameter {
6748
6748
  * <p>A list of default values for a given string dataset parameter type. This structure only accepts static values.</p>
6749
6749
  * @public
6750
6750
  */
6751
- DefaultValues?: StringDatasetParameterDefaultValues;
6751
+ DefaultValues?: StringDatasetParameterDefaultValues | undefined;
6752
6752
  }
6753
6753
  /**
6754
6754
  * <p>A parameter that is created in a dataset. The parameter can be a string, integer, decimal, or datetime data type.</p>
@@ -6759,22 +6759,22 @@ export interface DatasetParameter {
6759
6759
  * <p>A string parameter that is created in the dataset.</p>
6760
6760
  * @public
6761
6761
  */
6762
- StringDatasetParameter?: StringDatasetParameter;
6762
+ StringDatasetParameter?: StringDatasetParameter | undefined;
6763
6763
  /**
6764
6764
  * <p>A decimal parameter that is created in the dataset.</p>
6765
6765
  * @public
6766
6766
  */
6767
- DecimalDatasetParameter?: DecimalDatasetParameter;
6767
+ DecimalDatasetParameter?: DecimalDatasetParameter | undefined;
6768
6768
  /**
6769
6769
  * <p>An integer parameter that is created in the dataset.</p>
6770
6770
  * @public
6771
6771
  */
6772
- IntegerDatasetParameter?: IntegerDatasetParameter;
6772
+ IntegerDatasetParameter?: IntegerDatasetParameter | undefined;
6773
6773
  /**
6774
6774
  * <p>A date time parameter that is created in the dataset.</p>
6775
6775
  * @public
6776
6776
  */
6777
- DateTimeDatasetParameter?: DateTimeDatasetParameter;
6777
+ DateTimeDatasetParameter?: DateTimeDatasetParameter | undefined;
6778
6778
  }
6779
6779
  /**
6780
6780
  * <p>The usage configuration to apply to child datasets that reference this dataset as a source.</p>
@@ -6785,12 +6785,12 @@ export interface DataSetUsageConfiguration {
6785
6785
  * <p>An option that controls whether a child dataset of a direct query can use this dataset as a source.</p>
6786
6786
  * @public
6787
6787
  */
6788
- DisableUseAsDirectQuerySource?: boolean;
6788
+ DisableUseAsDirectQuerySource?: boolean | undefined;
6789
6789
  /**
6790
6790
  * <p>An option that controls whether a child dataset that's stored in QuickSight can use this dataset as a source.</p>
6791
6791
  * @public
6792
6792
  */
6793
- DisableUseAsImportedSource?: boolean;
6793
+ DisableUseAsImportedSource?: boolean | undefined;
6794
6794
  }
6795
6795
  /**
6796
6796
  * <p>A FieldFolder element is a folder that contains fields and nested subfolders.</p>
@@ -6801,12 +6801,12 @@ export interface FieldFolder {
6801
6801
  * <p>The description for a field folder.</p>
6802
6802
  * @public
6803
6803
  */
6804
- description?: string;
6804
+ description?: string | undefined;
6805
6805
  /**
6806
6806
  * <p>A folder has a list of columns. A column can only be in one folder.</p>
6807
6807
  * @public
6808
6808
  */
6809
- columns?: string[];
6809
+ columns?: string[] | undefined;
6810
6810
  }
6811
6811
  /**
6812
6812
  * @public
@@ -6841,22 +6841,22 @@ export interface NewDefaultValues {
6841
6841
  * <p>A list of static default values for a given string parameter.</p>
6842
6842
  * @public
6843
6843
  */
6844
- StringStaticValues?: string[];
6844
+ StringStaticValues?: string[] | undefined;
6845
6845
  /**
6846
6846
  * <p>A list of static default values for a given decimal parameter.</p>
6847
6847
  * @public
6848
6848
  */
6849
- DecimalStaticValues?: number[];
6849
+ DecimalStaticValues?: number[] | undefined;
6850
6850
  /**
6851
6851
  * <p>A list of static default values for a given date time parameter.</p>
6852
6852
  * @public
6853
6853
  */
6854
- DateTimeStaticValues?: Date[];
6854
+ DateTimeStaticValues?: Date[] | undefined;
6855
6855
  /**
6856
6856
  * <p>A list of static default values for a given integer parameter.</p>
6857
6857
  * @public
6858
6858
  */
6859
- IntegerStaticValues?: number[];
6859
+ IntegerStaticValues?: number[] | undefined;
6860
6860
  }
6861
6861
  /**
6862
6862
  * <p>A transform operation that overrides the dataset parameter values that are defined in another dataset.</p>
@@ -6872,12 +6872,12 @@ export interface OverrideDatasetParameterOperation {
6872
6872
  * <p>The new name for the parameter.</p>
6873
6873
  * @public
6874
6874
  */
6875
- NewParameterName?: string;
6875
+ NewParameterName?: string | undefined;
6876
6876
  /**
6877
6877
  * <p>The new default values for the parameter.</p>
6878
6878
  * @public
6879
6879
  */
6880
- NewDefaultValues?: NewDefaultValues;
6880
+ NewDefaultValues?: NewDefaultValues | undefined;
6881
6881
  }
6882
6882
  /**
6883
6883
  * <p>A transform operation that projects columns. Operations that come after a projection
@@ -7111,7 +7111,7 @@ export interface JoinKeyProperties {
7111
7111
  * a join key. This is used by Amazon QuickSight to optimize query performance.</p>
7112
7112
  * @public
7113
7113
  */
7114
- UniqueKey?: boolean;
7114
+ UniqueKey?: boolean | undefined;
7115
7115
  }
7116
7116
  /**
7117
7117
  * @public
@@ -7146,12 +7146,12 @@ export interface JoinInstruction {
7146
7146
  * <p>Join key properties of the left operand.</p>
7147
7147
  * @public
7148
7148
  */
7149
- LeftJoinKeyProperties?: JoinKeyProperties;
7149
+ LeftJoinKeyProperties?: JoinKeyProperties | undefined;
7150
7150
  /**
7151
7151
  * <p>Join key properties of the right operand.</p>
7152
7152
  * @public
7153
7153
  */
7154
- RightJoinKeyProperties?: JoinKeyProperties;
7154
+ RightJoinKeyProperties?: JoinKeyProperties | undefined;
7155
7155
  /**
7156
7156
  * <p>The type of join that it is.</p>
7157
7157
  * @public
@@ -7173,17 +7173,17 @@ export interface LogicalTableSource {
7173
7173
  * <p>Specifies the result of a join of two logical tables.</p>
7174
7174
  * @public
7175
7175
  */
7176
- JoinInstruction?: JoinInstruction;
7176
+ JoinInstruction?: JoinInstruction | undefined;
7177
7177
  /**
7178
7178
  * <p>Physical table ID.</p>
7179
7179
  * @public
7180
7180
  */
7181
- PhysicalTableId?: string;
7181
+ PhysicalTableId?: string | undefined;
7182
7182
  /**
7183
7183
  * <p>The Amazon Resource Number (ARN) of the parent dataset.</p>
7184
7184
  * @public
7185
7185
  */
7186
- DataSetArn?: string;
7186
+ DataSetArn?: string | undefined;
7187
7187
  }
7188
7188
  /**
7189
7189
  * <p>A <i>logical table</i> is a unit that joins and that data
@@ -7202,7 +7202,7 @@ export interface LogicalTable {
7202
7202
  * <p>Transform operations that act on this logical table. For this structure to be valid, only one of the attributes can be non-null. </p>
7203
7203
  * @public
7204
7204
  */
7205
- DataTransforms?: TransformOperation[];
7205
+ DataTransforms?: TransformOperation[] | undefined;
7206
7206
  /**
7207
7207
  * <p>Source of this logical table.</p>
7208
7208
  * @public
@@ -7245,7 +7245,7 @@ export interface InputColumn {
7245
7245
  * <p>The sub data type of the column. Sub types are only available for decimal columns that are part of a SPICE dataset.</p>
7246
7246
  * @public
7247
7247
  */
7248
- SubType?: ColumnDataSubType;
7248
+ SubType?: ColumnDataSubType | undefined;
7249
7249
  }
7250
7250
  /**
7251
7251
  * <p>A physical table type built from the results of the custom SQL query.</p>
@@ -7271,7 +7271,7 @@ export interface CustomSql {
7271
7271
  * <p>The column schema from the SQL query result set.</p>
7272
7272
  * @public
7273
7273
  */
7274
- Columns?: InputColumn[];
7274
+ Columns?: InputColumn[] | undefined;
7275
7275
  }
7276
7276
  /**
7277
7277
  * <p>A physical table type for relational data sources.</p>
@@ -7287,12 +7287,12 @@ export interface RelationalTable {
7287
7287
  * <p>The catalog associated with a table.</p>
7288
7288
  * @public
7289
7289
  */
7290
- Catalog?: string;
7290
+ Catalog?: string | undefined;
7291
7291
  /**
7292
7292
  * <p>The schema name. This name applies to certain relational database engines.</p>
7293
7293
  * @public
7294
7294
  */
7295
- Schema?: string;
7295
+ Schema?: string | undefined;
7296
7296
  /**
7297
7297
  * <p>The name of the relational table.</p>
7298
7298
  * @public
@@ -7341,27 +7341,27 @@ export interface UploadSettings {
7341
7341
  * <p>File format.</p>
7342
7342
  * @public
7343
7343
  */
7344
- Format?: FileFormat;
7344
+ Format?: FileFormat | undefined;
7345
7345
  /**
7346
7346
  * <p>A row number to start reading data from.</p>
7347
7347
  * @public
7348
7348
  */
7349
- StartFromRow?: number;
7349
+ StartFromRow?: number | undefined;
7350
7350
  /**
7351
7351
  * <p>Whether the file has a header row, or the files each have a header row.</p>
7352
7352
  * @public
7353
7353
  */
7354
- ContainsHeader?: boolean;
7354
+ ContainsHeader?: boolean | undefined;
7355
7355
  /**
7356
7356
  * <p>Text qualifier.</p>
7357
7357
  * @public
7358
7358
  */
7359
- TextQualifier?: TextQualifier;
7359
+ TextQualifier?: TextQualifier | undefined;
7360
7360
  /**
7361
7361
  * <p>The delimiter between values in the file.</p>
7362
7362
  * @public
7363
7363
  */
7364
- Delimiter?: string;
7364
+ Delimiter?: string | undefined;
7365
7365
  }
7366
7366
  /**
7367
7367
  * <p>A physical table type for an S3 data source.</p>
@@ -7377,7 +7377,7 @@ export interface S3Source {
7377
7377
  * <p>Information about the format for the S3 source file or files.</p>
7378
7378
  * @public
7379
7379
  */
7380
- UploadSettings?: UploadSettings;
7380
+ UploadSettings?: UploadSettings | undefined;
7381
7381
  /**
7382
7382
  * <p>A physical table type for an S3 data source.</p>
7383
7383
  * <note>