@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.
- package/dist-types/models/models_0.d.ts +525 -525
- package/dist-types/models/models_1.d.ts +743 -743
- package/dist-types/models/models_2.d.ts +530 -530
- package/dist-types/models/models_3.d.ts +796 -796
- package/dist-types/models/models_4.d.ts +659 -659
- package/dist-types/ts3.4/models/models_0.d.ts +565 -525
- package/dist-types/ts3.4/models/models_1.d.ts +763 -743
- package/dist-types/ts3.4/models/models_2.d.ts +556 -530
- package/dist-types/ts3.4/models/models_3.d.ts +804 -796
- package/dist-types/ts3.4/models/models_4.d.ts +673 -659
- package/package.json +7 -7
|
@@ -71,80 +71,82 @@ import {
|
|
|
71
71
|
} from "./models_1";
|
|
72
72
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
73
73
|
export interface TreeMapConfiguration {
|
|
74
|
-
FieldWells?: TreeMapFieldWells;
|
|
75
|
-
SortConfiguration?: TreeMapSortConfiguration;
|
|
76
|
-
GroupLabelOptions?: ChartAxisLabelOptions;
|
|
77
|
-
SizeLabelOptions?: ChartAxisLabelOptions;
|
|
78
|
-
ColorLabelOptions?: ChartAxisLabelOptions;
|
|
79
|
-
ColorScale?: ColorScale;
|
|
80
|
-
Legend?: LegendOptions;
|
|
81
|
-
DataLabels?: DataLabelOptions;
|
|
82
|
-
Tooltip?: TooltipOptions;
|
|
83
|
-
Interactions?: VisualInteractionOptions;
|
|
74
|
+
FieldWells?: TreeMapFieldWells | undefined;
|
|
75
|
+
SortConfiguration?: TreeMapSortConfiguration | undefined;
|
|
76
|
+
GroupLabelOptions?: ChartAxisLabelOptions | undefined;
|
|
77
|
+
SizeLabelOptions?: ChartAxisLabelOptions | undefined;
|
|
78
|
+
ColorLabelOptions?: ChartAxisLabelOptions | undefined;
|
|
79
|
+
ColorScale?: ColorScale | undefined;
|
|
80
|
+
Legend?: LegendOptions | undefined;
|
|
81
|
+
DataLabels?: DataLabelOptions | undefined;
|
|
82
|
+
Tooltip?: TooltipOptions | undefined;
|
|
83
|
+
Interactions?: VisualInteractionOptions | undefined;
|
|
84
84
|
}
|
|
85
85
|
export interface TreeMapVisual {
|
|
86
86
|
VisualId: string | undefined;
|
|
87
|
-
Title?: VisualTitleLabelOptions;
|
|
88
|
-
Subtitle?: VisualSubtitleLabelOptions;
|
|
89
|
-
ChartConfiguration?: TreeMapConfiguration;
|
|
90
|
-
Actions?: VisualCustomAction[];
|
|
91
|
-
ColumnHierarchies?: ColumnHierarchy[];
|
|
87
|
+
Title?: VisualTitleLabelOptions | undefined;
|
|
88
|
+
Subtitle?: VisualSubtitleLabelOptions | undefined;
|
|
89
|
+
ChartConfiguration?: TreeMapConfiguration | undefined;
|
|
90
|
+
Actions?: VisualCustomAction[] | undefined;
|
|
91
|
+
ColumnHierarchies?: ColumnHierarchy[] | undefined;
|
|
92
92
|
}
|
|
93
93
|
export interface WaterfallChartGroupColorConfiguration {
|
|
94
|
-
PositiveBarColor?: string;
|
|
95
|
-
NegativeBarColor?: string;
|
|
96
|
-
TotalBarColor?: string;
|
|
94
|
+
PositiveBarColor?: string | undefined;
|
|
95
|
+
NegativeBarColor?: string | undefined;
|
|
96
|
+
TotalBarColor?: string | undefined;
|
|
97
97
|
}
|
|
98
98
|
export interface WaterfallChartColorConfiguration {
|
|
99
|
-
GroupColorConfiguration?: WaterfallChartGroupColorConfiguration;
|
|
99
|
+
GroupColorConfiguration?: WaterfallChartGroupColorConfiguration | undefined;
|
|
100
100
|
}
|
|
101
101
|
export interface WaterfallChartAggregatedFieldWells {
|
|
102
|
-
Categories?: DimensionField[];
|
|
103
|
-
Values?: MeasureField[];
|
|
104
|
-
Breakdowns?: DimensionField[];
|
|
102
|
+
Categories?: DimensionField[] | undefined;
|
|
103
|
+
Values?: MeasureField[] | undefined;
|
|
104
|
+
Breakdowns?: DimensionField[] | undefined;
|
|
105
105
|
}
|
|
106
106
|
export interface WaterfallChartFieldWells {
|
|
107
|
-
WaterfallChartAggregatedFieldWells?:
|
|
107
|
+
WaterfallChartAggregatedFieldWells?:
|
|
108
|
+
| WaterfallChartAggregatedFieldWells
|
|
109
|
+
| undefined;
|
|
108
110
|
}
|
|
109
111
|
export interface WaterfallChartSortConfiguration {
|
|
110
|
-
CategorySort?: FieldSortOptions[];
|
|
111
|
-
BreakdownItemsLimit?: ItemsLimitConfiguration;
|
|
112
|
+
CategorySort?: FieldSortOptions[] | undefined;
|
|
113
|
+
BreakdownItemsLimit?: ItemsLimitConfiguration | undefined;
|
|
112
114
|
}
|
|
113
115
|
export interface WaterfallChartOptions {
|
|
114
|
-
TotalBarLabel?: string;
|
|
116
|
+
TotalBarLabel?: string | undefined;
|
|
115
117
|
}
|
|
116
118
|
export interface WaterfallChartConfiguration {
|
|
117
|
-
FieldWells?: WaterfallChartFieldWells;
|
|
118
|
-
SortConfiguration?: WaterfallChartSortConfiguration;
|
|
119
|
-
WaterfallChartOptions?: WaterfallChartOptions;
|
|
120
|
-
CategoryAxisLabelOptions?: ChartAxisLabelOptions;
|
|
121
|
-
CategoryAxisDisplayOptions?: AxisDisplayOptions;
|
|
122
|
-
PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
123
|
-
PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
|
|
124
|
-
Legend?: LegendOptions;
|
|
125
|
-
DataLabels?: DataLabelOptions;
|
|
126
|
-
VisualPalette?: VisualPalette;
|
|
127
|
-
ColorConfiguration?: WaterfallChartColorConfiguration;
|
|
128
|
-
Interactions?: VisualInteractionOptions;
|
|
119
|
+
FieldWells?: WaterfallChartFieldWells | undefined;
|
|
120
|
+
SortConfiguration?: WaterfallChartSortConfiguration | undefined;
|
|
121
|
+
WaterfallChartOptions?: WaterfallChartOptions | undefined;
|
|
122
|
+
CategoryAxisLabelOptions?: ChartAxisLabelOptions | undefined;
|
|
123
|
+
CategoryAxisDisplayOptions?: AxisDisplayOptions | undefined;
|
|
124
|
+
PrimaryYAxisLabelOptions?: ChartAxisLabelOptions | undefined;
|
|
125
|
+
PrimaryYAxisDisplayOptions?: AxisDisplayOptions | undefined;
|
|
126
|
+
Legend?: LegendOptions | undefined;
|
|
127
|
+
DataLabels?: DataLabelOptions | undefined;
|
|
128
|
+
VisualPalette?: VisualPalette | undefined;
|
|
129
|
+
ColorConfiguration?: WaterfallChartColorConfiguration | undefined;
|
|
130
|
+
Interactions?: VisualInteractionOptions | undefined;
|
|
129
131
|
}
|
|
130
132
|
export interface WaterfallVisual {
|
|
131
133
|
VisualId: string | undefined;
|
|
132
|
-
Title?: VisualTitleLabelOptions;
|
|
133
|
-
Subtitle?: VisualSubtitleLabelOptions;
|
|
134
|
-
ChartConfiguration?: WaterfallChartConfiguration;
|
|
135
|
-
Actions?: VisualCustomAction[];
|
|
136
|
-
ColumnHierarchies?: ColumnHierarchy[];
|
|
134
|
+
Title?: VisualTitleLabelOptions | undefined;
|
|
135
|
+
Subtitle?: VisualSubtitleLabelOptions | undefined;
|
|
136
|
+
ChartConfiguration?: WaterfallChartConfiguration | undefined;
|
|
137
|
+
Actions?: VisualCustomAction[] | undefined;
|
|
138
|
+
ColumnHierarchies?: ColumnHierarchy[] | undefined;
|
|
137
139
|
}
|
|
138
140
|
export interface WordCloudAggregatedFieldWells {
|
|
139
|
-
GroupBy?: DimensionField[];
|
|
140
|
-
Size?: MeasureField[];
|
|
141
|
+
GroupBy?: DimensionField[] | undefined;
|
|
142
|
+
Size?: MeasureField[] | undefined;
|
|
141
143
|
}
|
|
142
144
|
export interface WordCloudFieldWells {
|
|
143
|
-
WordCloudAggregatedFieldWells?: WordCloudAggregatedFieldWells;
|
|
145
|
+
WordCloudAggregatedFieldWells?: WordCloudAggregatedFieldWells | undefined;
|
|
144
146
|
}
|
|
145
147
|
export interface WordCloudSortConfiguration {
|
|
146
|
-
CategoryItemsLimit?: ItemsLimitConfiguration;
|
|
147
|
-
CategorySort?: FieldSortOptions[];
|
|
148
|
+
CategoryItemsLimit?: ItemsLimitConfiguration | undefined;
|
|
149
|
+
CategorySort?: FieldSortOptions[] | undefined;
|
|
148
150
|
}
|
|
149
151
|
export declare const WordCloudCloudLayout: {
|
|
150
152
|
readonly FLUID: "FLUID";
|
|
@@ -179,76 +181,76 @@ export declare const WordCloudWordScaling: {
|
|
|
179
181
|
export type WordCloudWordScaling =
|
|
180
182
|
(typeof WordCloudWordScaling)[keyof typeof WordCloudWordScaling];
|
|
181
183
|
export interface WordCloudOptions {
|
|
182
|
-
WordOrientation?: WordCloudWordOrientation;
|
|
183
|
-
WordScaling?: WordCloudWordScaling;
|
|
184
|
-
CloudLayout?: WordCloudCloudLayout;
|
|
185
|
-
WordCasing?: WordCloudWordCasing;
|
|
186
|
-
WordPadding?: WordCloudWordPadding;
|
|
187
|
-
MaximumStringLength?: number;
|
|
184
|
+
WordOrientation?: WordCloudWordOrientation | undefined;
|
|
185
|
+
WordScaling?: WordCloudWordScaling | undefined;
|
|
186
|
+
CloudLayout?: WordCloudCloudLayout | undefined;
|
|
187
|
+
WordCasing?: WordCloudWordCasing | undefined;
|
|
188
|
+
WordPadding?: WordCloudWordPadding | undefined;
|
|
189
|
+
MaximumStringLength?: number | undefined;
|
|
188
190
|
}
|
|
189
191
|
export interface WordCloudChartConfiguration {
|
|
190
|
-
FieldWells?: WordCloudFieldWells;
|
|
191
|
-
SortConfiguration?: WordCloudSortConfiguration;
|
|
192
|
-
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
193
|
-
WordCloudOptions?: WordCloudOptions;
|
|
194
|
-
Interactions?: VisualInteractionOptions;
|
|
192
|
+
FieldWells?: WordCloudFieldWells | undefined;
|
|
193
|
+
SortConfiguration?: WordCloudSortConfiguration | undefined;
|
|
194
|
+
CategoryLabelOptions?: ChartAxisLabelOptions | undefined;
|
|
195
|
+
WordCloudOptions?: WordCloudOptions | undefined;
|
|
196
|
+
Interactions?: VisualInteractionOptions | undefined;
|
|
195
197
|
}
|
|
196
198
|
export interface WordCloudVisual {
|
|
197
199
|
VisualId: string | undefined;
|
|
198
|
-
Title?: VisualTitleLabelOptions;
|
|
199
|
-
Subtitle?: VisualSubtitleLabelOptions;
|
|
200
|
-
ChartConfiguration?: WordCloudChartConfiguration;
|
|
201
|
-
Actions?: VisualCustomAction[];
|
|
202
|
-
ColumnHierarchies?: ColumnHierarchy[];
|
|
200
|
+
Title?: VisualTitleLabelOptions | undefined;
|
|
201
|
+
Subtitle?: VisualSubtitleLabelOptions | undefined;
|
|
202
|
+
ChartConfiguration?: WordCloudChartConfiguration | undefined;
|
|
203
|
+
Actions?: VisualCustomAction[] | undefined;
|
|
204
|
+
ColumnHierarchies?: ColumnHierarchy[] | undefined;
|
|
203
205
|
}
|
|
204
206
|
export interface Visual {
|
|
205
|
-
TableVisual?: TableVisual;
|
|
206
|
-
PivotTableVisual?: PivotTableVisual;
|
|
207
|
-
BarChartVisual?: BarChartVisual;
|
|
208
|
-
KPIVisual?: KPIVisual;
|
|
209
|
-
PieChartVisual?: PieChartVisual;
|
|
210
|
-
GaugeChartVisual?: GaugeChartVisual;
|
|
211
|
-
LineChartVisual?: LineChartVisual;
|
|
212
|
-
HeatMapVisual?: HeatMapVisual;
|
|
213
|
-
TreeMapVisual?: TreeMapVisual;
|
|
214
|
-
GeospatialMapVisual?: GeospatialMapVisual;
|
|
215
|
-
FilledMapVisual?: FilledMapVisual;
|
|
216
|
-
FunnelChartVisual?: FunnelChartVisual;
|
|
217
|
-
ScatterPlotVisual?: ScatterPlotVisual;
|
|
218
|
-
ComboChartVisual?: ComboChartVisual;
|
|
219
|
-
BoxPlotVisual?: BoxPlotVisual;
|
|
220
|
-
WaterfallVisual?: WaterfallVisual;
|
|
221
|
-
HistogramVisual?: HistogramVisual;
|
|
222
|
-
WordCloudVisual?: WordCloudVisual;
|
|
223
|
-
InsightVisual?: InsightVisual;
|
|
224
|
-
SankeyDiagramVisual?: SankeyDiagramVisual;
|
|
225
|
-
CustomContentVisual?: CustomContentVisual;
|
|
226
|
-
EmptyVisual?: EmptyVisual;
|
|
227
|
-
RadarChartVisual?: RadarChartVisual;
|
|
207
|
+
TableVisual?: TableVisual | undefined;
|
|
208
|
+
PivotTableVisual?: PivotTableVisual | undefined;
|
|
209
|
+
BarChartVisual?: BarChartVisual | undefined;
|
|
210
|
+
KPIVisual?: KPIVisual | undefined;
|
|
211
|
+
PieChartVisual?: PieChartVisual | undefined;
|
|
212
|
+
GaugeChartVisual?: GaugeChartVisual | undefined;
|
|
213
|
+
LineChartVisual?: LineChartVisual | undefined;
|
|
214
|
+
HeatMapVisual?: HeatMapVisual | undefined;
|
|
215
|
+
TreeMapVisual?: TreeMapVisual | undefined;
|
|
216
|
+
GeospatialMapVisual?: GeospatialMapVisual | undefined;
|
|
217
|
+
FilledMapVisual?: FilledMapVisual | undefined;
|
|
218
|
+
FunnelChartVisual?: FunnelChartVisual | undefined;
|
|
219
|
+
ScatterPlotVisual?: ScatterPlotVisual | undefined;
|
|
220
|
+
ComboChartVisual?: ComboChartVisual | undefined;
|
|
221
|
+
BoxPlotVisual?: BoxPlotVisual | undefined;
|
|
222
|
+
WaterfallVisual?: WaterfallVisual | undefined;
|
|
223
|
+
HistogramVisual?: HistogramVisual | undefined;
|
|
224
|
+
WordCloudVisual?: WordCloudVisual | undefined;
|
|
225
|
+
InsightVisual?: InsightVisual | undefined;
|
|
226
|
+
SankeyDiagramVisual?: SankeyDiagramVisual | undefined;
|
|
227
|
+
CustomContentVisual?: CustomContentVisual | undefined;
|
|
228
|
+
EmptyVisual?: EmptyVisual | undefined;
|
|
229
|
+
RadarChartVisual?: RadarChartVisual | undefined;
|
|
228
230
|
}
|
|
229
231
|
export interface SheetDefinition {
|
|
230
232
|
SheetId: string | undefined;
|
|
231
|
-
Title?: string;
|
|
232
|
-
Description?: string;
|
|
233
|
-
Name?: string;
|
|
234
|
-
ParameterControls?: ParameterControl[];
|
|
235
|
-
FilterControls?: FilterControl[];
|
|
236
|
-
Visuals?: Visual[];
|
|
237
|
-
TextBoxes?: SheetTextBox[];
|
|
238
|
-
Layouts?: Layout[];
|
|
239
|
-
SheetControlLayouts?: SheetControlLayout[];
|
|
240
|
-
ContentType?: SheetContentType;
|
|
233
|
+
Title?: string | undefined;
|
|
234
|
+
Description?: string | undefined;
|
|
235
|
+
Name?: string | undefined;
|
|
236
|
+
ParameterControls?: ParameterControl[] | undefined;
|
|
237
|
+
FilterControls?: FilterControl[] | undefined;
|
|
238
|
+
Visuals?: Visual[] | undefined;
|
|
239
|
+
TextBoxes?: SheetTextBox[] | undefined;
|
|
240
|
+
Layouts?: Layout[] | undefined;
|
|
241
|
+
SheetControlLayouts?: SheetControlLayout[] | undefined;
|
|
242
|
+
ContentType?: SheetContentType | undefined;
|
|
241
243
|
}
|
|
242
244
|
export interface AnalysisDefinition {
|
|
243
245
|
DataSetIdentifierDeclarations: DataSetIdentifierDeclaration[] | undefined;
|
|
244
|
-
Sheets?: SheetDefinition[];
|
|
245
|
-
CalculatedFields?: CalculatedField[];
|
|
246
|
-
ParameterDeclarations?: ParameterDeclaration[];
|
|
247
|
-
FilterGroups?: FilterGroup[];
|
|
248
|
-
ColumnConfigurations?: ColumnConfiguration[];
|
|
249
|
-
AnalysisDefaults?: AnalysisDefaults;
|
|
250
|
-
Options?: AssetOptions;
|
|
251
|
-
QueryExecutionOptions?: QueryExecutionOptions;
|
|
246
|
+
Sheets?: SheetDefinition[] | undefined;
|
|
247
|
+
CalculatedFields?: CalculatedField[] | undefined;
|
|
248
|
+
ParameterDeclarations?: ParameterDeclaration[] | undefined;
|
|
249
|
+
FilterGroups?: FilterGroup[] | undefined;
|
|
250
|
+
ColumnConfigurations?: ColumnConfiguration[] | undefined;
|
|
251
|
+
AnalysisDefaults?: AnalysisDefaults | undefined;
|
|
252
|
+
Options?: AssetOptions | undefined;
|
|
253
|
+
QueryExecutionOptions?: QueryExecutionOptions | undefined;
|
|
252
254
|
}
|
|
253
255
|
export declare const AnalysisFilterAttribute: {
|
|
254
256
|
readonly ANALYSIS_NAME: "ANALYSIS_NAME";
|
|
@@ -268,9 +270,9 @@ export declare const FilterOperator: {
|
|
|
268
270
|
export type FilterOperator =
|
|
269
271
|
(typeof FilterOperator)[keyof typeof FilterOperator];
|
|
270
272
|
export interface AnalysisSearchFilter {
|
|
271
|
-
Operator?: FilterOperator;
|
|
272
|
-
Name?: AnalysisFilterAttribute;
|
|
273
|
-
Value?: string;
|
|
273
|
+
Operator?: FilterOperator | undefined;
|
|
274
|
+
Name?: AnalysisFilterAttribute | undefined;
|
|
275
|
+
Value?: string | undefined;
|
|
274
276
|
}
|
|
275
277
|
export interface DataSetReference {
|
|
276
278
|
DataSetPlaceholder: string | undefined;
|
|
@@ -281,24 +283,24 @@ export interface AnalysisSourceTemplate {
|
|
|
281
283
|
Arn: string | undefined;
|
|
282
284
|
}
|
|
283
285
|
export interface AnalysisSourceEntity {
|
|
284
|
-
SourceTemplate?: AnalysisSourceTemplate;
|
|
286
|
+
SourceTemplate?: AnalysisSourceTemplate | undefined;
|
|
285
287
|
}
|
|
286
288
|
export interface AnalysisSummary {
|
|
287
|
-
Arn?: string;
|
|
288
|
-
AnalysisId?: string;
|
|
289
|
-
Name?: string;
|
|
290
|
-
Status?: ResourceStatus;
|
|
291
|
-
CreatedTime?: Date;
|
|
292
|
-
LastUpdatedTime?: Date;
|
|
289
|
+
Arn?: string | undefined;
|
|
290
|
+
AnalysisId?: string | undefined;
|
|
291
|
+
Name?: string | undefined;
|
|
292
|
+
Status?: ResourceStatus | undefined;
|
|
293
|
+
CreatedTime?: Date | undefined;
|
|
294
|
+
LastUpdatedTime?: Date | undefined;
|
|
293
295
|
}
|
|
294
296
|
export declare const AnchorType: {
|
|
295
297
|
readonly TODAY: "TODAY";
|
|
296
298
|
};
|
|
297
299
|
export type AnchorType = (typeof AnchorType)[keyof typeof AnchorType];
|
|
298
300
|
export interface Anchor {
|
|
299
|
-
AnchorType?: AnchorType;
|
|
300
|
-
TimeGranularity?: TimeGranularity;
|
|
301
|
-
Offset?: number;
|
|
301
|
+
AnchorType?: AnchorType | undefined;
|
|
302
|
+
TimeGranularity?: TimeGranularity | undefined;
|
|
303
|
+
Offset?: number | undefined;
|
|
302
304
|
}
|
|
303
305
|
export declare const AnonymousUserDashboardEmbeddingConfigurationDisabledFeature: {
|
|
304
306
|
readonly SHARED_VIEW: "SHARED_VIEW";
|
|
@@ -314,13 +316,19 @@ export interface SharedViewConfigurations {
|
|
|
314
316
|
Enabled: boolean | undefined;
|
|
315
317
|
}
|
|
316
318
|
export interface AnonymousUserDashboardFeatureConfigurations {
|
|
317
|
-
SharedView?: SharedViewConfigurations;
|
|
319
|
+
SharedView?: SharedViewConfigurations | undefined;
|
|
318
320
|
}
|
|
319
321
|
export interface AnonymousUserDashboardEmbeddingConfiguration {
|
|
320
322
|
InitialDashboardId: string | undefined;
|
|
321
|
-
EnabledFeatures?:
|
|
322
|
-
|
|
323
|
-
|
|
323
|
+
EnabledFeatures?:
|
|
324
|
+
| AnonymousUserDashboardEmbeddingConfigurationEnabledFeature[]
|
|
325
|
+
| undefined;
|
|
326
|
+
DisabledFeatures?:
|
|
327
|
+
| AnonymousUserDashboardEmbeddingConfigurationDisabledFeature[]
|
|
328
|
+
| undefined;
|
|
329
|
+
FeatureConfigurations?:
|
|
330
|
+
| AnonymousUserDashboardFeatureConfigurations
|
|
331
|
+
| undefined;
|
|
324
332
|
}
|
|
325
333
|
export interface DashboardVisualId {
|
|
326
334
|
DashboardId: string | undefined;
|
|
@@ -337,10 +345,12 @@ export interface AnonymousUserQSearchBarEmbeddingConfiguration {
|
|
|
337
345
|
InitialTopicId: string | undefined;
|
|
338
346
|
}
|
|
339
347
|
export interface AnonymousUserEmbeddingExperienceConfiguration {
|
|
340
|
-
Dashboard?: AnonymousUserDashboardEmbeddingConfiguration;
|
|
341
|
-
DashboardVisual?:
|
|
342
|
-
|
|
343
|
-
|
|
348
|
+
Dashboard?: AnonymousUserDashboardEmbeddingConfiguration | undefined;
|
|
349
|
+
DashboardVisual?:
|
|
350
|
+
| AnonymousUserDashboardVisualEmbeddingConfiguration
|
|
351
|
+
| undefined;
|
|
352
|
+
QSearchBar?: AnonymousUserQSearchBarEmbeddingConfiguration | undefined;
|
|
353
|
+
GenerativeQnA?: AnonymousUserGenerativeQnAEmbeddingConfiguration | undefined;
|
|
344
354
|
}
|
|
345
355
|
export declare const SnapshotFileFormatType: {
|
|
346
356
|
readonly CSV: "CSV";
|
|
@@ -358,15 +368,15 @@ export type SnapshotFileSheetSelectionScope =
|
|
|
358
368
|
export interface SnapshotFileSheetSelection {
|
|
359
369
|
SheetId: string | undefined;
|
|
360
370
|
SelectionScope: SnapshotFileSheetSelectionScope | undefined;
|
|
361
|
-
VisualIds?: string[];
|
|
371
|
+
VisualIds?: string[] | undefined;
|
|
362
372
|
}
|
|
363
373
|
export interface SnapshotFile {
|
|
364
374
|
SheetSelections: SnapshotFileSheetSelection[] | undefined;
|
|
365
375
|
FormatType: SnapshotFileFormatType | undefined;
|
|
366
376
|
}
|
|
367
377
|
export interface SnapshotJobResultErrorInfo {
|
|
368
|
-
ErrorMessage?: string;
|
|
369
|
-
ErrorType?: string;
|
|
378
|
+
ErrorMessage?: string | undefined;
|
|
379
|
+
ErrorType?: string | undefined;
|
|
370
380
|
}
|
|
371
381
|
export interface S3BucketConfiguration {
|
|
372
382
|
BucketName: string | undefined;
|
|
@@ -377,16 +387,16 @@ export interface SnapshotS3DestinationConfiguration {
|
|
|
377
387
|
BucketConfiguration: S3BucketConfiguration | undefined;
|
|
378
388
|
}
|
|
379
389
|
export interface SnapshotJobS3Result {
|
|
380
|
-
S3DestinationConfiguration?: SnapshotS3DestinationConfiguration;
|
|
381
|
-
S3Uri?: string;
|
|
382
|
-
ErrorInfo?: SnapshotJobResultErrorInfo[];
|
|
390
|
+
S3DestinationConfiguration?: SnapshotS3DestinationConfiguration | undefined;
|
|
391
|
+
S3Uri?: string | undefined;
|
|
392
|
+
ErrorInfo?: SnapshotJobResultErrorInfo[] | undefined;
|
|
383
393
|
}
|
|
384
394
|
export interface SnapshotJobResultFileGroup {
|
|
385
|
-
Files?: SnapshotFile[];
|
|
386
|
-
S3Results?: SnapshotJobS3Result[];
|
|
395
|
+
Files?: SnapshotFile[] | undefined;
|
|
396
|
+
S3Results?: SnapshotJobS3Result[] | undefined;
|
|
387
397
|
}
|
|
388
398
|
export interface AnonymousUserSnapshotJobResult {
|
|
389
|
-
FileGroups?: SnapshotJobResultFileGroup[];
|
|
399
|
+
FileGroups?: SnapshotJobResultFileGroup[] | undefined;
|
|
390
400
|
}
|
|
391
401
|
export declare const AssetBundleExportJobAnalysisPropertyToOverride: {
|
|
392
402
|
readonly NAME: "Name";
|
|
@@ -463,7 +473,7 @@ export interface AssetBundleExportJobRefreshScheduleOverrideProperties {
|
|
|
463
473
|
| undefined;
|
|
464
474
|
}
|
|
465
475
|
export interface AssetBundleExportJobResourceIdOverrideConfiguration {
|
|
466
|
-
PrefixForAllResources?: boolean;
|
|
476
|
+
PrefixForAllResources?: boolean | undefined;
|
|
467
477
|
}
|
|
468
478
|
export declare const AssetBundleExportJobThemePropertyToOverride: {
|
|
469
479
|
readonly NAME: "Name";
|
|
@@ -486,15 +496,21 @@ export interface AssetBundleExportJobVPCConnectionOverrideProperties {
|
|
|
486
496
|
Properties: AssetBundleExportJobVPCConnectionPropertyToOverride[] | undefined;
|
|
487
497
|
}
|
|
488
498
|
export interface AssetBundleCloudFormationOverridePropertyConfiguration {
|
|
489
|
-
ResourceIdOverrideConfiguration?:
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
499
|
+
ResourceIdOverrideConfiguration?:
|
|
500
|
+
| AssetBundleExportJobResourceIdOverrideConfiguration
|
|
501
|
+
| undefined;
|
|
502
|
+
VPCConnections?:
|
|
503
|
+
| AssetBundleExportJobVPCConnectionOverrideProperties[]
|
|
504
|
+
| undefined;
|
|
505
|
+
RefreshSchedules?:
|
|
506
|
+
| AssetBundleExportJobRefreshScheduleOverrideProperties[]
|
|
507
|
+
| undefined;
|
|
508
|
+
DataSources?: AssetBundleExportJobDataSourceOverrideProperties[] | undefined;
|
|
509
|
+
DataSets?: AssetBundleExportJobDataSetOverrideProperties[] | undefined;
|
|
510
|
+
Themes?: AssetBundleExportJobThemeOverrideProperties[] | undefined;
|
|
511
|
+
Analyses?: AssetBundleExportJobAnalysisOverrideProperties[] | undefined;
|
|
512
|
+
Dashboards?: AssetBundleExportJobDashboardOverrideProperties[] | undefined;
|
|
513
|
+
Folders?: AssetBundleExportJobFolderOverrideProperties[] | undefined;
|
|
498
514
|
}
|
|
499
515
|
export declare const AssetBundleExportFormat: {
|
|
500
516
|
readonly CLOUDFORMATION_JSON: "CLOUDFORMATION_JSON";
|
|
@@ -503,9 +519,9 @@ export declare const AssetBundleExportFormat: {
|
|
|
503
519
|
export type AssetBundleExportFormat =
|
|
504
520
|
(typeof AssetBundleExportFormat)[keyof typeof AssetBundleExportFormat];
|
|
505
521
|
export interface AssetBundleExportJobError {
|
|
506
|
-
Arn?: string;
|
|
507
|
-
Type?: string;
|
|
508
|
-
Message?: string;
|
|
522
|
+
Arn?: string | undefined;
|
|
523
|
+
Type?: string | undefined;
|
|
524
|
+
Message?: string | undefined;
|
|
509
525
|
}
|
|
510
526
|
export declare const AssetBundleExportJobStatus: {
|
|
511
527
|
readonly FAILED: "FAILED";
|
|
@@ -516,21 +532,21 @@ export declare const AssetBundleExportJobStatus: {
|
|
|
516
532
|
export type AssetBundleExportJobStatus =
|
|
517
533
|
(typeof AssetBundleExportJobStatus)[keyof typeof AssetBundleExportJobStatus];
|
|
518
534
|
export interface AssetBundleExportJobSummary {
|
|
519
|
-
JobStatus?: AssetBundleExportJobStatus;
|
|
520
|
-
Arn?: string;
|
|
521
|
-
CreatedTime?: Date;
|
|
522
|
-
AssetBundleExportJobId?: string;
|
|
523
|
-
IncludeAllDependencies?: boolean;
|
|
524
|
-
ExportFormat?: AssetBundleExportFormat;
|
|
525
|
-
IncludePermissions?: boolean;
|
|
526
|
-
IncludeTags?: boolean;
|
|
535
|
+
JobStatus?: AssetBundleExportJobStatus | undefined;
|
|
536
|
+
Arn?: string | undefined;
|
|
537
|
+
CreatedTime?: Date | undefined;
|
|
538
|
+
AssetBundleExportJobId?: string | undefined;
|
|
539
|
+
IncludeAllDependencies?: boolean | undefined;
|
|
540
|
+
ExportFormat?: AssetBundleExportFormat | undefined;
|
|
541
|
+
IncludePermissions?: boolean | undefined;
|
|
542
|
+
IncludeTags?: boolean | undefined;
|
|
527
543
|
}
|
|
528
544
|
export interface AssetBundleExportJobValidationStrategy {
|
|
529
|
-
StrictModeForAllResources?: boolean;
|
|
545
|
+
StrictModeForAllResources?: boolean | undefined;
|
|
530
546
|
}
|
|
531
547
|
export interface AssetBundleExportJobWarning {
|
|
532
|
-
Arn?: string;
|
|
533
|
-
Message?: string;
|
|
548
|
+
Arn?: string | undefined;
|
|
549
|
+
Message?: string | undefined;
|
|
534
550
|
}
|
|
535
551
|
export declare const AssetBundleImportFailureAction: {
|
|
536
552
|
readonly DO_NOTHING: "DO_NOTHING";
|
|
@@ -540,7 +556,7 @@ export type AssetBundleImportFailureAction =
|
|
|
540
556
|
(typeof AssetBundleImportFailureAction)[keyof typeof AssetBundleImportFailureAction];
|
|
541
557
|
export interface AssetBundleImportJobAnalysisOverrideParameters {
|
|
542
558
|
AnalysisId: string | undefined;
|
|
543
|
-
Name?: string;
|
|
559
|
+
Name?: string | undefined;
|
|
544
560
|
}
|
|
545
561
|
export interface AssetBundleResourcePermissions {
|
|
546
562
|
Principals: string[] | undefined;
|
|
@@ -560,15 +576,17 @@ export interface AssetBundleImportJobAnalysisOverrideTags {
|
|
|
560
576
|
}
|
|
561
577
|
export interface AssetBundleImportJobDashboardOverrideParameters {
|
|
562
578
|
DashboardId: string | undefined;
|
|
563
|
-
Name?: string;
|
|
579
|
+
Name?: string | undefined;
|
|
564
580
|
}
|
|
565
581
|
export interface AssetBundleResourceLinkSharingConfiguration {
|
|
566
|
-
Permissions?: AssetBundleResourcePermissions;
|
|
582
|
+
Permissions?: AssetBundleResourcePermissions | undefined;
|
|
567
583
|
}
|
|
568
584
|
export interface AssetBundleImportJobDashboardOverridePermissions {
|
|
569
585
|
DashboardIds: string[] | undefined;
|
|
570
|
-
Permissions?: AssetBundleResourcePermissions;
|
|
571
|
-
LinkSharingConfiguration?:
|
|
586
|
+
Permissions?: AssetBundleResourcePermissions | undefined;
|
|
587
|
+
LinkSharingConfiguration?:
|
|
588
|
+
| AssetBundleResourceLinkSharingConfiguration
|
|
589
|
+
| undefined;
|
|
572
590
|
}
|
|
573
591
|
export interface AssetBundleImportJobDashboardOverrideTags {
|
|
574
592
|
DashboardIds: string[] | undefined;
|
|
@@ -576,7 +594,7 @@ export interface AssetBundleImportJobDashboardOverrideTags {
|
|
|
576
594
|
}
|
|
577
595
|
export interface AssetBundleImportJobDataSetOverrideParameters {
|
|
578
596
|
DataSetId: string | undefined;
|
|
579
|
-
Name?: string;
|
|
597
|
+
Name?: string | undefined;
|
|
580
598
|
}
|
|
581
599
|
export interface AssetBundleImportJobDataSetOverridePermissions {
|
|
582
600
|
DataSetIds: string[] | undefined;
|
|
@@ -591,12 +609,12 @@ export interface AssetBundleImportJobDataSourceCredentialPair {
|
|
|
591
609
|
Password: string | undefined;
|
|
592
610
|
}
|
|
593
611
|
export interface AssetBundleImportJobDataSourceCredentials {
|
|
594
|
-
CredentialPair?: AssetBundleImportJobDataSourceCredentialPair;
|
|
595
|
-
SecretArn?: string;
|
|
612
|
+
CredentialPair?: AssetBundleImportJobDataSourceCredentialPair | undefined;
|
|
613
|
+
SecretArn?: string | undefined;
|
|
596
614
|
}
|
|
597
615
|
export interface AthenaParameters {
|
|
598
|
-
WorkGroup?: string;
|
|
599
|
-
RoleArn?: string;
|
|
616
|
+
WorkGroup?: string | undefined;
|
|
617
|
+
RoleArn?: string | undefined;
|
|
600
618
|
}
|
|
601
619
|
export interface AuroraParameters {
|
|
602
620
|
Host: string | undefined;
|
|
@@ -613,7 +631,7 @@ export interface AwsIotAnalyticsParameters {
|
|
|
613
631
|
}
|
|
614
632
|
export interface BigQueryParameters {
|
|
615
633
|
ProjectId: string | undefined;
|
|
616
|
-
DataSetRegion?: string;
|
|
634
|
+
DataSetRegion?: string | undefined;
|
|
617
635
|
}
|
|
618
636
|
export interface DatabricksParameters {
|
|
619
637
|
Host: string | undefined;
|
|
@@ -658,20 +676,20 @@ export interface RdsParameters {
|
|
|
658
676
|
}
|
|
659
677
|
export interface RedshiftIAMParameters {
|
|
660
678
|
RoleArn: string | undefined;
|
|
661
|
-
DatabaseUser?: string;
|
|
662
|
-
DatabaseGroups?: string[];
|
|
663
|
-
AutoCreateDatabaseUser?: boolean;
|
|
679
|
+
DatabaseUser?: string | undefined;
|
|
680
|
+
DatabaseGroups?: string[] | undefined;
|
|
681
|
+
AutoCreateDatabaseUser?: boolean | undefined;
|
|
664
682
|
}
|
|
665
683
|
export interface IdentityCenterConfiguration {
|
|
666
|
-
EnableIdentityPropagation?: boolean;
|
|
684
|
+
EnableIdentityPropagation?: boolean | undefined;
|
|
667
685
|
}
|
|
668
686
|
export interface RedshiftParameters {
|
|
669
|
-
Host?: string;
|
|
670
|
-
Port?: number;
|
|
687
|
+
Host?: string | undefined;
|
|
688
|
+
Port?: number | undefined;
|
|
671
689
|
Database: string | undefined;
|
|
672
|
-
ClusterId?: string;
|
|
673
|
-
IAMParameters?: RedshiftIAMParameters;
|
|
674
|
-
IdentityCenterConfiguration?: IdentityCenterConfiguration;
|
|
690
|
+
ClusterId?: string | undefined;
|
|
691
|
+
IAMParameters?: RedshiftIAMParameters | undefined;
|
|
692
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration | undefined;
|
|
675
693
|
}
|
|
676
694
|
export interface ManifestFileLocation {
|
|
677
695
|
Bucket: string | undefined;
|
|
@@ -679,7 +697,7 @@ export interface ManifestFileLocation {
|
|
|
679
697
|
}
|
|
680
698
|
export interface S3Parameters {
|
|
681
699
|
ManifestFileLocation: ManifestFileLocation | undefined;
|
|
682
|
-
RoleArn?: string;
|
|
700
|
+
RoleArn?: string | undefined;
|
|
683
701
|
}
|
|
684
702
|
export interface ServiceNowParameters {
|
|
685
703
|
SiteBaseUrl: string | undefined;
|
|
@@ -696,17 +714,17 @@ export interface VpcConnectionProperties {
|
|
|
696
714
|
}
|
|
697
715
|
export interface OAuthParameters {
|
|
698
716
|
TokenProviderUrl: string | undefined;
|
|
699
|
-
OAuthScope?: string;
|
|
700
|
-
IdentityProviderVpcConnectionProperties?: VpcConnectionProperties;
|
|
701
|
-
IdentityProviderResourceUri?: string;
|
|
717
|
+
OAuthScope?: string | undefined;
|
|
718
|
+
IdentityProviderVpcConnectionProperties?: VpcConnectionProperties | undefined;
|
|
719
|
+
IdentityProviderResourceUri?: string | undefined;
|
|
702
720
|
}
|
|
703
721
|
export interface SnowflakeParameters {
|
|
704
722
|
Host: string | undefined;
|
|
705
723
|
Database: string | undefined;
|
|
706
724
|
Warehouse: string | undefined;
|
|
707
|
-
AuthenticationType?: AuthenticationType;
|
|
708
|
-
DatabaseAccessControlRole?: string;
|
|
709
|
-
OAuthParameters?: OAuthParameters;
|
|
725
|
+
AuthenticationType?: AuthenticationType | undefined;
|
|
726
|
+
DatabaseAccessControlRole?: string | undefined;
|
|
727
|
+
OAuthParameters?: OAuthParameters | undefined;
|
|
710
728
|
}
|
|
711
729
|
export interface SparkParameters {
|
|
712
730
|
Host: string | undefined;
|
|
@@ -727,10 +745,10 @@ export interface StarburstParameters {
|
|
|
727
745
|
Host: string | undefined;
|
|
728
746
|
Port: number | undefined;
|
|
729
747
|
Catalog: string | undefined;
|
|
730
|
-
ProductType?: StarburstProductType;
|
|
731
|
-
DatabaseAccessControlRole?: string;
|
|
732
|
-
AuthenticationType?: AuthenticationType;
|
|
733
|
-
OAuthParameters?: OAuthParameters;
|
|
748
|
+
ProductType?: StarburstProductType | undefined;
|
|
749
|
+
DatabaseAccessControlRole?: string | undefined;
|
|
750
|
+
AuthenticationType?: AuthenticationType | undefined;
|
|
751
|
+
OAuthParameters?: OAuthParameters | undefined;
|
|
734
752
|
}
|
|
735
753
|
export interface TeradataParameters {
|
|
736
754
|
Host: string | undefined;
|
|
@@ -1590,15 +1608,15 @@ export declare namespace DataSourceParameters {
|
|
|
1590
1608
|
const visit: <T>(value: DataSourceParameters, visitor: Visitor<T>) => T;
|
|
1591
1609
|
}
|
|
1592
1610
|
export interface SslProperties {
|
|
1593
|
-
DisableSsl?: boolean;
|
|
1611
|
+
DisableSsl?: boolean | undefined;
|
|
1594
1612
|
}
|
|
1595
1613
|
export interface AssetBundleImportJobDataSourceOverrideParameters {
|
|
1596
1614
|
DataSourceId: string | undefined;
|
|
1597
|
-
Name?: string;
|
|
1598
|
-
DataSourceParameters?: DataSourceParameters;
|
|
1599
|
-
VpcConnectionProperties?: VpcConnectionProperties;
|
|
1600
|
-
SslProperties?: SslProperties;
|
|
1601
|
-
Credentials?: AssetBundleImportJobDataSourceCredentials;
|
|
1615
|
+
Name?: string | undefined;
|
|
1616
|
+
DataSourceParameters?: DataSourceParameters | undefined;
|
|
1617
|
+
VpcConnectionProperties?: VpcConnectionProperties | undefined;
|
|
1618
|
+
SslProperties?: SslProperties | undefined;
|
|
1619
|
+
Credentials?: AssetBundleImportJobDataSourceCredentials | undefined;
|
|
1602
1620
|
}
|
|
1603
1621
|
export interface AssetBundleImportJobDataSourceOverridePermissions {
|
|
1604
1622
|
DataSourceIds: string[] | undefined;
|
|
@@ -1609,18 +1627,18 @@ export interface AssetBundleImportJobDataSourceOverrideTags {
|
|
|
1609
1627
|
Tags: Tag[] | undefined;
|
|
1610
1628
|
}
|
|
1611
1629
|
export interface AssetBundleImportJobError {
|
|
1612
|
-
Arn?: string;
|
|
1613
|
-
Type?: string;
|
|
1614
|
-
Message?: string;
|
|
1630
|
+
Arn?: string | undefined;
|
|
1631
|
+
Type?: string | undefined;
|
|
1632
|
+
Message?: string | undefined;
|
|
1615
1633
|
}
|
|
1616
1634
|
export interface AssetBundleImportJobFolderOverrideParameters {
|
|
1617
1635
|
FolderId: string | undefined;
|
|
1618
|
-
Name?: string;
|
|
1619
|
-
ParentFolderArn?: string;
|
|
1636
|
+
Name?: string | undefined;
|
|
1637
|
+
ParentFolderArn?: string | undefined;
|
|
1620
1638
|
}
|
|
1621
1639
|
export interface AssetBundleImportJobFolderOverridePermissions {
|
|
1622
1640
|
FolderIds: string[] | undefined;
|
|
1623
|
-
Permissions?: AssetBundleResourcePermissions;
|
|
1641
|
+
Permissions?: AssetBundleResourcePermissions | undefined;
|
|
1624
1642
|
}
|
|
1625
1643
|
export interface AssetBundleImportJobFolderOverrideTags {
|
|
1626
1644
|
FolderIds: string[] | undefined;
|
|
@@ -1629,45 +1647,51 @@ export interface AssetBundleImportJobFolderOverrideTags {
|
|
|
1629
1647
|
export interface AssetBundleImportJobRefreshScheduleOverrideParameters {
|
|
1630
1648
|
DataSetId: string | undefined;
|
|
1631
1649
|
ScheduleId: string | undefined;
|
|
1632
|
-
StartAfterDateTime?: Date;
|
|
1650
|
+
StartAfterDateTime?: Date | undefined;
|
|
1633
1651
|
}
|
|
1634
1652
|
export interface AssetBundleImportJobResourceIdOverrideConfiguration {
|
|
1635
|
-
PrefixForAllResources?: string;
|
|
1653
|
+
PrefixForAllResources?: string | undefined;
|
|
1636
1654
|
}
|
|
1637
1655
|
export interface AssetBundleImportJobThemeOverrideParameters {
|
|
1638
1656
|
ThemeId: string | undefined;
|
|
1639
|
-
Name?: string;
|
|
1657
|
+
Name?: string | undefined;
|
|
1640
1658
|
}
|
|
1641
1659
|
export interface AssetBundleImportJobVPCConnectionOverrideParameters {
|
|
1642
1660
|
VPCConnectionId: string | undefined;
|
|
1643
|
-
Name?: string;
|
|
1644
|
-
SubnetIds?: string[];
|
|
1645
|
-
SecurityGroupIds?: string[];
|
|
1646
|
-
DnsResolvers?: string[];
|
|
1647
|
-
RoleArn?: string;
|
|
1661
|
+
Name?: string | undefined;
|
|
1662
|
+
SubnetIds?: string[] | undefined;
|
|
1663
|
+
SecurityGroupIds?: string[] | undefined;
|
|
1664
|
+
DnsResolvers?: string[] | undefined;
|
|
1665
|
+
RoleArn?: string | undefined;
|
|
1648
1666
|
}
|
|
1649
1667
|
export interface AssetBundleImportJobOverrideParameters {
|
|
1650
|
-
ResourceIdOverrideConfiguration?:
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1668
|
+
ResourceIdOverrideConfiguration?:
|
|
1669
|
+
| AssetBundleImportJobResourceIdOverrideConfiguration
|
|
1670
|
+
| undefined;
|
|
1671
|
+
VPCConnections?:
|
|
1672
|
+
| AssetBundleImportJobVPCConnectionOverrideParameters[]
|
|
1673
|
+
| undefined;
|
|
1674
|
+
RefreshSchedules?:
|
|
1675
|
+
| AssetBundleImportJobRefreshScheduleOverrideParameters[]
|
|
1676
|
+
| undefined;
|
|
1677
|
+
DataSources?: AssetBundleImportJobDataSourceOverrideParameters[] | undefined;
|
|
1678
|
+
DataSets?: AssetBundleImportJobDataSetOverrideParameters[] | undefined;
|
|
1679
|
+
Themes?: AssetBundleImportJobThemeOverrideParameters[] | undefined;
|
|
1680
|
+
Analyses?: AssetBundleImportJobAnalysisOverrideParameters[] | undefined;
|
|
1681
|
+
Dashboards?: AssetBundleImportJobDashboardOverrideParameters[] | undefined;
|
|
1682
|
+
Folders?: AssetBundleImportJobFolderOverrideParameters[] | undefined;
|
|
1659
1683
|
}
|
|
1660
1684
|
export interface AssetBundleImportJobThemeOverridePermissions {
|
|
1661
1685
|
ThemeIds: string[] | undefined;
|
|
1662
1686
|
Permissions: AssetBundleResourcePermissions | undefined;
|
|
1663
1687
|
}
|
|
1664
1688
|
export interface AssetBundleImportJobOverridePermissions {
|
|
1665
|
-
DataSources?: AssetBundleImportJobDataSourceOverridePermissions[];
|
|
1666
|
-
DataSets?: AssetBundleImportJobDataSetOverridePermissions[];
|
|
1667
|
-
Themes?: AssetBundleImportJobThemeOverridePermissions[];
|
|
1668
|
-
Analyses?: AssetBundleImportJobAnalysisOverridePermissions[];
|
|
1669
|
-
Dashboards?: AssetBundleImportJobDashboardOverridePermissions[];
|
|
1670
|
-
Folders?: AssetBundleImportJobFolderOverridePermissions[];
|
|
1689
|
+
DataSources?: AssetBundleImportJobDataSourceOverridePermissions[] | undefined;
|
|
1690
|
+
DataSets?: AssetBundleImportJobDataSetOverridePermissions[] | undefined;
|
|
1691
|
+
Themes?: AssetBundleImportJobThemeOverridePermissions[] | undefined;
|
|
1692
|
+
Analyses?: AssetBundleImportJobAnalysisOverridePermissions[] | undefined;
|
|
1693
|
+
Dashboards?: AssetBundleImportJobDashboardOverridePermissions[] | undefined;
|
|
1694
|
+
Folders?: AssetBundleImportJobFolderOverridePermissions[] | undefined;
|
|
1671
1695
|
}
|
|
1672
1696
|
export interface AssetBundleImportJobThemeOverrideTags {
|
|
1673
1697
|
ThemeIds: string[] | undefined;
|
|
@@ -1678,16 +1702,16 @@ export interface AssetBundleImportJobVPCConnectionOverrideTags {
|
|
|
1678
1702
|
Tags: Tag[] | undefined;
|
|
1679
1703
|
}
|
|
1680
1704
|
export interface AssetBundleImportJobOverrideTags {
|
|
1681
|
-
VPCConnections?: AssetBundleImportJobVPCConnectionOverrideTags[];
|
|
1682
|
-
DataSources?: AssetBundleImportJobDataSourceOverrideTags[];
|
|
1683
|
-
DataSets?: AssetBundleImportJobDataSetOverrideTags[];
|
|
1684
|
-
Themes?: AssetBundleImportJobThemeOverrideTags[];
|
|
1685
|
-
Analyses?: AssetBundleImportJobAnalysisOverrideTags[];
|
|
1686
|
-
Dashboards?: AssetBundleImportJobDashboardOverrideTags[];
|
|
1687
|
-
Folders?: AssetBundleImportJobFolderOverrideTags[];
|
|
1705
|
+
VPCConnections?: AssetBundleImportJobVPCConnectionOverrideTags[] | undefined;
|
|
1706
|
+
DataSources?: AssetBundleImportJobDataSourceOverrideTags[] | undefined;
|
|
1707
|
+
DataSets?: AssetBundleImportJobDataSetOverrideTags[] | undefined;
|
|
1708
|
+
Themes?: AssetBundleImportJobThemeOverrideTags[] | undefined;
|
|
1709
|
+
Analyses?: AssetBundleImportJobAnalysisOverrideTags[] | undefined;
|
|
1710
|
+
Dashboards?: AssetBundleImportJobDashboardOverrideTags[] | undefined;
|
|
1711
|
+
Folders?: AssetBundleImportJobFolderOverrideTags[] | undefined;
|
|
1688
1712
|
}
|
|
1689
1713
|
export interface AssetBundleImportJobOverrideValidationStrategy {
|
|
1690
|
-
StrictModeForAllResources?: boolean;
|
|
1714
|
+
StrictModeForAllResources?: boolean | undefined;
|
|
1691
1715
|
}
|
|
1692
1716
|
export declare const AssetBundleImportJobStatus: {
|
|
1693
1717
|
readonly FAILED: "FAILED";
|
|
@@ -1701,23 +1725,23 @@ export declare const AssetBundleImportJobStatus: {
|
|
|
1701
1725
|
export type AssetBundleImportJobStatus =
|
|
1702
1726
|
(typeof AssetBundleImportJobStatus)[keyof typeof AssetBundleImportJobStatus];
|
|
1703
1727
|
export interface AssetBundleImportJobSummary {
|
|
1704
|
-
JobStatus?: AssetBundleImportJobStatus;
|
|
1705
|
-
Arn?: string;
|
|
1706
|
-
CreatedTime?: Date;
|
|
1707
|
-
AssetBundleImportJobId?: string;
|
|
1708
|
-
FailureAction?: AssetBundleImportFailureAction;
|
|
1728
|
+
JobStatus?: AssetBundleImportJobStatus | undefined;
|
|
1729
|
+
Arn?: string | undefined;
|
|
1730
|
+
CreatedTime?: Date | undefined;
|
|
1731
|
+
AssetBundleImportJobId?: string | undefined;
|
|
1732
|
+
FailureAction?: AssetBundleImportFailureAction | undefined;
|
|
1709
1733
|
}
|
|
1710
1734
|
export interface AssetBundleImportJobWarning {
|
|
1711
|
-
Arn?: string;
|
|
1712
|
-
Message?: string;
|
|
1735
|
+
Arn?: string | undefined;
|
|
1736
|
+
Message?: string | undefined;
|
|
1713
1737
|
}
|
|
1714
1738
|
export interface AssetBundleImportSource {
|
|
1715
|
-
Body?: Uint8Array;
|
|
1716
|
-
S3Uri?: string;
|
|
1739
|
+
Body?: Uint8Array | undefined;
|
|
1740
|
+
S3Uri?: string | undefined;
|
|
1717
1741
|
}
|
|
1718
1742
|
export interface AssetBundleImportSourceDescription {
|
|
1719
|
-
Body?: string;
|
|
1720
|
-
S3Uri?: string;
|
|
1743
|
+
Body?: string | undefined;
|
|
1744
|
+
S3Uri?: string | undefined;
|
|
1721
1745
|
}
|
|
1722
1746
|
export declare const AssignmentStatus: {
|
|
1723
1747
|
readonly DISABLED: "DISABLED";
|
|
@@ -1739,8 +1763,8 @@ export declare const ServiceType: {
|
|
|
1739
1763
|
};
|
|
1740
1764
|
export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
|
|
1741
1765
|
export interface AuthorizedTargetsByService {
|
|
1742
|
-
Service?: ServiceType;
|
|
1743
|
-
AuthorizedTargets?: string[];
|
|
1766
|
+
Service?: ServiceType | undefined;
|
|
1767
|
+
AuthorizedTargets?: string[] | undefined;
|
|
1744
1768
|
}
|
|
1745
1769
|
export declare const AuthorSpecifiedAggregation: {
|
|
1746
1770
|
readonly AVERAGE: "AVERAGE";
|
|
@@ -1766,7 +1790,7 @@ export declare const ContributionAnalysisDirection: {
|
|
|
1766
1790
|
export type ContributionAnalysisDirection =
|
|
1767
1791
|
(typeof ContributionAnalysisDirection)[keyof typeof ContributionAnalysisDirection];
|
|
1768
1792
|
export interface ContributionAnalysisFactor {
|
|
1769
|
-
FieldName?: string;
|
|
1793
|
+
FieldName?: string | undefined;
|
|
1770
1794
|
}
|
|
1771
1795
|
export declare const ContributionAnalysisSortType: {
|
|
1772
1796
|
readonly ABSOLUTE_DIFFERENCE: "ABSOLUTE_DIFFERENCE";
|
|
@@ -1786,9 +1810,9 @@ export declare const TopicSortDirection: {
|
|
|
1786
1810
|
export type TopicSortDirection =
|
|
1787
1811
|
(typeof TopicSortDirection)[keyof typeof TopicSortDirection];
|
|
1788
1812
|
export interface FilterAggMetrics {
|
|
1789
|
-
MetricOperand?: Identifier;
|
|
1790
|
-
Function?: AggType;
|
|
1791
|
-
SortDirection?: TopicSortDirection;
|
|
1813
|
+
MetricOperand?: Identifier | undefined;
|
|
1814
|
+
Function?: AggType | undefined;
|
|
1815
|
+
SortDirection?: TopicSortDirection | undefined;
|
|
1792
1816
|
}
|
|
1793
1817
|
export declare const ConstantType: {
|
|
1794
1818
|
readonly COLLECTIVE: "COLLECTIVE";
|
|
@@ -1797,15 +1821,15 @@ export declare const ConstantType: {
|
|
|
1797
1821
|
};
|
|
1798
1822
|
export type ConstantType = (typeof ConstantType)[keyof typeof ConstantType];
|
|
1799
1823
|
export interface CollectiveConstantEntry {
|
|
1800
|
-
ConstantType?: ConstantType;
|
|
1801
|
-
Value?: string;
|
|
1824
|
+
ConstantType?: ConstantType | undefined;
|
|
1825
|
+
Value?: string | undefined;
|
|
1802
1826
|
}
|
|
1803
1827
|
export interface TopicConstantValue {
|
|
1804
|
-
ConstantType?: ConstantType;
|
|
1805
|
-
Value?: string;
|
|
1806
|
-
Minimum?: string;
|
|
1807
|
-
Maximum?: string;
|
|
1808
|
-
ValueList?: CollectiveConstantEntry[];
|
|
1828
|
+
ConstantType?: ConstantType | undefined;
|
|
1829
|
+
Value?: string | undefined;
|
|
1830
|
+
Minimum?: string | undefined;
|
|
1831
|
+
Maximum?: string | undefined;
|
|
1832
|
+
ValueList?: CollectiveConstantEntry[] | undefined;
|
|
1809
1833
|
}
|
|
1810
1834
|
export declare const FilterClass: {
|
|
1811
1835
|
readonly CONDITIONAL_VALUE_FILTER: "CONDITIONAL_VALUE_FILTER";
|
|
@@ -1848,34 +1872,34 @@ export declare const NullFilterOption: {
|
|
|
1848
1872
|
export type NullFilterOption =
|
|
1849
1873
|
(typeof NullFilterOption)[keyof typeof NullFilterOption];
|
|
1850
1874
|
export interface TopicIRFilterOption {
|
|
1851
|
-
FilterType?: TopicIRFilterType;
|
|
1852
|
-
FilterClass?: FilterClass;
|
|
1853
|
-
OperandField?: Identifier;
|
|
1854
|
-
Function?: TopicIRFilterFunction;
|
|
1855
|
-
Constant?: TopicConstantValue;
|
|
1856
|
-
Inverse?: boolean;
|
|
1857
|
-
NullFilter?: NullFilterOption;
|
|
1858
|
-
Aggregation?: AggType;
|
|
1859
|
-
AggregationFunctionParameters?: Record<string, string
|
|
1860
|
-
AggregationPartitionBy?: AggregationPartitionBy[];
|
|
1861
|
-
Range?: TopicConstantValue;
|
|
1862
|
-
Inclusive?: boolean;
|
|
1863
|
-
TimeGranularity?: TimeGranularity;
|
|
1864
|
-
LastNextOffset?: TopicConstantValue;
|
|
1865
|
-
AggMetrics?: FilterAggMetrics[];
|
|
1866
|
-
TopBottomLimit?: TopicConstantValue;
|
|
1867
|
-
SortDirection?: TopicSortDirection;
|
|
1868
|
-
Anchor?: Anchor;
|
|
1875
|
+
FilterType?: TopicIRFilterType | undefined;
|
|
1876
|
+
FilterClass?: FilterClass | undefined;
|
|
1877
|
+
OperandField?: Identifier | undefined;
|
|
1878
|
+
Function?: TopicIRFilterFunction | undefined;
|
|
1879
|
+
Constant?: TopicConstantValue | undefined;
|
|
1880
|
+
Inverse?: boolean | undefined;
|
|
1881
|
+
NullFilter?: NullFilterOption | undefined;
|
|
1882
|
+
Aggregation?: AggType | undefined;
|
|
1883
|
+
AggregationFunctionParameters?: Record<string, string> | undefined;
|
|
1884
|
+
AggregationPartitionBy?: AggregationPartitionBy[] | undefined;
|
|
1885
|
+
Range?: TopicConstantValue | undefined;
|
|
1886
|
+
Inclusive?: boolean | undefined;
|
|
1887
|
+
TimeGranularity?: TimeGranularity | undefined;
|
|
1888
|
+
LastNextOffset?: TopicConstantValue | undefined;
|
|
1889
|
+
AggMetrics?: FilterAggMetrics[] | undefined;
|
|
1890
|
+
TopBottomLimit?: TopicConstantValue | undefined;
|
|
1891
|
+
SortDirection?: TopicSortDirection | undefined;
|
|
1892
|
+
Anchor?: Anchor | undefined;
|
|
1869
1893
|
}
|
|
1870
1894
|
export interface ContributionAnalysisTimeRanges {
|
|
1871
|
-
StartRange?: TopicIRFilterOption;
|
|
1872
|
-
EndRange?: TopicIRFilterOption;
|
|
1895
|
+
StartRange?: TopicIRFilterOption | undefined;
|
|
1896
|
+
EndRange?: TopicIRFilterOption | undefined;
|
|
1873
1897
|
}
|
|
1874
1898
|
export interface TopicIRContributionAnalysis {
|
|
1875
|
-
Factors?: ContributionAnalysisFactor[];
|
|
1876
|
-
TimeRanges?: ContributionAnalysisTimeRanges;
|
|
1877
|
-
Direction?: ContributionAnalysisDirection;
|
|
1878
|
-
SortType?: ContributionAnalysisSortType;
|
|
1899
|
+
Factors?: ContributionAnalysisFactor[] | undefined;
|
|
1900
|
+
TimeRanges?: ContributionAnalysisTimeRanges | undefined;
|
|
1901
|
+
Direction?: ContributionAnalysisDirection | undefined;
|
|
1902
|
+
SortType?: ContributionAnalysisSortType | undefined;
|
|
1879
1903
|
}
|
|
1880
1904
|
export declare const DisplayFormat: {
|
|
1881
1905
|
readonly AUTO: "AUTO";
|
|
@@ -1893,37 +1917,37 @@ export declare const TopicNumericSeparatorSymbol: {
|
|
|
1893
1917
|
export type TopicNumericSeparatorSymbol =
|
|
1894
1918
|
(typeof TopicNumericSeparatorSymbol)[keyof typeof TopicNumericSeparatorSymbol];
|
|
1895
1919
|
export interface NegativeFormat {
|
|
1896
|
-
Prefix?: string;
|
|
1897
|
-
Suffix?: string;
|
|
1920
|
+
Prefix?: string | undefined;
|
|
1921
|
+
Suffix?: string | undefined;
|
|
1898
1922
|
}
|
|
1899
1923
|
export interface DisplayFormatOptions {
|
|
1900
|
-
UseBlankCellFormat?: boolean;
|
|
1901
|
-
BlankCellFormat?: string;
|
|
1902
|
-
DateFormat?: string;
|
|
1903
|
-
DecimalSeparator?: TopicNumericSeparatorSymbol;
|
|
1904
|
-
GroupingSeparator?: string;
|
|
1905
|
-
UseGrouping?: boolean;
|
|
1906
|
-
FractionDigits?: number;
|
|
1907
|
-
Prefix?: string;
|
|
1908
|
-
Suffix?: string;
|
|
1909
|
-
UnitScaler?: NumberScale;
|
|
1910
|
-
NegativeFormat?: NegativeFormat;
|
|
1911
|
-
CurrencySymbol?: string;
|
|
1924
|
+
UseBlankCellFormat?: boolean | undefined;
|
|
1925
|
+
BlankCellFormat?: string | undefined;
|
|
1926
|
+
DateFormat?: string | undefined;
|
|
1927
|
+
DecimalSeparator?: TopicNumericSeparatorSymbol | undefined;
|
|
1928
|
+
GroupingSeparator?: string | undefined;
|
|
1929
|
+
UseGrouping?: boolean | undefined;
|
|
1930
|
+
FractionDigits?: number | undefined;
|
|
1931
|
+
Prefix?: string | undefined;
|
|
1932
|
+
Suffix?: string | undefined;
|
|
1933
|
+
UnitScaler?: NumberScale | undefined;
|
|
1934
|
+
NegativeFormat?: NegativeFormat | undefined;
|
|
1935
|
+
CurrencySymbol?: string | undefined;
|
|
1912
1936
|
}
|
|
1913
1937
|
export interface NamedEntityRef {
|
|
1914
|
-
NamedEntityName?: string;
|
|
1938
|
+
NamedEntityName?: string | undefined;
|
|
1915
1939
|
}
|
|
1916
1940
|
export interface TopicSortClause {
|
|
1917
|
-
Operand?: Identifier;
|
|
1918
|
-
SortDirection?: TopicSortDirection;
|
|
1941
|
+
Operand?: Identifier | undefined;
|
|
1942
|
+
SortDirection?: TopicSortDirection | undefined;
|
|
1919
1943
|
}
|
|
1920
1944
|
export interface TopicIRGroupBy {
|
|
1921
|
-
FieldName?: Identifier;
|
|
1922
|
-
TimeGranularity?: TopicTimeGranularity;
|
|
1923
|
-
Sort?: TopicSortClause;
|
|
1924
|
-
DisplayFormat?: DisplayFormat;
|
|
1925
|
-
DisplayFormatOptions?: DisplayFormatOptions;
|
|
1926
|
-
NamedEntity?: NamedEntityRef;
|
|
1945
|
+
FieldName?: Identifier | undefined;
|
|
1946
|
+
TimeGranularity?: TopicTimeGranularity | undefined;
|
|
1947
|
+
Sort?: TopicSortClause | undefined;
|
|
1948
|
+
DisplayFormat?: DisplayFormat | undefined;
|
|
1949
|
+
DisplayFormatOptions?: DisplayFormatOptions | undefined;
|
|
1950
|
+
NamedEntity?: NamedEntityRef | undefined;
|
|
1927
1951
|
}
|
|
1928
1952
|
export declare const ComparisonMethodType: {
|
|
1929
1953
|
readonly DIFF: "DIFF";
|
|
@@ -1940,31 +1964,31 @@ export declare const ComparisonMethodType: {
|
|
|
1940
1964
|
export type ComparisonMethodType =
|
|
1941
1965
|
(typeof ComparisonMethodType)[keyof typeof ComparisonMethodType];
|
|
1942
1966
|
export interface TopicIRComparisonMethod {
|
|
1943
|
-
Type?: ComparisonMethodType;
|
|
1944
|
-
Period?: TopicTimeGranularity;
|
|
1945
|
-
WindowSize?: number;
|
|
1967
|
+
Type?: ComparisonMethodType | undefined;
|
|
1968
|
+
Period?: TopicTimeGranularity | undefined;
|
|
1969
|
+
WindowSize?: number | undefined;
|
|
1946
1970
|
}
|
|
1947
1971
|
export interface TopicIRMetric {
|
|
1948
|
-
MetricId?: Identifier;
|
|
1949
|
-
Function?: AggFunction;
|
|
1950
|
-
Operands?: Identifier[];
|
|
1951
|
-
ComparisonMethod?: TopicIRComparisonMethod;
|
|
1952
|
-
Expression?: string;
|
|
1953
|
-
CalculatedFieldReferences?: Identifier[];
|
|
1954
|
-
DisplayFormat?: DisplayFormat;
|
|
1955
|
-
DisplayFormatOptions?: DisplayFormatOptions;
|
|
1956
|
-
NamedEntity?: NamedEntityRef;
|
|
1972
|
+
MetricId?: Identifier | undefined;
|
|
1973
|
+
Function?: AggFunction | undefined;
|
|
1974
|
+
Operands?: Identifier[] | undefined;
|
|
1975
|
+
ComparisonMethod?: TopicIRComparisonMethod | undefined;
|
|
1976
|
+
Expression?: string | undefined;
|
|
1977
|
+
CalculatedFieldReferences?: Identifier[] | undefined;
|
|
1978
|
+
DisplayFormat?: DisplayFormat | undefined;
|
|
1979
|
+
DisplayFormatOptions?: DisplayFormatOptions | undefined;
|
|
1980
|
+
NamedEntity?: NamedEntityRef | undefined;
|
|
1957
1981
|
}
|
|
1958
1982
|
export interface VisualOptions {
|
|
1959
|
-
type?: string;
|
|
1983
|
+
type?: string | undefined;
|
|
1960
1984
|
}
|
|
1961
1985
|
export interface TopicIR {
|
|
1962
|
-
Metrics?: TopicIRMetric[];
|
|
1963
|
-
GroupByList?: TopicIRGroupBy[];
|
|
1964
|
-
Filters?: TopicIRFilterOption[][];
|
|
1965
|
-
Sort?: TopicSortClause;
|
|
1966
|
-
ContributionAnalysis?: TopicIRContributionAnalysis;
|
|
1967
|
-
Visual?: VisualOptions;
|
|
1986
|
+
Metrics?: TopicIRMetric[] | undefined;
|
|
1987
|
+
GroupByList?: TopicIRGroupBy[] | undefined;
|
|
1988
|
+
Filters?: TopicIRFilterOption[][] | undefined;
|
|
1989
|
+
Sort?: TopicSortClause | undefined;
|
|
1990
|
+
ContributionAnalysis?: TopicIRContributionAnalysis | undefined;
|
|
1991
|
+
Visual?: VisualOptions | undefined;
|
|
1968
1992
|
}
|
|
1969
1993
|
export declare const VisualRole: {
|
|
1970
1994
|
readonly COMPLIMENTARY: "COMPLIMENTARY";
|
|
@@ -1975,12 +1999,12 @@ export declare const VisualRole: {
|
|
|
1975
1999
|
};
|
|
1976
2000
|
export type VisualRole = (typeof VisualRole)[keyof typeof VisualRole];
|
|
1977
2001
|
export interface Slot {
|
|
1978
|
-
SlotId?: string;
|
|
1979
|
-
VisualId?: string;
|
|
2002
|
+
SlotId?: string | undefined;
|
|
2003
|
+
VisualId?: string | undefined;
|
|
1980
2004
|
}
|
|
1981
2005
|
export interface TopicTemplate {
|
|
1982
|
-
TemplateType?: string;
|
|
1983
|
-
Slots?: Slot[];
|
|
2006
|
+
TemplateType?: string | undefined;
|
|
2007
|
+
Slots?: Slot[] | undefined;
|
|
1984
2008
|
}
|
|
1985
2009
|
export declare const ReviewedAnswerErrorCode: {
|
|
1986
2010
|
readonly DATASET_DOES_NOT_EXIST: "DATASET_DOES_NOT_EXIST";
|
|
@@ -1994,25 +2018,25 @@ export declare const ReviewedAnswerErrorCode: {
|
|
|
1994
2018
|
export type ReviewedAnswerErrorCode =
|
|
1995
2019
|
(typeof ReviewedAnswerErrorCode)[keyof typeof ReviewedAnswerErrorCode];
|
|
1996
2020
|
export interface InvalidTopicReviewedAnswer {
|
|
1997
|
-
AnswerId?: string;
|
|
1998
|
-
Error?: ReviewedAnswerErrorCode;
|
|
2021
|
+
AnswerId?: string | undefined;
|
|
2022
|
+
Error?: ReviewedAnswerErrorCode | undefined;
|
|
1999
2023
|
}
|
|
2000
2024
|
export interface SucceededTopicReviewedAnswer {
|
|
2001
|
-
AnswerId?: string;
|
|
2025
|
+
AnswerId?: string | undefined;
|
|
2002
2026
|
}
|
|
2003
2027
|
export interface BatchCreateTopicReviewedAnswerResponse {
|
|
2004
|
-
TopicId?: string;
|
|
2005
|
-
TopicArn?: string;
|
|
2006
|
-
SucceededAnswers?: SucceededTopicReviewedAnswer[];
|
|
2007
|
-
InvalidAnswers?: InvalidTopicReviewedAnswer[];
|
|
2008
|
-
Status?: number;
|
|
2009
|
-
RequestId?: string;
|
|
2028
|
+
TopicId?: string | undefined;
|
|
2029
|
+
TopicArn?: string | undefined;
|
|
2030
|
+
SucceededAnswers?: SucceededTopicReviewedAnswer[] | undefined;
|
|
2031
|
+
InvalidAnswers?: InvalidTopicReviewedAnswer[] | undefined;
|
|
2032
|
+
Status?: number | undefined;
|
|
2033
|
+
RequestId?: string | undefined;
|
|
2010
2034
|
}
|
|
2011
2035
|
export declare class InternalFailureException extends __BaseException {
|
|
2012
2036
|
readonly name: "InternalFailureException";
|
|
2013
2037
|
readonly $fault: "server";
|
|
2014
|
-
Message?: string;
|
|
2015
|
-
RequestId?: string;
|
|
2038
|
+
Message?: string | undefined;
|
|
2039
|
+
RequestId?: string | undefined;
|
|
2016
2040
|
constructor(
|
|
2017
2041
|
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
2018
2042
|
);
|
|
@@ -2020,8 +2044,8 @@ export declare class InternalFailureException extends __BaseException {
|
|
|
2020
2044
|
export declare class InvalidParameterValueException extends __BaseException {
|
|
2021
2045
|
readonly name: "InvalidParameterValueException";
|
|
2022
2046
|
readonly $fault: "client";
|
|
2023
|
-
Message?: string;
|
|
2024
|
-
RequestId?: string;
|
|
2047
|
+
Message?: string | undefined;
|
|
2048
|
+
RequestId?: string | undefined;
|
|
2025
2049
|
constructor(
|
|
2026
2050
|
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
2027
2051
|
);
|
|
@@ -2042,9 +2066,9 @@ export type ExceptionResourceType =
|
|
|
2042
2066
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
2043
2067
|
readonly name: "ResourceNotFoundException";
|
|
2044
2068
|
readonly $fault: "client";
|
|
2045
|
-
Message?: string;
|
|
2046
|
-
ResourceType?: ExceptionResourceType;
|
|
2047
|
-
RequestId?: string;
|
|
2069
|
+
Message?: string | undefined;
|
|
2070
|
+
ResourceType?: ExceptionResourceType | undefined;
|
|
2071
|
+
RequestId?: string | undefined;
|
|
2048
2072
|
constructor(
|
|
2049
2073
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
2050
2074
|
);
|
|
@@ -2052,8 +2076,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
2052
2076
|
export declare class ThrottlingException extends __BaseException {
|
|
2053
2077
|
readonly name: "ThrottlingException";
|
|
2054
2078
|
readonly $fault: "client";
|
|
2055
|
-
Message?: string;
|
|
2056
|
-
RequestId?: string;
|
|
2079
|
+
Message?: string | undefined;
|
|
2080
|
+
RequestId?: string | undefined;
|
|
2057
2081
|
constructor(
|
|
2058
2082
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
2059
2083
|
);
|
|
@@ -2061,28 +2085,28 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
2061
2085
|
export interface BatchDeleteTopicReviewedAnswerRequest {
|
|
2062
2086
|
AwsAccountId: string | undefined;
|
|
2063
2087
|
TopicId: string | undefined;
|
|
2064
|
-
AnswerIds?: string[];
|
|
2088
|
+
AnswerIds?: string[] | undefined;
|
|
2065
2089
|
}
|
|
2066
2090
|
export interface BatchDeleteTopicReviewedAnswerResponse {
|
|
2067
|
-
TopicId?: string;
|
|
2068
|
-
TopicArn?: string;
|
|
2069
|
-
SucceededAnswers?: SucceededTopicReviewedAnswer[];
|
|
2070
|
-
InvalidAnswers?: InvalidTopicReviewedAnswer[];
|
|
2071
|
-
RequestId?: string;
|
|
2072
|
-
Status?: number;
|
|
2091
|
+
TopicId?: string | undefined;
|
|
2092
|
+
TopicArn?: string | undefined;
|
|
2093
|
+
SucceededAnswers?: SucceededTopicReviewedAnswer[] | undefined;
|
|
2094
|
+
InvalidAnswers?: InvalidTopicReviewedAnswer[] | undefined;
|
|
2095
|
+
RequestId?: string | undefined;
|
|
2096
|
+
Status?: number | undefined;
|
|
2073
2097
|
}
|
|
2074
2098
|
export declare class ConflictException extends __BaseException {
|
|
2075
2099
|
readonly name: "ConflictException";
|
|
2076
2100
|
readonly $fault: "client";
|
|
2077
|
-
Message?: string;
|
|
2078
|
-
RequestId?: string;
|
|
2101
|
+
Message?: string | undefined;
|
|
2102
|
+
RequestId?: string | undefined;
|
|
2079
2103
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
2080
2104
|
}
|
|
2081
2105
|
export interface BookmarksConfigurations {
|
|
2082
2106
|
Enabled: boolean | undefined;
|
|
2083
2107
|
}
|
|
2084
2108
|
export interface BorderStyle {
|
|
2085
|
-
Show?: boolean;
|
|
2109
|
+
Show?: boolean | undefined;
|
|
2086
2110
|
}
|
|
2087
2111
|
export interface CalculatedColumn {
|
|
2088
2112
|
ColumnName: string | undefined;
|
|
@@ -2095,17 +2119,17 @@ export interface CancelIngestionRequest {
|
|
|
2095
2119
|
IngestionId: string | undefined;
|
|
2096
2120
|
}
|
|
2097
2121
|
export interface CancelIngestionResponse {
|
|
2098
|
-
Arn?: string;
|
|
2099
|
-
IngestionId?: string;
|
|
2100
|
-
RequestId?: string;
|
|
2101
|
-
Status?: number;
|
|
2122
|
+
Arn?: string | undefined;
|
|
2123
|
+
IngestionId?: string | undefined;
|
|
2124
|
+
RequestId?: string | undefined;
|
|
2125
|
+
Status?: number | undefined;
|
|
2102
2126
|
}
|
|
2103
2127
|
export declare class ResourceExistsException extends __BaseException {
|
|
2104
2128
|
readonly name: "ResourceExistsException";
|
|
2105
2129
|
readonly $fault: "client";
|
|
2106
|
-
Message?: string;
|
|
2107
|
-
ResourceType?: ExceptionResourceType;
|
|
2108
|
-
RequestId?: string;
|
|
2130
|
+
Message?: string | undefined;
|
|
2131
|
+
ResourceType?: ExceptionResourceType | undefined;
|
|
2132
|
+
RequestId?: string | undefined;
|
|
2109
2133
|
constructor(
|
|
2110
2134
|
opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
|
|
2111
2135
|
);
|
|
@@ -2127,8 +2151,8 @@ export type ColumnDataSubType =
|
|
|
2127
2151
|
export interface CastColumnTypeOperation {
|
|
2128
2152
|
ColumnName: string | undefined;
|
|
2129
2153
|
NewColumnType: ColumnDataType | undefined;
|
|
2130
|
-
SubType?: ColumnDataSubType;
|
|
2131
|
-
Format?: string;
|
|
2154
|
+
SubType?: ColumnDataSubType | undefined;
|
|
2155
|
+
Format?: string | undefined;
|
|
2132
2156
|
}
|
|
2133
2157
|
export declare const CategoryFilterFunction: {
|
|
2134
2158
|
readonly CONTAINS: "CONTAINS";
|
|
@@ -2144,11 +2168,11 @@ export declare const CategoryFilterType: {
|
|
|
2144
2168
|
export type CategoryFilterType =
|
|
2145
2169
|
(typeof CategoryFilterType)[keyof typeof CategoryFilterType];
|
|
2146
2170
|
export interface CellValueSynonym {
|
|
2147
|
-
CellValue?: string;
|
|
2148
|
-
Synonyms?: string[];
|
|
2171
|
+
CellValue?: string | undefined;
|
|
2172
|
+
Synonyms?: string[] | undefined;
|
|
2149
2173
|
}
|
|
2150
2174
|
export interface CollectiveConstant {
|
|
2151
|
-
ValueList?: string[];
|
|
2175
|
+
ValueList?: string[] | undefined;
|
|
2152
2176
|
}
|
|
2153
2177
|
export declare const ColumnDataRole: {
|
|
2154
2178
|
readonly DIMENSION: "DIMENSION";
|
|
@@ -2157,7 +2181,7 @@ export declare const ColumnDataRole: {
|
|
|
2157
2181
|
export type ColumnDataRole =
|
|
2158
2182
|
(typeof ColumnDataRole)[keyof typeof ColumnDataRole];
|
|
2159
2183
|
export interface ColumnDescription {
|
|
2160
|
-
Text?: string;
|
|
2184
|
+
Text?: string | undefined;
|
|
2161
2185
|
}
|
|
2162
2186
|
export declare const GeoSpatialCountryCode: {
|
|
2163
2187
|
readonly US: "US";
|
|
@@ -2166,22 +2190,22 @@ export type GeoSpatialCountryCode =
|
|
|
2166
2190
|
(typeof GeoSpatialCountryCode)[keyof typeof GeoSpatialCountryCode];
|
|
2167
2191
|
export interface GeoSpatialColumnGroup {
|
|
2168
2192
|
Name: string | undefined;
|
|
2169
|
-
CountryCode?: GeoSpatialCountryCode;
|
|
2193
|
+
CountryCode?: GeoSpatialCountryCode | undefined;
|
|
2170
2194
|
Columns: string[] | undefined;
|
|
2171
2195
|
}
|
|
2172
2196
|
export interface ColumnGroup {
|
|
2173
|
-
GeoSpatialColumnGroup?: GeoSpatialColumnGroup;
|
|
2197
|
+
GeoSpatialColumnGroup?: GeoSpatialColumnGroup | undefined;
|
|
2174
2198
|
}
|
|
2175
2199
|
export interface ColumnGroupColumnSchema {
|
|
2176
|
-
Name?: string;
|
|
2200
|
+
Name?: string | undefined;
|
|
2177
2201
|
}
|
|
2178
2202
|
export interface ColumnGroupSchema {
|
|
2179
|
-
Name?: string;
|
|
2180
|
-
ColumnGroupColumnSchemaList?: ColumnGroupColumnSchema[];
|
|
2203
|
+
Name?: string | undefined;
|
|
2204
|
+
ColumnGroupColumnSchemaList?: ColumnGroupColumnSchema[] | undefined;
|
|
2181
2205
|
}
|
|
2182
2206
|
export interface ColumnLevelPermissionRule {
|
|
2183
|
-
Principals?: string[];
|
|
2184
|
-
ColumnNames?: string[];
|
|
2207
|
+
Principals?: string[] | undefined;
|
|
2208
|
+
ColumnNames?: string[] | undefined;
|
|
2185
2209
|
}
|
|
2186
2210
|
export declare const ColumnOrderingType: {
|
|
2187
2211
|
readonly GREATER_IS_BETTER: "GREATER_IS_BETTER";
|
|
@@ -2191,9 +2215,9 @@ export declare const ColumnOrderingType: {
|
|
|
2191
2215
|
export type ColumnOrderingType =
|
|
2192
2216
|
(typeof ColumnOrderingType)[keyof typeof ColumnOrderingType];
|
|
2193
2217
|
export interface ColumnSchema {
|
|
2194
|
-
Name?: string;
|
|
2195
|
-
DataType?: string;
|
|
2196
|
-
GeographicRole?: string;
|
|
2218
|
+
Name?: string | undefined;
|
|
2219
|
+
DataType?: string | undefined;
|
|
2220
|
+
GeographicRole?: string | undefined;
|
|
2197
2221
|
}
|
|
2198
2222
|
export declare const GeoSpatialDataRole: {
|
|
2199
2223
|
readonly CITY: "CITY";
|
|
@@ -2207,8 +2231,8 @@ export declare const GeoSpatialDataRole: {
|
|
|
2207
2231
|
export type GeoSpatialDataRole =
|
|
2208
2232
|
(typeof GeoSpatialDataRole)[keyof typeof GeoSpatialDataRole];
|
|
2209
2233
|
export interface ColumnTag {
|
|
2210
|
-
ColumnGeographicRole?: GeoSpatialDataRole;
|
|
2211
|
-
ColumnDescription?: ColumnDescription;
|
|
2234
|
+
ColumnGeographicRole?: GeoSpatialDataRole | undefined;
|
|
2235
|
+
ColumnDescription?: ColumnDescription | undefined;
|
|
2212
2236
|
}
|
|
2213
2237
|
export declare const ColumnTagName: {
|
|
2214
2238
|
readonly COLUMN_DESCRIPTION: "COLUMN_DESCRIPTION";
|
|
@@ -2222,80 +2246,80 @@ export declare const UndefinedSpecifiedValueType: {
|
|
|
2222
2246
|
export type UndefinedSpecifiedValueType =
|
|
2223
2247
|
(typeof UndefinedSpecifiedValueType)[keyof typeof UndefinedSpecifiedValueType];
|
|
2224
2248
|
export interface ComparativeOrder {
|
|
2225
|
-
UseOrdering?: ColumnOrderingType;
|
|
2226
|
-
SpecifedOrder?: string[];
|
|
2227
|
-
TreatUndefinedSpecifiedValues?: UndefinedSpecifiedValueType;
|
|
2249
|
+
UseOrdering?: ColumnOrderingType | undefined;
|
|
2250
|
+
SpecifedOrder?: string[] | undefined;
|
|
2251
|
+
TreatUndefinedSpecifiedValues?: UndefinedSpecifiedValueType | undefined;
|
|
2228
2252
|
}
|
|
2229
2253
|
export declare class ConcurrentUpdatingException extends __BaseException {
|
|
2230
2254
|
readonly name: "ConcurrentUpdatingException";
|
|
2231
2255
|
readonly $fault: "server";
|
|
2232
|
-
Message?: string;
|
|
2233
|
-
RequestId?: string;
|
|
2256
|
+
Message?: string | undefined;
|
|
2257
|
+
RequestId?: string | undefined;
|
|
2234
2258
|
constructor(
|
|
2235
2259
|
opts: __ExceptionOptionType<ConcurrentUpdatingException, __BaseException>
|
|
2236
2260
|
);
|
|
2237
2261
|
}
|
|
2238
2262
|
export interface CreateAccountCustomizationRequest {
|
|
2239
2263
|
AwsAccountId: string | undefined;
|
|
2240
|
-
Namespace?: string;
|
|
2264
|
+
Namespace?: string | undefined;
|
|
2241
2265
|
AccountCustomization: AccountCustomization | undefined;
|
|
2242
|
-
Tags?: Tag[];
|
|
2266
|
+
Tags?: Tag[] | undefined;
|
|
2243
2267
|
}
|
|
2244
2268
|
export interface CreateAccountCustomizationResponse {
|
|
2245
|
-
Arn?: string;
|
|
2246
|
-
AwsAccountId?: string;
|
|
2247
|
-
Namespace?: string;
|
|
2248
|
-
AccountCustomization?: AccountCustomization;
|
|
2249
|
-
RequestId?: string;
|
|
2250
|
-
Status?: number;
|
|
2269
|
+
Arn?: string | undefined;
|
|
2270
|
+
AwsAccountId?: string | undefined;
|
|
2271
|
+
Namespace?: string | undefined;
|
|
2272
|
+
AccountCustomization?: AccountCustomization | undefined;
|
|
2273
|
+
RequestId?: string | undefined;
|
|
2274
|
+
Status?: number | undefined;
|
|
2251
2275
|
}
|
|
2252
2276
|
export declare class ResourceUnavailableException extends __BaseException {
|
|
2253
2277
|
readonly name: "ResourceUnavailableException";
|
|
2254
2278
|
readonly $fault: "server";
|
|
2255
|
-
Message?: string;
|
|
2256
|
-
ResourceType?: ExceptionResourceType;
|
|
2257
|
-
RequestId?: string;
|
|
2279
|
+
Message?: string | undefined;
|
|
2280
|
+
ResourceType?: ExceptionResourceType | undefined;
|
|
2281
|
+
RequestId?: string | undefined;
|
|
2258
2282
|
constructor(
|
|
2259
2283
|
opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
|
|
2260
2284
|
);
|
|
2261
2285
|
}
|
|
2262
2286
|
export interface CreateAccountSubscriptionRequest {
|
|
2263
|
-
Edition?: Edition;
|
|
2287
|
+
Edition?: Edition | undefined;
|
|
2264
2288
|
AuthenticationMethod: AuthenticationMethodOption | undefined;
|
|
2265
2289
|
AwsAccountId: string | undefined;
|
|
2266
2290
|
AccountName: string | undefined;
|
|
2267
2291
|
NotificationEmail: string | undefined;
|
|
2268
|
-
ActiveDirectoryName?: string;
|
|
2269
|
-
Realm?: string;
|
|
2270
|
-
DirectoryId?: string;
|
|
2271
|
-
AdminGroup?: string[];
|
|
2272
|
-
AuthorGroup?: string[];
|
|
2273
|
-
ReaderGroup?: string[];
|
|
2274
|
-
AdminProGroup?: string[];
|
|
2275
|
-
AuthorProGroup?: string[];
|
|
2276
|
-
ReaderProGroup?: string[];
|
|
2277
|
-
FirstName?: string;
|
|
2278
|
-
LastName?: string;
|
|
2279
|
-
EmailAddress?: string;
|
|
2280
|
-
ContactNumber?: string;
|
|
2281
|
-
IAMIdentityCenterInstanceArn?: string;
|
|
2292
|
+
ActiveDirectoryName?: string | undefined;
|
|
2293
|
+
Realm?: string | undefined;
|
|
2294
|
+
DirectoryId?: string | undefined;
|
|
2295
|
+
AdminGroup?: string[] | undefined;
|
|
2296
|
+
AuthorGroup?: string[] | undefined;
|
|
2297
|
+
ReaderGroup?: string[] | undefined;
|
|
2298
|
+
AdminProGroup?: string[] | undefined;
|
|
2299
|
+
AuthorProGroup?: string[] | undefined;
|
|
2300
|
+
ReaderProGroup?: string[] | undefined;
|
|
2301
|
+
FirstName?: string | undefined;
|
|
2302
|
+
LastName?: string | undefined;
|
|
2303
|
+
EmailAddress?: string | undefined;
|
|
2304
|
+
ContactNumber?: string | undefined;
|
|
2305
|
+
IAMIdentityCenterInstanceArn?: string | undefined;
|
|
2282
2306
|
}
|
|
2283
2307
|
export interface SignupResponse {
|
|
2284
|
-
IAMUser?: boolean;
|
|
2285
|
-
userLoginName?: string;
|
|
2286
|
-
accountName?: string;
|
|
2287
|
-
directoryType?: string;
|
|
2308
|
+
IAMUser?: boolean | undefined;
|
|
2309
|
+
userLoginName?: string | undefined;
|
|
2310
|
+
accountName?: string | undefined;
|
|
2311
|
+
directoryType?: string | undefined;
|
|
2288
2312
|
}
|
|
2289
2313
|
export interface CreateAccountSubscriptionResponse {
|
|
2290
|
-
SignupResponse?: SignupResponse;
|
|
2291
|
-
Status?: number;
|
|
2292
|
-
RequestId?: string;
|
|
2314
|
+
SignupResponse?: SignupResponse | undefined;
|
|
2315
|
+
Status?: number | undefined;
|
|
2316
|
+
RequestId?: string | undefined;
|
|
2293
2317
|
}
|
|
2294
2318
|
export declare class PreconditionNotMetException extends __BaseException {
|
|
2295
2319
|
readonly name: "PreconditionNotMetException";
|
|
2296
2320
|
readonly $fault: "client";
|
|
2297
|
-
Message?: string;
|
|
2298
|
-
RequestId?: string;
|
|
2321
|
+
Message?: string | undefined;
|
|
2322
|
+
RequestId?: string | undefined;
|
|
2299
2323
|
constructor(
|
|
2300
2324
|
opts: __ExceptionOptionType<PreconditionNotMetException, __BaseException>
|
|
2301
2325
|
);
|
|
@@ -2317,10 +2341,10 @@ export interface StringParameter {
|
|
|
2317
2341
|
Values: string[] | undefined;
|
|
2318
2342
|
}
|
|
2319
2343
|
export interface _Parameters {
|
|
2320
|
-
StringParameters?: StringParameter[];
|
|
2321
|
-
IntegerParameters?: IntegerParameter[];
|
|
2322
|
-
DecimalParameters?: DecimalParameter[];
|
|
2323
|
-
DateTimeParameters?: DateTimeParameter[];
|
|
2344
|
+
StringParameters?: StringParameter[] | undefined;
|
|
2345
|
+
IntegerParameters?: IntegerParameter[] | undefined;
|
|
2346
|
+
DecimalParameters?: DecimalParameter[] | undefined;
|
|
2347
|
+
DateTimeParameters?: DateTimeParameter[] | undefined;
|
|
2324
2348
|
}
|
|
2325
2349
|
export interface ResourcePermission {
|
|
2326
2350
|
Principal: string | undefined;
|
|
@@ -2339,28 +2363,28 @@ export interface CreateAnalysisRequest {
|
|
|
2339
2363
|
AwsAccountId: string | undefined;
|
|
2340
2364
|
AnalysisId: string | undefined;
|
|
2341
2365
|
Name: string | undefined;
|
|
2342
|
-
Parameters?: _Parameters;
|
|
2343
|
-
Permissions?: ResourcePermission[];
|
|
2344
|
-
SourceEntity?: AnalysisSourceEntity;
|
|
2345
|
-
ThemeArn?: string;
|
|
2346
|
-
Tags?: Tag[];
|
|
2347
|
-
Definition?: AnalysisDefinition;
|
|
2348
|
-
ValidationStrategy?: ValidationStrategy;
|
|
2349
|
-
FolderArns?: string[];
|
|
2366
|
+
Parameters?: _Parameters | undefined;
|
|
2367
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
2368
|
+
SourceEntity?: AnalysisSourceEntity | undefined;
|
|
2369
|
+
ThemeArn?: string | undefined;
|
|
2370
|
+
Tags?: Tag[] | undefined;
|
|
2371
|
+
Definition?: AnalysisDefinition | undefined;
|
|
2372
|
+
ValidationStrategy?: ValidationStrategy | undefined;
|
|
2373
|
+
FolderArns?: string[] | undefined;
|
|
2350
2374
|
}
|
|
2351
2375
|
export interface CreateAnalysisResponse {
|
|
2352
|
-
Arn?: string;
|
|
2353
|
-
AnalysisId?: string;
|
|
2354
|
-
CreationStatus?: ResourceStatus;
|
|
2355
|
-
Status?: number;
|
|
2356
|
-
RequestId?: string;
|
|
2376
|
+
Arn?: string | undefined;
|
|
2377
|
+
AnalysisId?: string | undefined;
|
|
2378
|
+
CreationStatus?: ResourceStatus | undefined;
|
|
2379
|
+
Status?: number | undefined;
|
|
2380
|
+
RequestId?: string | undefined;
|
|
2357
2381
|
}
|
|
2358
2382
|
export declare class LimitExceededException extends __BaseException {
|
|
2359
2383
|
readonly name: "LimitExceededException";
|
|
2360
2384
|
readonly $fault: "client";
|
|
2361
|
-
Message?: string;
|
|
2362
|
-
ResourceType?: ExceptionResourceType;
|
|
2363
|
-
RequestId?: string;
|
|
2385
|
+
Message?: string | undefined;
|
|
2386
|
+
ResourceType?: ExceptionResourceType | undefined;
|
|
2387
|
+
RequestId?: string | undefined;
|
|
2364
2388
|
constructor(
|
|
2365
2389
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
2366
2390
|
);
|
|
@@ -2368,8 +2392,8 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
2368
2392
|
export declare class UnsupportedUserEditionException extends __BaseException {
|
|
2369
2393
|
readonly name: "UnsupportedUserEditionException";
|
|
2370
2394
|
readonly $fault: "client";
|
|
2371
|
-
Message?: string;
|
|
2372
|
-
RequestId?: string;
|
|
2395
|
+
Message?: string | undefined;
|
|
2396
|
+
RequestId?: string | undefined;
|
|
2373
2397
|
constructor(
|
|
2374
2398
|
opts: __ExceptionOptionType<
|
|
2375
2399
|
UnsupportedUserEditionException,
|
|
@@ -2381,19 +2405,19 @@ export interface CreateColumnsOperation {
|
|
|
2381
2405
|
Columns: CalculatedColumn[] | undefined;
|
|
2382
2406
|
}
|
|
2383
2407
|
export interface DataPointDrillUpDownOption {
|
|
2384
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2408
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2385
2409
|
}
|
|
2386
2410
|
export interface DataPointMenuLabelOption {
|
|
2387
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2411
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2388
2412
|
}
|
|
2389
2413
|
export interface DataPointTooltipOption {
|
|
2390
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2414
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2391
2415
|
}
|
|
2392
2416
|
export interface ExportToCSVOption {
|
|
2393
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2417
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2394
2418
|
}
|
|
2395
2419
|
export interface ExportWithHiddenFieldsOption {
|
|
2396
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2420
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2397
2421
|
}
|
|
2398
2422
|
export declare const DashboardUIState: {
|
|
2399
2423
|
readonly COLLAPSED: "COLLAPSED";
|
|
@@ -2402,80 +2426,82 @@ export declare const DashboardUIState: {
|
|
|
2402
2426
|
export type DashboardUIState =
|
|
2403
2427
|
(typeof DashboardUIState)[keyof typeof DashboardUIState];
|
|
2404
2428
|
export interface SheetControlsOption {
|
|
2405
|
-
VisibilityState?: DashboardUIState;
|
|
2429
|
+
VisibilityState?: DashboardUIState | undefined;
|
|
2406
2430
|
}
|
|
2407
2431
|
export interface SheetLayoutElementMaximizationOption {
|
|
2408
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2432
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2409
2433
|
}
|
|
2410
2434
|
export interface VisualAxisSortOption {
|
|
2411
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2435
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2412
2436
|
}
|
|
2413
2437
|
export interface ExportHiddenFieldsOption {
|
|
2414
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2438
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2415
2439
|
}
|
|
2416
2440
|
export interface DashboardVisualPublishOptions {
|
|
2417
|
-
ExportHiddenFieldsOption?: ExportHiddenFieldsOption;
|
|
2441
|
+
ExportHiddenFieldsOption?: ExportHiddenFieldsOption | undefined;
|
|
2418
2442
|
}
|
|
2419
2443
|
export interface DashboardPublishOptions {
|
|
2420
|
-
AdHocFilteringOption?: AdHocFilteringOption;
|
|
2421
|
-
ExportToCSVOption?: ExportToCSVOption;
|
|
2422
|
-
SheetControlsOption?: SheetControlsOption;
|
|
2423
|
-
VisualPublishOptions?: DashboardVisualPublishOptions;
|
|
2424
|
-
SheetLayoutElementMaximizationOption?:
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2444
|
+
AdHocFilteringOption?: AdHocFilteringOption | undefined;
|
|
2445
|
+
ExportToCSVOption?: ExportToCSVOption | undefined;
|
|
2446
|
+
SheetControlsOption?: SheetControlsOption | undefined;
|
|
2447
|
+
VisualPublishOptions?: DashboardVisualPublishOptions | undefined;
|
|
2448
|
+
SheetLayoutElementMaximizationOption?:
|
|
2449
|
+
| SheetLayoutElementMaximizationOption
|
|
2450
|
+
| undefined;
|
|
2451
|
+
VisualMenuOption?: VisualMenuOption | undefined;
|
|
2452
|
+
VisualAxisSortOption?: VisualAxisSortOption | undefined;
|
|
2453
|
+
ExportWithHiddenFieldsOption?: ExportWithHiddenFieldsOption | undefined;
|
|
2454
|
+
DataPointDrillUpDownOption?: DataPointDrillUpDownOption | undefined;
|
|
2455
|
+
DataPointMenuLabelOption?: DataPointMenuLabelOption | undefined;
|
|
2456
|
+
DataPointTooltipOption?: DataPointTooltipOption | undefined;
|
|
2431
2457
|
}
|
|
2432
2458
|
export interface DashboardVersionDefinition {
|
|
2433
2459
|
DataSetIdentifierDeclarations: DataSetIdentifierDeclaration[] | undefined;
|
|
2434
|
-
Sheets?: SheetDefinition[];
|
|
2435
|
-
CalculatedFields?: CalculatedField[];
|
|
2436
|
-
ParameterDeclarations?: ParameterDeclaration[];
|
|
2437
|
-
FilterGroups?: FilterGroup[];
|
|
2438
|
-
ColumnConfigurations?: ColumnConfiguration[];
|
|
2439
|
-
AnalysisDefaults?: AnalysisDefaults;
|
|
2440
|
-
Options?: AssetOptions;
|
|
2460
|
+
Sheets?: SheetDefinition[] | undefined;
|
|
2461
|
+
CalculatedFields?: CalculatedField[] | undefined;
|
|
2462
|
+
ParameterDeclarations?: ParameterDeclaration[] | undefined;
|
|
2463
|
+
FilterGroups?: FilterGroup[] | undefined;
|
|
2464
|
+
ColumnConfigurations?: ColumnConfiguration[] | undefined;
|
|
2465
|
+
AnalysisDefaults?: AnalysisDefaults | undefined;
|
|
2466
|
+
Options?: AssetOptions | undefined;
|
|
2441
2467
|
}
|
|
2442
2468
|
export interface LinkSharingConfiguration {
|
|
2443
|
-
Permissions?: ResourcePermission[];
|
|
2469
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
2444
2470
|
}
|
|
2445
2471
|
export interface DashboardSourceTemplate {
|
|
2446
2472
|
DataSetReferences: DataSetReference[] | undefined;
|
|
2447
2473
|
Arn: string | undefined;
|
|
2448
2474
|
}
|
|
2449
2475
|
export interface DashboardSourceEntity {
|
|
2450
|
-
SourceTemplate?: DashboardSourceTemplate;
|
|
2476
|
+
SourceTemplate?: DashboardSourceTemplate | undefined;
|
|
2451
2477
|
}
|
|
2452
2478
|
export interface CreateDashboardRequest {
|
|
2453
2479
|
AwsAccountId: string | undefined;
|
|
2454
2480
|
DashboardId: string | undefined;
|
|
2455
2481
|
Name: string | undefined;
|
|
2456
|
-
Parameters?: _Parameters;
|
|
2457
|
-
Permissions?: ResourcePermission[];
|
|
2458
|
-
SourceEntity?: DashboardSourceEntity;
|
|
2459
|
-
Tags?: Tag[];
|
|
2460
|
-
VersionDescription?: string;
|
|
2461
|
-
DashboardPublishOptions?: DashboardPublishOptions;
|
|
2462
|
-
ThemeArn?: string;
|
|
2463
|
-
Definition?: DashboardVersionDefinition;
|
|
2464
|
-
ValidationStrategy?: ValidationStrategy;
|
|
2465
|
-
FolderArns?: string[];
|
|
2466
|
-
LinkSharingConfiguration?: LinkSharingConfiguration;
|
|
2467
|
-
LinkEntities?: string[];
|
|
2482
|
+
Parameters?: _Parameters | undefined;
|
|
2483
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
2484
|
+
SourceEntity?: DashboardSourceEntity | undefined;
|
|
2485
|
+
Tags?: Tag[] | undefined;
|
|
2486
|
+
VersionDescription?: string | undefined;
|
|
2487
|
+
DashboardPublishOptions?: DashboardPublishOptions | undefined;
|
|
2488
|
+
ThemeArn?: string | undefined;
|
|
2489
|
+
Definition?: DashboardVersionDefinition | undefined;
|
|
2490
|
+
ValidationStrategy?: ValidationStrategy | undefined;
|
|
2491
|
+
FolderArns?: string[] | undefined;
|
|
2492
|
+
LinkSharingConfiguration?: LinkSharingConfiguration | undefined;
|
|
2493
|
+
LinkEntities?: string[] | undefined;
|
|
2468
2494
|
}
|
|
2469
2495
|
export interface CreateDashboardResponse {
|
|
2470
|
-
Arn?: string;
|
|
2471
|
-
VersionArn?: string;
|
|
2472
|
-
DashboardId?: string;
|
|
2473
|
-
CreationStatus?: ResourceStatus;
|
|
2474
|
-
Status?: number;
|
|
2475
|
-
RequestId?: string;
|
|
2496
|
+
Arn?: string | undefined;
|
|
2497
|
+
VersionArn?: string | undefined;
|
|
2498
|
+
DashboardId?: string | undefined;
|
|
2499
|
+
CreationStatus?: ResourceStatus | undefined;
|
|
2500
|
+
Status?: number | undefined;
|
|
2501
|
+
RequestId?: string | undefined;
|
|
2476
2502
|
}
|
|
2477
2503
|
export interface DateTimeDatasetParameterDefaultValues {
|
|
2478
|
-
StaticValues?: Date[];
|
|
2504
|
+
StaticValues?: Date[] | undefined;
|
|
2479
2505
|
}
|
|
2480
2506
|
export declare const DatasetParameterValueType: {
|
|
2481
2507
|
readonly MULTI_VALUED: "MULTI_VALUED";
|
|
@@ -2487,49 +2513,49 @@ export interface DateTimeDatasetParameter {
|
|
|
2487
2513
|
Id: string | undefined;
|
|
2488
2514
|
Name: string | undefined;
|
|
2489
2515
|
ValueType: DatasetParameterValueType | undefined;
|
|
2490
|
-
TimeGranularity?: TimeGranularity;
|
|
2491
|
-
DefaultValues?: DateTimeDatasetParameterDefaultValues;
|
|
2516
|
+
TimeGranularity?: TimeGranularity | undefined;
|
|
2517
|
+
DefaultValues?: DateTimeDatasetParameterDefaultValues | undefined;
|
|
2492
2518
|
}
|
|
2493
2519
|
export interface DecimalDatasetParameterDefaultValues {
|
|
2494
|
-
StaticValues?: number[];
|
|
2520
|
+
StaticValues?: number[] | undefined;
|
|
2495
2521
|
}
|
|
2496
2522
|
export interface DecimalDatasetParameter {
|
|
2497
2523
|
Id: string | undefined;
|
|
2498
2524
|
Name: string | undefined;
|
|
2499
2525
|
ValueType: DatasetParameterValueType | undefined;
|
|
2500
|
-
DefaultValues?: DecimalDatasetParameterDefaultValues;
|
|
2526
|
+
DefaultValues?: DecimalDatasetParameterDefaultValues | undefined;
|
|
2501
2527
|
}
|
|
2502
2528
|
export interface IntegerDatasetParameterDefaultValues {
|
|
2503
|
-
StaticValues?: number[];
|
|
2529
|
+
StaticValues?: number[] | undefined;
|
|
2504
2530
|
}
|
|
2505
2531
|
export interface IntegerDatasetParameter {
|
|
2506
2532
|
Id: string | undefined;
|
|
2507
2533
|
Name: string | undefined;
|
|
2508
2534
|
ValueType: DatasetParameterValueType | undefined;
|
|
2509
|
-
DefaultValues?: IntegerDatasetParameterDefaultValues;
|
|
2535
|
+
DefaultValues?: IntegerDatasetParameterDefaultValues | undefined;
|
|
2510
2536
|
}
|
|
2511
2537
|
export interface StringDatasetParameterDefaultValues {
|
|
2512
|
-
StaticValues?: string[];
|
|
2538
|
+
StaticValues?: string[] | undefined;
|
|
2513
2539
|
}
|
|
2514
2540
|
export interface StringDatasetParameter {
|
|
2515
2541
|
Id: string | undefined;
|
|
2516
2542
|
Name: string | undefined;
|
|
2517
2543
|
ValueType: DatasetParameterValueType | undefined;
|
|
2518
|
-
DefaultValues?: StringDatasetParameterDefaultValues;
|
|
2544
|
+
DefaultValues?: StringDatasetParameterDefaultValues | undefined;
|
|
2519
2545
|
}
|
|
2520
2546
|
export interface DatasetParameter {
|
|
2521
|
-
StringDatasetParameter?: StringDatasetParameter;
|
|
2522
|
-
DecimalDatasetParameter?: DecimalDatasetParameter;
|
|
2523
|
-
IntegerDatasetParameter?: IntegerDatasetParameter;
|
|
2524
|
-
DateTimeDatasetParameter?: DateTimeDatasetParameter;
|
|
2547
|
+
StringDatasetParameter?: StringDatasetParameter | undefined;
|
|
2548
|
+
DecimalDatasetParameter?: DecimalDatasetParameter | undefined;
|
|
2549
|
+
IntegerDatasetParameter?: IntegerDatasetParameter | undefined;
|
|
2550
|
+
DateTimeDatasetParameter?: DateTimeDatasetParameter | undefined;
|
|
2525
2551
|
}
|
|
2526
2552
|
export interface DataSetUsageConfiguration {
|
|
2527
|
-
DisableUseAsDirectQuerySource?: boolean;
|
|
2528
|
-
DisableUseAsImportedSource?: boolean;
|
|
2553
|
+
DisableUseAsDirectQuerySource?: boolean | undefined;
|
|
2554
|
+
DisableUseAsImportedSource?: boolean | undefined;
|
|
2529
2555
|
}
|
|
2530
2556
|
export interface FieldFolder {
|
|
2531
|
-
description?: string;
|
|
2532
|
-
columns?: string[];
|
|
2557
|
+
description?: string | undefined;
|
|
2558
|
+
columns?: string[] | undefined;
|
|
2533
2559
|
}
|
|
2534
2560
|
export declare const DataSetImportMode: {
|
|
2535
2561
|
readonly DIRECT_QUERY: "DIRECT_QUERY";
|
|
@@ -2541,15 +2567,15 @@ export interface FilterOperation {
|
|
|
2541
2567
|
ConditionExpression: string | undefined;
|
|
2542
2568
|
}
|
|
2543
2569
|
export interface NewDefaultValues {
|
|
2544
|
-
StringStaticValues?: string[];
|
|
2545
|
-
DecimalStaticValues?: number[];
|
|
2546
|
-
DateTimeStaticValues?: Date[];
|
|
2547
|
-
IntegerStaticValues?: number[];
|
|
2570
|
+
StringStaticValues?: string[] | undefined;
|
|
2571
|
+
DecimalStaticValues?: number[] | undefined;
|
|
2572
|
+
DateTimeStaticValues?: Date[] | undefined;
|
|
2573
|
+
IntegerStaticValues?: number[] | undefined;
|
|
2548
2574
|
}
|
|
2549
2575
|
export interface OverrideDatasetParameterOperation {
|
|
2550
2576
|
ParameterName: string | undefined;
|
|
2551
|
-
NewParameterName?: string;
|
|
2552
|
-
NewDefaultValues?: NewDefaultValues;
|
|
2577
|
+
NewParameterName?: string | undefined;
|
|
2578
|
+
NewDefaultValues?: NewDefaultValues | undefined;
|
|
2553
2579
|
}
|
|
2554
2580
|
export interface ProjectOperation {
|
|
2555
2581
|
ProjectedColumns: string[] | undefined;
|
|
@@ -2692,7 +2718,7 @@ export declare namespace TransformOperation {
|
|
|
2692
2718
|
const visit: <T>(value: TransformOperation, visitor: Visitor<T>) => T;
|
|
2693
2719
|
}
|
|
2694
2720
|
export interface JoinKeyProperties {
|
|
2695
|
-
UniqueKey?: boolean;
|
|
2721
|
+
UniqueKey?: boolean | undefined;
|
|
2696
2722
|
}
|
|
2697
2723
|
export declare const JoinType: {
|
|
2698
2724
|
readonly INNER: "INNER";
|
|
@@ -2704,19 +2730,19 @@ export type JoinType = (typeof JoinType)[keyof typeof JoinType];
|
|
|
2704
2730
|
export interface JoinInstruction {
|
|
2705
2731
|
LeftOperand: string | undefined;
|
|
2706
2732
|
RightOperand: string | undefined;
|
|
2707
|
-
LeftJoinKeyProperties?: JoinKeyProperties;
|
|
2708
|
-
RightJoinKeyProperties?: JoinKeyProperties;
|
|
2733
|
+
LeftJoinKeyProperties?: JoinKeyProperties | undefined;
|
|
2734
|
+
RightJoinKeyProperties?: JoinKeyProperties | undefined;
|
|
2709
2735
|
Type: JoinType | undefined;
|
|
2710
2736
|
OnClause: string | undefined;
|
|
2711
2737
|
}
|
|
2712
2738
|
export interface LogicalTableSource {
|
|
2713
|
-
JoinInstruction?: JoinInstruction;
|
|
2714
|
-
PhysicalTableId?: string;
|
|
2715
|
-
DataSetArn?: string;
|
|
2739
|
+
JoinInstruction?: JoinInstruction | undefined;
|
|
2740
|
+
PhysicalTableId?: string | undefined;
|
|
2741
|
+
DataSetArn?: string | undefined;
|
|
2716
2742
|
}
|
|
2717
2743
|
export interface LogicalTable {
|
|
2718
2744
|
Alias: string | undefined;
|
|
2719
|
-
DataTransforms?: TransformOperation[];
|
|
2745
|
+
DataTransforms?: TransformOperation[] | undefined;
|
|
2720
2746
|
Source: LogicalTableSource | undefined;
|
|
2721
2747
|
}
|
|
2722
2748
|
export declare const InputColumnDataType: {
|
|
@@ -2733,18 +2759,18 @@ export type InputColumnDataType =
|
|
|
2733
2759
|
export interface InputColumn {
|
|
2734
2760
|
Name: string | undefined;
|
|
2735
2761
|
Type: InputColumnDataType | undefined;
|
|
2736
|
-
SubType?: ColumnDataSubType;
|
|
2762
|
+
SubType?: ColumnDataSubType | undefined;
|
|
2737
2763
|
}
|
|
2738
2764
|
export interface CustomSql {
|
|
2739
2765
|
DataSourceArn: string | undefined;
|
|
2740
2766
|
Name: string | undefined;
|
|
2741
2767
|
SqlQuery: string | undefined;
|
|
2742
|
-
Columns?: InputColumn[];
|
|
2768
|
+
Columns?: InputColumn[] | undefined;
|
|
2743
2769
|
}
|
|
2744
2770
|
export interface RelationalTable {
|
|
2745
2771
|
DataSourceArn: string | undefined;
|
|
2746
|
-
Catalog?: string;
|
|
2747
|
-
Schema?: string;
|
|
2772
|
+
Catalog?: string | undefined;
|
|
2773
|
+
Schema?: string | undefined;
|
|
2748
2774
|
Name: string | undefined;
|
|
2749
2775
|
InputColumns: InputColumn[] | undefined;
|
|
2750
2776
|
}
|
|
@@ -2763,15 +2789,15 @@ export declare const TextQualifier: {
|
|
|
2763
2789
|
};
|
|
2764
2790
|
export type TextQualifier = (typeof TextQualifier)[keyof typeof TextQualifier];
|
|
2765
2791
|
export interface UploadSettings {
|
|
2766
|
-
Format?: FileFormat;
|
|
2767
|
-
StartFromRow?: number;
|
|
2768
|
-
ContainsHeader?: boolean;
|
|
2769
|
-
TextQualifier?: TextQualifier;
|
|
2770
|
-
Delimiter?: string;
|
|
2792
|
+
Format?: FileFormat | undefined;
|
|
2793
|
+
StartFromRow?: number | undefined;
|
|
2794
|
+
ContainsHeader?: boolean | undefined;
|
|
2795
|
+
TextQualifier?: TextQualifier | undefined;
|
|
2796
|
+
Delimiter?: string | undefined;
|
|
2771
2797
|
}
|
|
2772
2798
|
export interface S3Source {
|
|
2773
2799
|
DataSourceArn: string | undefined;
|
|
2774
|
-
UploadSettings?: UploadSettings;
|
|
2800
|
+
UploadSettings?: UploadSettings | undefined;
|
|
2775
2801
|
InputColumns: InputColumn[] | undefined;
|
|
2776
2802
|
}
|
|
2777
2803
|
export type PhysicalTable =
|