@aws-sdk/client-quicksight 3.686.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-cjs/index.js +12 -5
- package/dist-es/models/models_2.js +5 -4
- package/dist-es/models/models_3.js +4 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +41 -3
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +21 -1
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +41 -3
- package/dist-types/commands/DescribeTopicPermissionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTopicRefreshCommand.d.ts +1 -2
- package/dist-types/commands/ListDataSourcesCommand.d.ts +41 -3
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +21 -1
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +41 -3
- 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 +601 -582
- package/dist-types/models/models_3.d.ts +844 -845
- package/dist-types/models/models_4.d.ts +707 -656
- package/dist-types/ts3.4/commands/DescribeTopicPermissionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTopicRefreshCommand.d.ts +4 -2
- 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 +569 -536
- package/dist-types/ts3.4/models/models_3.d.ts +815 -807
- package/dist-types/ts3.4/models/models_4.d.ts +681 -655
- 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,15 +697,34 @@ 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;
|
|
686
704
|
}
|
|
705
|
+
export declare const AuthenticationType: {
|
|
706
|
+
readonly PASSWORD: "PASSWORD";
|
|
707
|
+
readonly TOKEN: "TOKEN";
|
|
708
|
+
readonly X509: "X509";
|
|
709
|
+
};
|
|
710
|
+
export type AuthenticationType =
|
|
711
|
+
(typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
712
|
+
export interface VpcConnectionProperties {
|
|
713
|
+
VpcConnectionArn: string | undefined;
|
|
714
|
+
}
|
|
715
|
+
export interface OAuthParameters {
|
|
716
|
+
TokenProviderUrl: string | undefined;
|
|
717
|
+
OAuthScope?: string | undefined;
|
|
718
|
+
IdentityProviderVpcConnectionProperties?: VpcConnectionProperties | undefined;
|
|
719
|
+
IdentityProviderResourceUri?: string | undefined;
|
|
720
|
+
}
|
|
687
721
|
export interface SnowflakeParameters {
|
|
688
722
|
Host: string | undefined;
|
|
689
723
|
Database: string | undefined;
|
|
690
724
|
Warehouse: string | undefined;
|
|
725
|
+
AuthenticationType?: AuthenticationType | undefined;
|
|
726
|
+
DatabaseAccessControlRole?: string | undefined;
|
|
727
|
+
OAuthParameters?: OAuthParameters | undefined;
|
|
691
728
|
}
|
|
692
729
|
export interface SparkParameters {
|
|
693
730
|
Host: string | undefined;
|
|
@@ -708,7 +745,10 @@ export interface StarburstParameters {
|
|
|
708
745
|
Host: string | undefined;
|
|
709
746
|
Port: number | undefined;
|
|
710
747
|
Catalog: string | undefined;
|
|
711
|
-
ProductType?: StarburstProductType;
|
|
748
|
+
ProductType?: StarburstProductType | undefined;
|
|
749
|
+
DatabaseAccessControlRole?: string | undefined;
|
|
750
|
+
AuthenticationType?: AuthenticationType | undefined;
|
|
751
|
+
OAuthParameters?: OAuthParameters | undefined;
|
|
712
752
|
}
|
|
713
753
|
export interface TeradataParameters {
|
|
714
754
|
Host: string | undefined;
|
|
@@ -1568,18 +1608,15 @@ export declare namespace DataSourceParameters {
|
|
|
1568
1608
|
const visit: <T>(value: DataSourceParameters, visitor: Visitor<T>) => T;
|
|
1569
1609
|
}
|
|
1570
1610
|
export interface SslProperties {
|
|
1571
|
-
DisableSsl?: boolean;
|
|
1572
|
-
}
|
|
1573
|
-
export interface VpcConnectionProperties {
|
|
1574
|
-
VpcConnectionArn: string | undefined;
|
|
1611
|
+
DisableSsl?: boolean | undefined;
|
|
1575
1612
|
}
|
|
1576
1613
|
export interface AssetBundleImportJobDataSourceOverrideParameters {
|
|
1577
1614
|
DataSourceId: string | undefined;
|
|
1578
|
-
Name?: string;
|
|
1579
|
-
DataSourceParameters?: DataSourceParameters;
|
|
1580
|
-
VpcConnectionProperties?: VpcConnectionProperties;
|
|
1581
|
-
SslProperties?: SslProperties;
|
|
1582
|
-
Credentials?: AssetBundleImportJobDataSourceCredentials;
|
|
1615
|
+
Name?: string | undefined;
|
|
1616
|
+
DataSourceParameters?: DataSourceParameters | undefined;
|
|
1617
|
+
VpcConnectionProperties?: VpcConnectionProperties | undefined;
|
|
1618
|
+
SslProperties?: SslProperties | undefined;
|
|
1619
|
+
Credentials?: AssetBundleImportJobDataSourceCredentials | undefined;
|
|
1583
1620
|
}
|
|
1584
1621
|
export interface AssetBundleImportJobDataSourceOverridePermissions {
|
|
1585
1622
|
DataSourceIds: string[] | undefined;
|
|
@@ -1590,18 +1627,18 @@ export interface AssetBundleImportJobDataSourceOverrideTags {
|
|
|
1590
1627
|
Tags: Tag[] | undefined;
|
|
1591
1628
|
}
|
|
1592
1629
|
export interface AssetBundleImportJobError {
|
|
1593
|
-
Arn?: string;
|
|
1594
|
-
Type?: string;
|
|
1595
|
-
Message?: string;
|
|
1630
|
+
Arn?: string | undefined;
|
|
1631
|
+
Type?: string | undefined;
|
|
1632
|
+
Message?: string | undefined;
|
|
1596
1633
|
}
|
|
1597
1634
|
export interface AssetBundleImportJobFolderOverrideParameters {
|
|
1598
1635
|
FolderId: string | undefined;
|
|
1599
|
-
Name?: string;
|
|
1600
|
-
ParentFolderArn?: string;
|
|
1636
|
+
Name?: string | undefined;
|
|
1637
|
+
ParentFolderArn?: string | undefined;
|
|
1601
1638
|
}
|
|
1602
1639
|
export interface AssetBundleImportJobFolderOverridePermissions {
|
|
1603
1640
|
FolderIds: string[] | undefined;
|
|
1604
|
-
Permissions?: AssetBundleResourcePermissions;
|
|
1641
|
+
Permissions?: AssetBundleResourcePermissions | undefined;
|
|
1605
1642
|
}
|
|
1606
1643
|
export interface AssetBundleImportJobFolderOverrideTags {
|
|
1607
1644
|
FolderIds: string[] | undefined;
|
|
@@ -1610,45 +1647,51 @@ export interface AssetBundleImportJobFolderOverrideTags {
|
|
|
1610
1647
|
export interface AssetBundleImportJobRefreshScheduleOverrideParameters {
|
|
1611
1648
|
DataSetId: string | undefined;
|
|
1612
1649
|
ScheduleId: string | undefined;
|
|
1613
|
-
StartAfterDateTime?: Date;
|
|
1650
|
+
StartAfterDateTime?: Date | undefined;
|
|
1614
1651
|
}
|
|
1615
1652
|
export interface AssetBundleImportJobResourceIdOverrideConfiguration {
|
|
1616
|
-
PrefixForAllResources?: string;
|
|
1653
|
+
PrefixForAllResources?: string | undefined;
|
|
1617
1654
|
}
|
|
1618
1655
|
export interface AssetBundleImportJobThemeOverrideParameters {
|
|
1619
1656
|
ThemeId: string | undefined;
|
|
1620
|
-
Name?: string;
|
|
1657
|
+
Name?: string | undefined;
|
|
1621
1658
|
}
|
|
1622
1659
|
export interface AssetBundleImportJobVPCConnectionOverrideParameters {
|
|
1623
1660
|
VPCConnectionId: string | undefined;
|
|
1624
|
-
Name?: string;
|
|
1625
|
-
SubnetIds?: string[];
|
|
1626
|
-
SecurityGroupIds?: string[];
|
|
1627
|
-
DnsResolvers?: string[];
|
|
1628
|
-
RoleArn?: string;
|
|
1661
|
+
Name?: string | undefined;
|
|
1662
|
+
SubnetIds?: string[] | undefined;
|
|
1663
|
+
SecurityGroupIds?: string[] | undefined;
|
|
1664
|
+
DnsResolvers?: string[] | undefined;
|
|
1665
|
+
RoleArn?: string | undefined;
|
|
1629
1666
|
}
|
|
1630
1667
|
export interface AssetBundleImportJobOverrideParameters {
|
|
1631
|
-
ResourceIdOverrideConfiguration?:
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
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;
|
|
1640
1683
|
}
|
|
1641
1684
|
export interface AssetBundleImportJobThemeOverridePermissions {
|
|
1642
1685
|
ThemeIds: string[] | undefined;
|
|
1643
1686
|
Permissions: AssetBundleResourcePermissions | undefined;
|
|
1644
1687
|
}
|
|
1645
1688
|
export interface AssetBundleImportJobOverridePermissions {
|
|
1646
|
-
DataSources?: AssetBundleImportJobDataSourceOverridePermissions[];
|
|
1647
|
-
DataSets?: AssetBundleImportJobDataSetOverridePermissions[];
|
|
1648
|
-
Themes?: AssetBundleImportJobThemeOverridePermissions[];
|
|
1649
|
-
Analyses?: AssetBundleImportJobAnalysisOverridePermissions[];
|
|
1650
|
-
Dashboards?: AssetBundleImportJobDashboardOverridePermissions[];
|
|
1651
|
-
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;
|
|
1652
1695
|
}
|
|
1653
1696
|
export interface AssetBundleImportJobThemeOverrideTags {
|
|
1654
1697
|
ThemeIds: string[] | undefined;
|
|
@@ -1659,16 +1702,16 @@ export interface AssetBundleImportJobVPCConnectionOverrideTags {
|
|
|
1659
1702
|
Tags: Tag[] | undefined;
|
|
1660
1703
|
}
|
|
1661
1704
|
export interface AssetBundleImportJobOverrideTags {
|
|
1662
|
-
VPCConnections?: AssetBundleImportJobVPCConnectionOverrideTags[];
|
|
1663
|
-
DataSources?: AssetBundleImportJobDataSourceOverrideTags[];
|
|
1664
|
-
DataSets?: AssetBundleImportJobDataSetOverrideTags[];
|
|
1665
|
-
Themes?: AssetBundleImportJobThemeOverrideTags[];
|
|
1666
|
-
Analyses?: AssetBundleImportJobAnalysisOverrideTags[];
|
|
1667
|
-
Dashboards?: AssetBundleImportJobDashboardOverrideTags[];
|
|
1668
|
-
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;
|
|
1669
1712
|
}
|
|
1670
1713
|
export interface AssetBundleImportJobOverrideValidationStrategy {
|
|
1671
|
-
StrictModeForAllResources?: boolean;
|
|
1714
|
+
StrictModeForAllResources?: boolean | undefined;
|
|
1672
1715
|
}
|
|
1673
1716
|
export declare const AssetBundleImportJobStatus: {
|
|
1674
1717
|
readonly FAILED: "FAILED";
|
|
@@ -1682,23 +1725,23 @@ export declare const AssetBundleImportJobStatus: {
|
|
|
1682
1725
|
export type AssetBundleImportJobStatus =
|
|
1683
1726
|
(typeof AssetBundleImportJobStatus)[keyof typeof AssetBundleImportJobStatus];
|
|
1684
1727
|
export interface AssetBundleImportJobSummary {
|
|
1685
|
-
JobStatus?: AssetBundleImportJobStatus;
|
|
1686
|
-
Arn?: string;
|
|
1687
|
-
CreatedTime?: Date;
|
|
1688
|
-
AssetBundleImportJobId?: string;
|
|
1689
|
-
FailureAction?: AssetBundleImportFailureAction;
|
|
1728
|
+
JobStatus?: AssetBundleImportJobStatus | undefined;
|
|
1729
|
+
Arn?: string | undefined;
|
|
1730
|
+
CreatedTime?: Date | undefined;
|
|
1731
|
+
AssetBundleImportJobId?: string | undefined;
|
|
1732
|
+
FailureAction?: AssetBundleImportFailureAction | undefined;
|
|
1690
1733
|
}
|
|
1691
1734
|
export interface AssetBundleImportJobWarning {
|
|
1692
|
-
Arn?: string;
|
|
1693
|
-
Message?: string;
|
|
1735
|
+
Arn?: string | undefined;
|
|
1736
|
+
Message?: string | undefined;
|
|
1694
1737
|
}
|
|
1695
1738
|
export interface AssetBundleImportSource {
|
|
1696
|
-
Body?: Uint8Array;
|
|
1697
|
-
S3Uri?: string;
|
|
1739
|
+
Body?: Uint8Array | undefined;
|
|
1740
|
+
S3Uri?: string | undefined;
|
|
1698
1741
|
}
|
|
1699
1742
|
export interface AssetBundleImportSourceDescription {
|
|
1700
|
-
Body?: string;
|
|
1701
|
-
S3Uri?: string;
|
|
1743
|
+
Body?: string | undefined;
|
|
1744
|
+
S3Uri?: string | undefined;
|
|
1702
1745
|
}
|
|
1703
1746
|
export declare const AssignmentStatus: {
|
|
1704
1747
|
readonly DISABLED: "DISABLED";
|
|
@@ -1720,8 +1763,8 @@ export declare const ServiceType: {
|
|
|
1720
1763
|
};
|
|
1721
1764
|
export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
|
|
1722
1765
|
export interface AuthorizedTargetsByService {
|
|
1723
|
-
Service?: ServiceType;
|
|
1724
|
-
AuthorizedTargets?: string[];
|
|
1766
|
+
Service?: ServiceType | undefined;
|
|
1767
|
+
AuthorizedTargets?: string[] | undefined;
|
|
1725
1768
|
}
|
|
1726
1769
|
export declare const AuthorSpecifiedAggregation: {
|
|
1727
1770
|
readonly AVERAGE: "AVERAGE";
|
|
@@ -1747,7 +1790,7 @@ export declare const ContributionAnalysisDirection: {
|
|
|
1747
1790
|
export type ContributionAnalysisDirection =
|
|
1748
1791
|
(typeof ContributionAnalysisDirection)[keyof typeof ContributionAnalysisDirection];
|
|
1749
1792
|
export interface ContributionAnalysisFactor {
|
|
1750
|
-
FieldName?: string;
|
|
1793
|
+
FieldName?: string | undefined;
|
|
1751
1794
|
}
|
|
1752
1795
|
export declare const ContributionAnalysisSortType: {
|
|
1753
1796
|
readonly ABSOLUTE_DIFFERENCE: "ABSOLUTE_DIFFERENCE";
|
|
@@ -1767,9 +1810,9 @@ export declare const TopicSortDirection: {
|
|
|
1767
1810
|
export type TopicSortDirection =
|
|
1768
1811
|
(typeof TopicSortDirection)[keyof typeof TopicSortDirection];
|
|
1769
1812
|
export interface FilterAggMetrics {
|
|
1770
|
-
MetricOperand?: Identifier;
|
|
1771
|
-
Function?: AggType;
|
|
1772
|
-
SortDirection?: TopicSortDirection;
|
|
1813
|
+
MetricOperand?: Identifier | undefined;
|
|
1814
|
+
Function?: AggType | undefined;
|
|
1815
|
+
SortDirection?: TopicSortDirection | undefined;
|
|
1773
1816
|
}
|
|
1774
1817
|
export declare const ConstantType: {
|
|
1775
1818
|
readonly COLLECTIVE: "COLLECTIVE";
|
|
@@ -1778,15 +1821,15 @@ export declare const ConstantType: {
|
|
|
1778
1821
|
};
|
|
1779
1822
|
export type ConstantType = (typeof ConstantType)[keyof typeof ConstantType];
|
|
1780
1823
|
export interface CollectiveConstantEntry {
|
|
1781
|
-
ConstantType?: ConstantType;
|
|
1782
|
-
Value?: string;
|
|
1824
|
+
ConstantType?: ConstantType | undefined;
|
|
1825
|
+
Value?: string | undefined;
|
|
1783
1826
|
}
|
|
1784
1827
|
export interface TopicConstantValue {
|
|
1785
|
-
ConstantType?: ConstantType;
|
|
1786
|
-
Value?: string;
|
|
1787
|
-
Minimum?: string;
|
|
1788
|
-
Maximum?: string;
|
|
1789
|
-
ValueList?: CollectiveConstantEntry[];
|
|
1828
|
+
ConstantType?: ConstantType | undefined;
|
|
1829
|
+
Value?: string | undefined;
|
|
1830
|
+
Minimum?: string | undefined;
|
|
1831
|
+
Maximum?: string | undefined;
|
|
1832
|
+
ValueList?: CollectiveConstantEntry[] | undefined;
|
|
1790
1833
|
}
|
|
1791
1834
|
export declare const FilterClass: {
|
|
1792
1835
|
readonly CONDITIONAL_VALUE_FILTER: "CONDITIONAL_VALUE_FILTER";
|
|
@@ -1829,34 +1872,34 @@ export declare const NullFilterOption: {
|
|
|
1829
1872
|
export type NullFilterOption =
|
|
1830
1873
|
(typeof NullFilterOption)[keyof typeof NullFilterOption];
|
|
1831
1874
|
export interface TopicIRFilterOption {
|
|
1832
|
-
FilterType?: TopicIRFilterType;
|
|
1833
|
-
FilterClass?: FilterClass;
|
|
1834
|
-
OperandField?: Identifier;
|
|
1835
|
-
Function?: TopicIRFilterFunction;
|
|
1836
|
-
Constant?: TopicConstantValue;
|
|
1837
|
-
Inverse?: boolean;
|
|
1838
|
-
NullFilter?: NullFilterOption;
|
|
1839
|
-
Aggregation?: AggType;
|
|
1840
|
-
AggregationFunctionParameters?: Record<string, string
|
|
1841
|
-
AggregationPartitionBy?: AggregationPartitionBy[];
|
|
1842
|
-
Range?: TopicConstantValue;
|
|
1843
|
-
Inclusive?: boolean;
|
|
1844
|
-
TimeGranularity?: TimeGranularity;
|
|
1845
|
-
LastNextOffset?: TopicConstantValue;
|
|
1846
|
-
AggMetrics?: FilterAggMetrics[];
|
|
1847
|
-
TopBottomLimit?: TopicConstantValue;
|
|
1848
|
-
SortDirection?: TopicSortDirection;
|
|
1849
|
-
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;
|
|
1850
1893
|
}
|
|
1851
1894
|
export interface ContributionAnalysisTimeRanges {
|
|
1852
|
-
StartRange?: TopicIRFilterOption;
|
|
1853
|
-
EndRange?: TopicIRFilterOption;
|
|
1895
|
+
StartRange?: TopicIRFilterOption | undefined;
|
|
1896
|
+
EndRange?: TopicIRFilterOption | undefined;
|
|
1854
1897
|
}
|
|
1855
1898
|
export interface TopicIRContributionAnalysis {
|
|
1856
|
-
Factors?: ContributionAnalysisFactor[];
|
|
1857
|
-
TimeRanges?: ContributionAnalysisTimeRanges;
|
|
1858
|
-
Direction?: ContributionAnalysisDirection;
|
|
1859
|
-
SortType?: ContributionAnalysisSortType;
|
|
1899
|
+
Factors?: ContributionAnalysisFactor[] | undefined;
|
|
1900
|
+
TimeRanges?: ContributionAnalysisTimeRanges | undefined;
|
|
1901
|
+
Direction?: ContributionAnalysisDirection | undefined;
|
|
1902
|
+
SortType?: ContributionAnalysisSortType | undefined;
|
|
1860
1903
|
}
|
|
1861
1904
|
export declare const DisplayFormat: {
|
|
1862
1905
|
readonly AUTO: "AUTO";
|
|
@@ -1874,37 +1917,37 @@ export declare const TopicNumericSeparatorSymbol: {
|
|
|
1874
1917
|
export type TopicNumericSeparatorSymbol =
|
|
1875
1918
|
(typeof TopicNumericSeparatorSymbol)[keyof typeof TopicNumericSeparatorSymbol];
|
|
1876
1919
|
export interface NegativeFormat {
|
|
1877
|
-
Prefix?: string;
|
|
1878
|
-
Suffix?: string;
|
|
1920
|
+
Prefix?: string | undefined;
|
|
1921
|
+
Suffix?: string | undefined;
|
|
1879
1922
|
}
|
|
1880
1923
|
export interface DisplayFormatOptions {
|
|
1881
|
-
UseBlankCellFormat?: boolean;
|
|
1882
|
-
BlankCellFormat?: string;
|
|
1883
|
-
DateFormat?: string;
|
|
1884
|
-
DecimalSeparator?: TopicNumericSeparatorSymbol;
|
|
1885
|
-
GroupingSeparator?: string;
|
|
1886
|
-
UseGrouping?: boolean;
|
|
1887
|
-
FractionDigits?: number;
|
|
1888
|
-
Prefix?: string;
|
|
1889
|
-
Suffix?: string;
|
|
1890
|
-
UnitScaler?: NumberScale;
|
|
1891
|
-
NegativeFormat?: NegativeFormat;
|
|
1892
|
-
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;
|
|
1893
1936
|
}
|
|
1894
1937
|
export interface NamedEntityRef {
|
|
1895
|
-
NamedEntityName?: string;
|
|
1938
|
+
NamedEntityName?: string | undefined;
|
|
1896
1939
|
}
|
|
1897
1940
|
export interface TopicSortClause {
|
|
1898
|
-
Operand?: Identifier;
|
|
1899
|
-
SortDirection?: TopicSortDirection;
|
|
1941
|
+
Operand?: Identifier | undefined;
|
|
1942
|
+
SortDirection?: TopicSortDirection | undefined;
|
|
1900
1943
|
}
|
|
1901
1944
|
export interface TopicIRGroupBy {
|
|
1902
|
-
FieldName?: Identifier;
|
|
1903
|
-
TimeGranularity?: TopicTimeGranularity;
|
|
1904
|
-
Sort?: TopicSortClause;
|
|
1905
|
-
DisplayFormat?: DisplayFormat;
|
|
1906
|
-
DisplayFormatOptions?: DisplayFormatOptions;
|
|
1907
|
-
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;
|
|
1908
1951
|
}
|
|
1909
1952
|
export declare const ComparisonMethodType: {
|
|
1910
1953
|
readonly DIFF: "DIFF";
|
|
@@ -1921,31 +1964,31 @@ export declare const ComparisonMethodType: {
|
|
|
1921
1964
|
export type ComparisonMethodType =
|
|
1922
1965
|
(typeof ComparisonMethodType)[keyof typeof ComparisonMethodType];
|
|
1923
1966
|
export interface TopicIRComparisonMethod {
|
|
1924
|
-
Type?: ComparisonMethodType;
|
|
1925
|
-
Period?: TopicTimeGranularity;
|
|
1926
|
-
WindowSize?: number;
|
|
1967
|
+
Type?: ComparisonMethodType | undefined;
|
|
1968
|
+
Period?: TopicTimeGranularity | undefined;
|
|
1969
|
+
WindowSize?: number | undefined;
|
|
1927
1970
|
}
|
|
1928
1971
|
export interface TopicIRMetric {
|
|
1929
|
-
MetricId?: Identifier;
|
|
1930
|
-
Function?: AggFunction;
|
|
1931
|
-
Operands?: Identifier[];
|
|
1932
|
-
ComparisonMethod?: TopicIRComparisonMethod;
|
|
1933
|
-
Expression?: string;
|
|
1934
|
-
CalculatedFieldReferences?: Identifier[];
|
|
1935
|
-
DisplayFormat?: DisplayFormat;
|
|
1936
|
-
DisplayFormatOptions?: DisplayFormatOptions;
|
|
1937
|
-
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;
|
|
1938
1981
|
}
|
|
1939
1982
|
export interface VisualOptions {
|
|
1940
|
-
type?: string;
|
|
1983
|
+
type?: string | undefined;
|
|
1941
1984
|
}
|
|
1942
1985
|
export interface TopicIR {
|
|
1943
|
-
Metrics?: TopicIRMetric[];
|
|
1944
|
-
GroupByList?: TopicIRGroupBy[];
|
|
1945
|
-
Filters?: TopicIRFilterOption[][];
|
|
1946
|
-
Sort?: TopicSortClause;
|
|
1947
|
-
ContributionAnalysis?: TopicIRContributionAnalysis;
|
|
1948
|
-
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;
|
|
1949
1992
|
}
|
|
1950
1993
|
export declare const VisualRole: {
|
|
1951
1994
|
readonly COMPLIMENTARY: "COMPLIMENTARY";
|
|
@@ -1956,12 +1999,12 @@ export declare const VisualRole: {
|
|
|
1956
1999
|
};
|
|
1957
2000
|
export type VisualRole = (typeof VisualRole)[keyof typeof VisualRole];
|
|
1958
2001
|
export interface Slot {
|
|
1959
|
-
SlotId?: string;
|
|
1960
|
-
VisualId?: string;
|
|
2002
|
+
SlotId?: string | undefined;
|
|
2003
|
+
VisualId?: string | undefined;
|
|
1961
2004
|
}
|
|
1962
2005
|
export interface TopicTemplate {
|
|
1963
|
-
TemplateType?: string;
|
|
1964
|
-
Slots?: Slot[];
|
|
2006
|
+
TemplateType?: string | undefined;
|
|
2007
|
+
Slots?: Slot[] | undefined;
|
|
1965
2008
|
}
|
|
1966
2009
|
export declare const ReviewedAnswerErrorCode: {
|
|
1967
2010
|
readonly DATASET_DOES_NOT_EXIST: "DATASET_DOES_NOT_EXIST";
|
|
@@ -1975,25 +2018,25 @@ export declare const ReviewedAnswerErrorCode: {
|
|
|
1975
2018
|
export type ReviewedAnswerErrorCode =
|
|
1976
2019
|
(typeof ReviewedAnswerErrorCode)[keyof typeof ReviewedAnswerErrorCode];
|
|
1977
2020
|
export interface InvalidTopicReviewedAnswer {
|
|
1978
|
-
AnswerId?: string;
|
|
1979
|
-
Error?: ReviewedAnswerErrorCode;
|
|
2021
|
+
AnswerId?: string | undefined;
|
|
2022
|
+
Error?: ReviewedAnswerErrorCode | undefined;
|
|
1980
2023
|
}
|
|
1981
2024
|
export interface SucceededTopicReviewedAnswer {
|
|
1982
|
-
AnswerId?: string;
|
|
2025
|
+
AnswerId?: string | undefined;
|
|
1983
2026
|
}
|
|
1984
2027
|
export interface BatchCreateTopicReviewedAnswerResponse {
|
|
1985
|
-
TopicId?: string;
|
|
1986
|
-
TopicArn?: string;
|
|
1987
|
-
SucceededAnswers?: SucceededTopicReviewedAnswer[];
|
|
1988
|
-
InvalidAnswers?: InvalidTopicReviewedAnswer[];
|
|
1989
|
-
Status?: number;
|
|
1990
|
-
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;
|
|
1991
2034
|
}
|
|
1992
2035
|
export declare class InternalFailureException extends __BaseException {
|
|
1993
2036
|
readonly name: "InternalFailureException";
|
|
1994
2037
|
readonly $fault: "server";
|
|
1995
|
-
Message?: string;
|
|
1996
|
-
RequestId?: string;
|
|
2038
|
+
Message?: string | undefined;
|
|
2039
|
+
RequestId?: string | undefined;
|
|
1997
2040
|
constructor(
|
|
1998
2041
|
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
1999
2042
|
);
|
|
@@ -2001,8 +2044,8 @@ export declare class InternalFailureException extends __BaseException {
|
|
|
2001
2044
|
export declare class InvalidParameterValueException extends __BaseException {
|
|
2002
2045
|
readonly name: "InvalidParameterValueException";
|
|
2003
2046
|
readonly $fault: "client";
|
|
2004
|
-
Message?: string;
|
|
2005
|
-
RequestId?: string;
|
|
2047
|
+
Message?: string | undefined;
|
|
2048
|
+
RequestId?: string | undefined;
|
|
2006
2049
|
constructor(
|
|
2007
2050
|
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
2008
2051
|
);
|
|
@@ -2023,9 +2066,9 @@ export type ExceptionResourceType =
|
|
|
2023
2066
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
2024
2067
|
readonly name: "ResourceNotFoundException";
|
|
2025
2068
|
readonly $fault: "client";
|
|
2026
|
-
Message?: string;
|
|
2027
|
-
ResourceType?: ExceptionResourceType;
|
|
2028
|
-
RequestId?: string;
|
|
2069
|
+
Message?: string | undefined;
|
|
2070
|
+
ResourceType?: ExceptionResourceType | undefined;
|
|
2071
|
+
RequestId?: string | undefined;
|
|
2029
2072
|
constructor(
|
|
2030
2073
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
2031
2074
|
);
|
|
@@ -2033,8 +2076,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
2033
2076
|
export declare class ThrottlingException extends __BaseException {
|
|
2034
2077
|
readonly name: "ThrottlingException";
|
|
2035
2078
|
readonly $fault: "client";
|
|
2036
|
-
Message?: string;
|
|
2037
|
-
RequestId?: string;
|
|
2079
|
+
Message?: string | undefined;
|
|
2080
|
+
RequestId?: string | undefined;
|
|
2038
2081
|
constructor(
|
|
2039
2082
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
2040
2083
|
);
|
|
@@ -2042,28 +2085,28 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
2042
2085
|
export interface BatchDeleteTopicReviewedAnswerRequest {
|
|
2043
2086
|
AwsAccountId: string | undefined;
|
|
2044
2087
|
TopicId: string | undefined;
|
|
2045
|
-
AnswerIds?: string[];
|
|
2088
|
+
AnswerIds?: string[] | undefined;
|
|
2046
2089
|
}
|
|
2047
2090
|
export interface BatchDeleteTopicReviewedAnswerResponse {
|
|
2048
|
-
TopicId?: string;
|
|
2049
|
-
TopicArn?: string;
|
|
2050
|
-
SucceededAnswers?: SucceededTopicReviewedAnswer[];
|
|
2051
|
-
InvalidAnswers?: InvalidTopicReviewedAnswer[];
|
|
2052
|
-
RequestId?: string;
|
|
2053
|
-
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;
|
|
2054
2097
|
}
|
|
2055
2098
|
export declare class ConflictException extends __BaseException {
|
|
2056
2099
|
readonly name: "ConflictException";
|
|
2057
2100
|
readonly $fault: "client";
|
|
2058
|
-
Message?: string;
|
|
2059
|
-
RequestId?: string;
|
|
2101
|
+
Message?: string | undefined;
|
|
2102
|
+
RequestId?: string | undefined;
|
|
2060
2103
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
2061
2104
|
}
|
|
2062
2105
|
export interface BookmarksConfigurations {
|
|
2063
2106
|
Enabled: boolean | undefined;
|
|
2064
2107
|
}
|
|
2065
2108
|
export interface BorderStyle {
|
|
2066
|
-
Show?: boolean;
|
|
2109
|
+
Show?: boolean | undefined;
|
|
2067
2110
|
}
|
|
2068
2111
|
export interface CalculatedColumn {
|
|
2069
2112
|
ColumnName: string | undefined;
|
|
@@ -2076,17 +2119,17 @@ export interface CancelIngestionRequest {
|
|
|
2076
2119
|
IngestionId: string | undefined;
|
|
2077
2120
|
}
|
|
2078
2121
|
export interface CancelIngestionResponse {
|
|
2079
|
-
Arn?: string;
|
|
2080
|
-
IngestionId?: string;
|
|
2081
|
-
RequestId?: string;
|
|
2082
|
-
Status?: number;
|
|
2122
|
+
Arn?: string | undefined;
|
|
2123
|
+
IngestionId?: string | undefined;
|
|
2124
|
+
RequestId?: string | undefined;
|
|
2125
|
+
Status?: number | undefined;
|
|
2083
2126
|
}
|
|
2084
2127
|
export declare class ResourceExistsException extends __BaseException {
|
|
2085
2128
|
readonly name: "ResourceExistsException";
|
|
2086
2129
|
readonly $fault: "client";
|
|
2087
|
-
Message?: string;
|
|
2088
|
-
ResourceType?: ExceptionResourceType;
|
|
2089
|
-
RequestId?: string;
|
|
2130
|
+
Message?: string | undefined;
|
|
2131
|
+
ResourceType?: ExceptionResourceType | undefined;
|
|
2132
|
+
RequestId?: string | undefined;
|
|
2090
2133
|
constructor(
|
|
2091
2134
|
opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
|
|
2092
2135
|
);
|
|
@@ -2108,8 +2151,8 @@ export type ColumnDataSubType =
|
|
|
2108
2151
|
export interface CastColumnTypeOperation {
|
|
2109
2152
|
ColumnName: string | undefined;
|
|
2110
2153
|
NewColumnType: ColumnDataType | undefined;
|
|
2111
|
-
SubType?: ColumnDataSubType;
|
|
2112
|
-
Format?: string;
|
|
2154
|
+
SubType?: ColumnDataSubType | undefined;
|
|
2155
|
+
Format?: string | undefined;
|
|
2113
2156
|
}
|
|
2114
2157
|
export declare const CategoryFilterFunction: {
|
|
2115
2158
|
readonly CONTAINS: "CONTAINS";
|
|
@@ -2125,11 +2168,11 @@ export declare const CategoryFilterType: {
|
|
|
2125
2168
|
export type CategoryFilterType =
|
|
2126
2169
|
(typeof CategoryFilterType)[keyof typeof CategoryFilterType];
|
|
2127
2170
|
export interface CellValueSynonym {
|
|
2128
|
-
CellValue?: string;
|
|
2129
|
-
Synonyms?: string[];
|
|
2171
|
+
CellValue?: string | undefined;
|
|
2172
|
+
Synonyms?: string[] | undefined;
|
|
2130
2173
|
}
|
|
2131
2174
|
export interface CollectiveConstant {
|
|
2132
|
-
ValueList?: string[];
|
|
2175
|
+
ValueList?: string[] | undefined;
|
|
2133
2176
|
}
|
|
2134
2177
|
export declare const ColumnDataRole: {
|
|
2135
2178
|
readonly DIMENSION: "DIMENSION";
|
|
@@ -2138,7 +2181,7 @@ export declare const ColumnDataRole: {
|
|
|
2138
2181
|
export type ColumnDataRole =
|
|
2139
2182
|
(typeof ColumnDataRole)[keyof typeof ColumnDataRole];
|
|
2140
2183
|
export interface ColumnDescription {
|
|
2141
|
-
Text?: string;
|
|
2184
|
+
Text?: string | undefined;
|
|
2142
2185
|
}
|
|
2143
2186
|
export declare const GeoSpatialCountryCode: {
|
|
2144
2187
|
readonly US: "US";
|
|
@@ -2147,22 +2190,22 @@ export type GeoSpatialCountryCode =
|
|
|
2147
2190
|
(typeof GeoSpatialCountryCode)[keyof typeof GeoSpatialCountryCode];
|
|
2148
2191
|
export interface GeoSpatialColumnGroup {
|
|
2149
2192
|
Name: string | undefined;
|
|
2150
|
-
CountryCode?: GeoSpatialCountryCode;
|
|
2193
|
+
CountryCode?: GeoSpatialCountryCode | undefined;
|
|
2151
2194
|
Columns: string[] | undefined;
|
|
2152
2195
|
}
|
|
2153
2196
|
export interface ColumnGroup {
|
|
2154
|
-
GeoSpatialColumnGroup?: GeoSpatialColumnGroup;
|
|
2197
|
+
GeoSpatialColumnGroup?: GeoSpatialColumnGroup | undefined;
|
|
2155
2198
|
}
|
|
2156
2199
|
export interface ColumnGroupColumnSchema {
|
|
2157
|
-
Name?: string;
|
|
2200
|
+
Name?: string | undefined;
|
|
2158
2201
|
}
|
|
2159
2202
|
export interface ColumnGroupSchema {
|
|
2160
|
-
Name?: string;
|
|
2161
|
-
ColumnGroupColumnSchemaList?: ColumnGroupColumnSchema[];
|
|
2203
|
+
Name?: string | undefined;
|
|
2204
|
+
ColumnGroupColumnSchemaList?: ColumnGroupColumnSchema[] | undefined;
|
|
2162
2205
|
}
|
|
2163
2206
|
export interface ColumnLevelPermissionRule {
|
|
2164
|
-
Principals?: string[];
|
|
2165
|
-
ColumnNames?: string[];
|
|
2207
|
+
Principals?: string[] | undefined;
|
|
2208
|
+
ColumnNames?: string[] | undefined;
|
|
2166
2209
|
}
|
|
2167
2210
|
export declare const ColumnOrderingType: {
|
|
2168
2211
|
readonly GREATER_IS_BETTER: "GREATER_IS_BETTER";
|
|
@@ -2172,9 +2215,9 @@ export declare const ColumnOrderingType: {
|
|
|
2172
2215
|
export type ColumnOrderingType =
|
|
2173
2216
|
(typeof ColumnOrderingType)[keyof typeof ColumnOrderingType];
|
|
2174
2217
|
export interface ColumnSchema {
|
|
2175
|
-
Name?: string;
|
|
2176
|
-
DataType?: string;
|
|
2177
|
-
GeographicRole?: string;
|
|
2218
|
+
Name?: string | undefined;
|
|
2219
|
+
DataType?: string | undefined;
|
|
2220
|
+
GeographicRole?: string | undefined;
|
|
2178
2221
|
}
|
|
2179
2222
|
export declare const GeoSpatialDataRole: {
|
|
2180
2223
|
readonly CITY: "CITY";
|
|
@@ -2188,8 +2231,8 @@ export declare const GeoSpatialDataRole: {
|
|
|
2188
2231
|
export type GeoSpatialDataRole =
|
|
2189
2232
|
(typeof GeoSpatialDataRole)[keyof typeof GeoSpatialDataRole];
|
|
2190
2233
|
export interface ColumnTag {
|
|
2191
|
-
ColumnGeographicRole?: GeoSpatialDataRole;
|
|
2192
|
-
ColumnDescription?: ColumnDescription;
|
|
2234
|
+
ColumnGeographicRole?: GeoSpatialDataRole | undefined;
|
|
2235
|
+
ColumnDescription?: ColumnDescription | undefined;
|
|
2193
2236
|
}
|
|
2194
2237
|
export declare const ColumnTagName: {
|
|
2195
2238
|
readonly COLUMN_DESCRIPTION: "COLUMN_DESCRIPTION";
|
|
@@ -2203,80 +2246,80 @@ export declare const UndefinedSpecifiedValueType: {
|
|
|
2203
2246
|
export type UndefinedSpecifiedValueType =
|
|
2204
2247
|
(typeof UndefinedSpecifiedValueType)[keyof typeof UndefinedSpecifiedValueType];
|
|
2205
2248
|
export interface ComparativeOrder {
|
|
2206
|
-
UseOrdering?: ColumnOrderingType;
|
|
2207
|
-
SpecifedOrder?: string[];
|
|
2208
|
-
TreatUndefinedSpecifiedValues?: UndefinedSpecifiedValueType;
|
|
2249
|
+
UseOrdering?: ColumnOrderingType | undefined;
|
|
2250
|
+
SpecifedOrder?: string[] | undefined;
|
|
2251
|
+
TreatUndefinedSpecifiedValues?: UndefinedSpecifiedValueType | undefined;
|
|
2209
2252
|
}
|
|
2210
2253
|
export declare class ConcurrentUpdatingException extends __BaseException {
|
|
2211
2254
|
readonly name: "ConcurrentUpdatingException";
|
|
2212
2255
|
readonly $fault: "server";
|
|
2213
|
-
Message?: string;
|
|
2214
|
-
RequestId?: string;
|
|
2256
|
+
Message?: string | undefined;
|
|
2257
|
+
RequestId?: string | undefined;
|
|
2215
2258
|
constructor(
|
|
2216
2259
|
opts: __ExceptionOptionType<ConcurrentUpdatingException, __BaseException>
|
|
2217
2260
|
);
|
|
2218
2261
|
}
|
|
2219
2262
|
export interface CreateAccountCustomizationRequest {
|
|
2220
2263
|
AwsAccountId: string | undefined;
|
|
2221
|
-
Namespace?: string;
|
|
2264
|
+
Namespace?: string | undefined;
|
|
2222
2265
|
AccountCustomization: AccountCustomization | undefined;
|
|
2223
|
-
Tags?: Tag[];
|
|
2266
|
+
Tags?: Tag[] | undefined;
|
|
2224
2267
|
}
|
|
2225
2268
|
export interface CreateAccountCustomizationResponse {
|
|
2226
|
-
Arn?: string;
|
|
2227
|
-
AwsAccountId?: string;
|
|
2228
|
-
Namespace?: string;
|
|
2229
|
-
AccountCustomization?: AccountCustomization;
|
|
2230
|
-
RequestId?: string;
|
|
2231
|
-
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;
|
|
2232
2275
|
}
|
|
2233
2276
|
export declare class ResourceUnavailableException extends __BaseException {
|
|
2234
2277
|
readonly name: "ResourceUnavailableException";
|
|
2235
2278
|
readonly $fault: "server";
|
|
2236
|
-
Message?: string;
|
|
2237
|
-
ResourceType?: ExceptionResourceType;
|
|
2238
|
-
RequestId?: string;
|
|
2279
|
+
Message?: string | undefined;
|
|
2280
|
+
ResourceType?: ExceptionResourceType | undefined;
|
|
2281
|
+
RequestId?: string | undefined;
|
|
2239
2282
|
constructor(
|
|
2240
2283
|
opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
|
|
2241
2284
|
);
|
|
2242
2285
|
}
|
|
2243
2286
|
export interface CreateAccountSubscriptionRequest {
|
|
2244
|
-
Edition?: Edition;
|
|
2287
|
+
Edition?: Edition | undefined;
|
|
2245
2288
|
AuthenticationMethod: AuthenticationMethodOption | undefined;
|
|
2246
2289
|
AwsAccountId: string | undefined;
|
|
2247
2290
|
AccountName: string | undefined;
|
|
2248
2291
|
NotificationEmail: string | undefined;
|
|
2249
|
-
ActiveDirectoryName?: string;
|
|
2250
|
-
Realm?: string;
|
|
2251
|
-
DirectoryId?: string;
|
|
2252
|
-
AdminGroup?: string[];
|
|
2253
|
-
AuthorGroup?: string[];
|
|
2254
|
-
ReaderGroup?: string[];
|
|
2255
|
-
AdminProGroup?: string[];
|
|
2256
|
-
AuthorProGroup?: string[];
|
|
2257
|
-
ReaderProGroup?: string[];
|
|
2258
|
-
FirstName?: string;
|
|
2259
|
-
LastName?: string;
|
|
2260
|
-
EmailAddress?: string;
|
|
2261
|
-
ContactNumber?: string;
|
|
2262
|
-
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;
|
|
2263
2306
|
}
|
|
2264
2307
|
export interface SignupResponse {
|
|
2265
|
-
IAMUser?: boolean;
|
|
2266
|
-
userLoginName?: string;
|
|
2267
|
-
accountName?: string;
|
|
2268
|
-
directoryType?: string;
|
|
2308
|
+
IAMUser?: boolean | undefined;
|
|
2309
|
+
userLoginName?: string | undefined;
|
|
2310
|
+
accountName?: string | undefined;
|
|
2311
|
+
directoryType?: string | undefined;
|
|
2269
2312
|
}
|
|
2270
2313
|
export interface CreateAccountSubscriptionResponse {
|
|
2271
|
-
SignupResponse?: SignupResponse;
|
|
2272
|
-
Status?: number;
|
|
2273
|
-
RequestId?: string;
|
|
2314
|
+
SignupResponse?: SignupResponse | undefined;
|
|
2315
|
+
Status?: number | undefined;
|
|
2316
|
+
RequestId?: string | undefined;
|
|
2274
2317
|
}
|
|
2275
2318
|
export declare class PreconditionNotMetException extends __BaseException {
|
|
2276
2319
|
readonly name: "PreconditionNotMetException";
|
|
2277
2320
|
readonly $fault: "client";
|
|
2278
|
-
Message?: string;
|
|
2279
|
-
RequestId?: string;
|
|
2321
|
+
Message?: string | undefined;
|
|
2322
|
+
RequestId?: string | undefined;
|
|
2280
2323
|
constructor(
|
|
2281
2324
|
opts: __ExceptionOptionType<PreconditionNotMetException, __BaseException>
|
|
2282
2325
|
);
|
|
@@ -2298,10 +2341,10 @@ export interface StringParameter {
|
|
|
2298
2341
|
Values: string[] | undefined;
|
|
2299
2342
|
}
|
|
2300
2343
|
export interface _Parameters {
|
|
2301
|
-
StringParameters?: StringParameter[];
|
|
2302
|
-
IntegerParameters?: IntegerParameter[];
|
|
2303
|
-
DecimalParameters?: DecimalParameter[];
|
|
2304
|
-
DateTimeParameters?: DateTimeParameter[];
|
|
2344
|
+
StringParameters?: StringParameter[] | undefined;
|
|
2345
|
+
IntegerParameters?: IntegerParameter[] | undefined;
|
|
2346
|
+
DecimalParameters?: DecimalParameter[] | undefined;
|
|
2347
|
+
DateTimeParameters?: DateTimeParameter[] | undefined;
|
|
2305
2348
|
}
|
|
2306
2349
|
export interface ResourcePermission {
|
|
2307
2350
|
Principal: string | undefined;
|
|
@@ -2320,28 +2363,28 @@ export interface CreateAnalysisRequest {
|
|
|
2320
2363
|
AwsAccountId: string | undefined;
|
|
2321
2364
|
AnalysisId: string | undefined;
|
|
2322
2365
|
Name: string | undefined;
|
|
2323
|
-
Parameters?: _Parameters;
|
|
2324
|
-
Permissions?: ResourcePermission[];
|
|
2325
|
-
SourceEntity?: AnalysisSourceEntity;
|
|
2326
|
-
ThemeArn?: string;
|
|
2327
|
-
Tags?: Tag[];
|
|
2328
|
-
Definition?: AnalysisDefinition;
|
|
2329
|
-
ValidationStrategy?: ValidationStrategy;
|
|
2330
|
-
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;
|
|
2331
2374
|
}
|
|
2332
2375
|
export interface CreateAnalysisResponse {
|
|
2333
|
-
Arn?: string;
|
|
2334
|
-
AnalysisId?: string;
|
|
2335
|
-
CreationStatus?: ResourceStatus;
|
|
2336
|
-
Status?: number;
|
|
2337
|
-
RequestId?: string;
|
|
2376
|
+
Arn?: string | undefined;
|
|
2377
|
+
AnalysisId?: string | undefined;
|
|
2378
|
+
CreationStatus?: ResourceStatus | undefined;
|
|
2379
|
+
Status?: number | undefined;
|
|
2380
|
+
RequestId?: string | undefined;
|
|
2338
2381
|
}
|
|
2339
2382
|
export declare class LimitExceededException extends __BaseException {
|
|
2340
2383
|
readonly name: "LimitExceededException";
|
|
2341
2384
|
readonly $fault: "client";
|
|
2342
|
-
Message?: string;
|
|
2343
|
-
ResourceType?: ExceptionResourceType;
|
|
2344
|
-
RequestId?: string;
|
|
2385
|
+
Message?: string | undefined;
|
|
2386
|
+
ResourceType?: ExceptionResourceType | undefined;
|
|
2387
|
+
RequestId?: string | undefined;
|
|
2345
2388
|
constructor(
|
|
2346
2389
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
2347
2390
|
);
|
|
@@ -2349,8 +2392,8 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
2349
2392
|
export declare class UnsupportedUserEditionException extends __BaseException {
|
|
2350
2393
|
readonly name: "UnsupportedUserEditionException";
|
|
2351
2394
|
readonly $fault: "client";
|
|
2352
|
-
Message?: string;
|
|
2353
|
-
RequestId?: string;
|
|
2395
|
+
Message?: string | undefined;
|
|
2396
|
+
RequestId?: string | undefined;
|
|
2354
2397
|
constructor(
|
|
2355
2398
|
opts: __ExceptionOptionType<
|
|
2356
2399
|
UnsupportedUserEditionException,
|
|
@@ -2362,19 +2405,19 @@ export interface CreateColumnsOperation {
|
|
|
2362
2405
|
Columns: CalculatedColumn[] | undefined;
|
|
2363
2406
|
}
|
|
2364
2407
|
export interface DataPointDrillUpDownOption {
|
|
2365
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2408
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2366
2409
|
}
|
|
2367
2410
|
export interface DataPointMenuLabelOption {
|
|
2368
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2411
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2369
2412
|
}
|
|
2370
2413
|
export interface DataPointTooltipOption {
|
|
2371
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2414
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2372
2415
|
}
|
|
2373
2416
|
export interface ExportToCSVOption {
|
|
2374
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2417
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2375
2418
|
}
|
|
2376
2419
|
export interface ExportWithHiddenFieldsOption {
|
|
2377
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2420
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2378
2421
|
}
|
|
2379
2422
|
export declare const DashboardUIState: {
|
|
2380
2423
|
readonly COLLAPSED: "COLLAPSED";
|
|
@@ -2383,80 +2426,82 @@ export declare const DashboardUIState: {
|
|
|
2383
2426
|
export type DashboardUIState =
|
|
2384
2427
|
(typeof DashboardUIState)[keyof typeof DashboardUIState];
|
|
2385
2428
|
export interface SheetControlsOption {
|
|
2386
|
-
VisibilityState?: DashboardUIState;
|
|
2429
|
+
VisibilityState?: DashboardUIState | undefined;
|
|
2387
2430
|
}
|
|
2388
2431
|
export interface SheetLayoutElementMaximizationOption {
|
|
2389
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2432
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2390
2433
|
}
|
|
2391
2434
|
export interface VisualAxisSortOption {
|
|
2392
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2435
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2393
2436
|
}
|
|
2394
2437
|
export interface ExportHiddenFieldsOption {
|
|
2395
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
2438
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2396
2439
|
}
|
|
2397
2440
|
export interface DashboardVisualPublishOptions {
|
|
2398
|
-
ExportHiddenFieldsOption?: ExportHiddenFieldsOption;
|
|
2441
|
+
ExportHiddenFieldsOption?: ExportHiddenFieldsOption | undefined;
|
|
2399
2442
|
}
|
|
2400
2443
|
export interface DashboardPublishOptions {
|
|
2401
|
-
AdHocFilteringOption?: AdHocFilteringOption;
|
|
2402
|
-
ExportToCSVOption?: ExportToCSVOption;
|
|
2403
|
-
SheetControlsOption?: SheetControlsOption;
|
|
2404
|
-
VisualPublishOptions?: DashboardVisualPublishOptions;
|
|
2405
|
-
SheetLayoutElementMaximizationOption?:
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
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;
|
|
2412
2457
|
}
|
|
2413
2458
|
export interface DashboardVersionDefinition {
|
|
2414
2459
|
DataSetIdentifierDeclarations: DataSetIdentifierDeclaration[] | undefined;
|
|
2415
|
-
Sheets?: SheetDefinition[];
|
|
2416
|
-
CalculatedFields?: CalculatedField[];
|
|
2417
|
-
ParameterDeclarations?: ParameterDeclaration[];
|
|
2418
|
-
FilterGroups?: FilterGroup[];
|
|
2419
|
-
ColumnConfigurations?: ColumnConfiguration[];
|
|
2420
|
-
AnalysisDefaults?: AnalysisDefaults;
|
|
2421
|
-
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;
|
|
2422
2467
|
}
|
|
2423
2468
|
export interface LinkSharingConfiguration {
|
|
2424
|
-
Permissions?: ResourcePermission[];
|
|
2469
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
2425
2470
|
}
|
|
2426
2471
|
export interface DashboardSourceTemplate {
|
|
2427
2472
|
DataSetReferences: DataSetReference[] | undefined;
|
|
2428
2473
|
Arn: string | undefined;
|
|
2429
2474
|
}
|
|
2430
2475
|
export interface DashboardSourceEntity {
|
|
2431
|
-
SourceTemplate?: DashboardSourceTemplate;
|
|
2476
|
+
SourceTemplate?: DashboardSourceTemplate | undefined;
|
|
2432
2477
|
}
|
|
2433
2478
|
export interface CreateDashboardRequest {
|
|
2434
2479
|
AwsAccountId: string | undefined;
|
|
2435
2480
|
DashboardId: string | undefined;
|
|
2436
2481
|
Name: string | undefined;
|
|
2437
|
-
Parameters?: _Parameters;
|
|
2438
|
-
Permissions?: ResourcePermission[];
|
|
2439
|
-
SourceEntity?: DashboardSourceEntity;
|
|
2440
|
-
Tags?: Tag[];
|
|
2441
|
-
VersionDescription?: string;
|
|
2442
|
-
DashboardPublishOptions?: DashboardPublishOptions;
|
|
2443
|
-
ThemeArn?: string;
|
|
2444
|
-
Definition?: DashboardVersionDefinition;
|
|
2445
|
-
ValidationStrategy?: ValidationStrategy;
|
|
2446
|
-
FolderArns?: string[];
|
|
2447
|
-
LinkSharingConfiguration?: LinkSharingConfiguration;
|
|
2448
|
-
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;
|
|
2449
2494
|
}
|
|
2450
2495
|
export interface CreateDashboardResponse {
|
|
2451
|
-
Arn?: string;
|
|
2452
|
-
VersionArn?: string;
|
|
2453
|
-
DashboardId?: string;
|
|
2454
|
-
CreationStatus?: ResourceStatus;
|
|
2455
|
-
Status?: number;
|
|
2456
|
-
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;
|
|
2457
2502
|
}
|
|
2458
2503
|
export interface DateTimeDatasetParameterDefaultValues {
|
|
2459
|
-
StaticValues?: Date[];
|
|
2504
|
+
StaticValues?: Date[] | undefined;
|
|
2460
2505
|
}
|
|
2461
2506
|
export declare const DatasetParameterValueType: {
|
|
2462
2507
|
readonly MULTI_VALUED: "MULTI_VALUED";
|
|
@@ -2468,49 +2513,49 @@ export interface DateTimeDatasetParameter {
|
|
|
2468
2513
|
Id: string | undefined;
|
|
2469
2514
|
Name: string | undefined;
|
|
2470
2515
|
ValueType: DatasetParameterValueType | undefined;
|
|
2471
|
-
TimeGranularity?: TimeGranularity;
|
|
2472
|
-
DefaultValues?: DateTimeDatasetParameterDefaultValues;
|
|
2516
|
+
TimeGranularity?: TimeGranularity | undefined;
|
|
2517
|
+
DefaultValues?: DateTimeDatasetParameterDefaultValues | undefined;
|
|
2473
2518
|
}
|
|
2474
2519
|
export interface DecimalDatasetParameterDefaultValues {
|
|
2475
|
-
StaticValues?: number[];
|
|
2520
|
+
StaticValues?: number[] | undefined;
|
|
2476
2521
|
}
|
|
2477
2522
|
export interface DecimalDatasetParameter {
|
|
2478
2523
|
Id: string | undefined;
|
|
2479
2524
|
Name: string | undefined;
|
|
2480
2525
|
ValueType: DatasetParameterValueType | undefined;
|
|
2481
|
-
DefaultValues?: DecimalDatasetParameterDefaultValues;
|
|
2526
|
+
DefaultValues?: DecimalDatasetParameterDefaultValues | undefined;
|
|
2482
2527
|
}
|
|
2483
2528
|
export interface IntegerDatasetParameterDefaultValues {
|
|
2484
|
-
StaticValues?: number[];
|
|
2529
|
+
StaticValues?: number[] | undefined;
|
|
2485
2530
|
}
|
|
2486
2531
|
export interface IntegerDatasetParameter {
|
|
2487
2532
|
Id: string | undefined;
|
|
2488
2533
|
Name: string | undefined;
|
|
2489
2534
|
ValueType: DatasetParameterValueType | undefined;
|
|
2490
|
-
DefaultValues?: IntegerDatasetParameterDefaultValues;
|
|
2535
|
+
DefaultValues?: IntegerDatasetParameterDefaultValues | undefined;
|
|
2491
2536
|
}
|
|
2492
2537
|
export interface StringDatasetParameterDefaultValues {
|
|
2493
|
-
StaticValues?: string[];
|
|
2538
|
+
StaticValues?: string[] | undefined;
|
|
2494
2539
|
}
|
|
2495
2540
|
export interface StringDatasetParameter {
|
|
2496
2541
|
Id: string | undefined;
|
|
2497
2542
|
Name: string | undefined;
|
|
2498
2543
|
ValueType: DatasetParameterValueType | undefined;
|
|
2499
|
-
DefaultValues?: StringDatasetParameterDefaultValues;
|
|
2544
|
+
DefaultValues?: StringDatasetParameterDefaultValues | undefined;
|
|
2500
2545
|
}
|
|
2501
2546
|
export interface DatasetParameter {
|
|
2502
|
-
StringDatasetParameter?: StringDatasetParameter;
|
|
2503
|
-
DecimalDatasetParameter?: DecimalDatasetParameter;
|
|
2504
|
-
IntegerDatasetParameter?: IntegerDatasetParameter;
|
|
2505
|
-
DateTimeDatasetParameter?: DateTimeDatasetParameter;
|
|
2547
|
+
StringDatasetParameter?: StringDatasetParameter | undefined;
|
|
2548
|
+
DecimalDatasetParameter?: DecimalDatasetParameter | undefined;
|
|
2549
|
+
IntegerDatasetParameter?: IntegerDatasetParameter | undefined;
|
|
2550
|
+
DateTimeDatasetParameter?: DateTimeDatasetParameter | undefined;
|
|
2506
2551
|
}
|
|
2507
2552
|
export interface DataSetUsageConfiguration {
|
|
2508
|
-
DisableUseAsDirectQuerySource?: boolean;
|
|
2509
|
-
DisableUseAsImportedSource?: boolean;
|
|
2553
|
+
DisableUseAsDirectQuerySource?: boolean | undefined;
|
|
2554
|
+
DisableUseAsImportedSource?: boolean | undefined;
|
|
2510
2555
|
}
|
|
2511
2556
|
export interface FieldFolder {
|
|
2512
|
-
description?: string;
|
|
2513
|
-
columns?: string[];
|
|
2557
|
+
description?: string | undefined;
|
|
2558
|
+
columns?: string[] | undefined;
|
|
2514
2559
|
}
|
|
2515
2560
|
export declare const DataSetImportMode: {
|
|
2516
2561
|
readonly DIRECT_QUERY: "DIRECT_QUERY";
|
|
@@ -2522,15 +2567,15 @@ export interface FilterOperation {
|
|
|
2522
2567
|
ConditionExpression: string | undefined;
|
|
2523
2568
|
}
|
|
2524
2569
|
export interface NewDefaultValues {
|
|
2525
|
-
StringStaticValues?: string[];
|
|
2526
|
-
DecimalStaticValues?: number[];
|
|
2527
|
-
DateTimeStaticValues?: Date[];
|
|
2528
|
-
IntegerStaticValues?: number[];
|
|
2570
|
+
StringStaticValues?: string[] | undefined;
|
|
2571
|
+
DecimalStaticValues?: number[] | undefined;
|
|
2572
|
+
DateTimeStaticValues?: Date[] | undefined;
|
|
2573
|
+
IntegerStaticValues?: number[] | undefined;
|
|
2529
2574
|
}
|
|
2530
2575
|
export interface OverrideDatasetParameterOperation {
|
|
2531
2576
|
ParameterName: string | undefined;
|
|
2532
|
-
NewParameterName?: string;
|
|
2533
|
-
NewDefaultValues?: NewDefaultValues;
|
|
2577
|
+
NewParameterName?: string | undefined;
|
|
2578
|
+
NewDefaultValues?: NewDefaultValues | undefined;
|
|
2534
2579
|
}
|
|
2535
2580
|
export interface ProjectOperation {
|
|
2536
2581
|
ProjectedColumns: string[] | undefined;
|
|
@@ -2673,7 +2718,7 @@ export declare namespace TransformOperation {
|
|
|
2673
2718
|
const visit: <T>(value: TransformOperation, visitor: Visitor<T>) => T;
|
|
2674
2719
|
}
|
|
2675
2720
|
export interface JoinKeyProperties {
|
|
2676
|
-
UniqueKey?: boolean;
|
|
2721
|
+
UniqueKey?: boolean | undefined;
|
|
2677
2722
|
}
|
|
2678
2723
|
export declare const JoinType: {
|
|
2679
2724
|
readonly INNER: "INNER";
|
|
@@ -2685,19 +2730,19 @@ export type JoinType = (typeof JoinType)[keyof typeof JoinType];
|
|
|
2685
2730
|
export interface JoinInstruction {
|
|
2686
2731
|
LeftOperand: string | undefined;
|
|
2687
2732
|
RightOperand: string | undefined;
|
|
2688
|
-
LeftJoinKeyProperties?: JoinKeyProperties;
|
|
2689
|
-
RightJoinKeyProperties?: JoinKeyProperties;
|
|
2733
|
+
LeftJoinKeyProperties?: JoinKeyProperties | undefined;
|
|
2734
|
+
RightJoinKeyProperties?: JoinKeyProperties | undefined;
|
|
2690
2735
|
Type: JoinType | undefined;
|
|
2691
2736
|
OnClause: string | undefined;
|
|
2692
2737
|
}
|
|
2693
2738
|
export interface LogicalTableSource {
|
|
2694
|
-
JoinInstruction?: JoinInstruction;
|
|
2695
|
-
PhysicalTableId?: string;
|
|
2696
|
-
DataSetArn?: string;
|
|
2739
|
+
JoinInstruction?: JoinInstruction | undefined;
|
|
2740
|
+
PhysicalTableId?: string | undefined;
|
|
2741
|
+
DataSetArn?: string | undefined;
|
|
2697
2742
|
}
|
|
2698
2743
|
export interface LogicalTable {
|
|
2699
2744
|
Alias: string | undefined;
|
|
2700
|
-
DataTransforms?: TransformOperation[];
|
|
2745
|
+
DataTransforms?: TransformOperation[] | undefined;
|
|
2701
2746
|
Source: LogicalTableSource | undefined;
|
|
2702
2747
|
}
|
|
2703
2748
|
export declare const InputColumnDataType: {
|
|
@@ -2714,18 +2759,18 @@ export type InputColumnDataType =
|
|
|
2714
2759
|
export interface InputColumn {
|
|
2715
2760
|
Name: string | undefined;
|
|
2716
2761
|
Type: InputColumnDataType | undefined;
|
|
2717
|
-
SubType?: ColumnDataSubType;
|
|
2762
|
+
SubType?: ColumnDataSubType | undefined;
|
|
2718
2763
|
}
|
|
2719
2764
|
export interface CustomSql {
|
|
2720
2765
|
DataSourceArn: string | undefined;
|
|
2721
2766
|
Name: string | undefined;
|
|
2722
2767
|
SqlQuery: string | undefined;
|
|
2723
|
-
Columns?: InputColumn[];
|
|
2768
|
+
Columns?: InputColumn[] | undefined;
|
|
2724
2769
|
}
|
|
2725
2770
|
export interface RelationalTable {
|
|
2726
2771
|
DataSourceArn: string | undefined;
|
|
2727
|
-
Catalog?: string;
|
|
2728
|
-
Schema?: string;
|
|
2772
|
+
Catalog?: string | undefined;
|
|
2773
|
+
Schema?: string | undefined;
|
|
2729
2774
|
Name: string | undefined;
|
|
2730
2775
|
InputColumns: InputColumn[] | undefined;
|
|
2731
2776
|
}
|
|
@@ -2744,15 +2789,15 @@ export declare const TextQualifier: {
|
|
|
2744
2789
|
};
|
|
2745
2790
|
export type TextQualifier = (typeof TextQualifier)[keyof typeof TextQualifier];
|
|
2746
2791
|
export interface UploadSettings {
|
|
2747
|
-
Format?: FileFormat;
|
|
2748
|
-
StartFromRow?: number;
|
|
2749
|
-
ContainsHeader?: boolean;
|
|
2750
|
-
TextQualifier?: TextQualifier;
|
|
2751
|
-
Delimiter?: string;
|
|
2792
|
+
Format?: FileFormat | undefined;
|
|
2793
|
+
StartFromRow?: number | undefined;
|
|
2794
|
+
ContainsHeader?: boolean | undefined;
|
|
2795
|
+
TextQualifier?: TextQualifier | undefined;
|
|
2796
|
+
Delimiter?: string | undefined;
|
|
2752
2797
|
}
|
|
2753
2798
|
export interface S3Source {
|
|
2754
2799
|
DataSourceArn: string | undefined;
|
|
2755
|
-
UploadSettings?: UploadSettings;
|
|
2800
|
+
UploadSettings?: UploadSettings | undefined;
|
|
2756
2801
|
InputColumns: InputColumn[] | undefined;
|
|
2757
2802
|
}
|
|
2758
2803
|
export type PhysicalTable =
|
|
@@ -2805,18 +2850,6 @@ export declare const RowLevelPermissionPolicy: {
|
|
|
2805
2850
|
};
|
|
2806
2851
|
export type RowLevelPermissionPolicy =
|
|
2807
2852
|
(typeof RowLevelPermissionPolicy)[keyof typeof RowLevelPermissionPolicy];
|
|
2808
|
-
export declare const Status: {
|
|
2809
|
-
readonly DISABLED: "DISABLED";
|
|
2810
|
-
readonly ENABLED: "ENABLED";
|
|
2811
|
-
};
|
|
2812
|
-
export type Status = (typeof Status)[keyof typeof Status];
|
|
2813
|
-
export interface RowLevelPermissionDataSet {
|
|
2814
|
-
Namespace?: string;
|
|
2815
|
-
Arn: string | undefined;
|
|
2816
|
-
PermissionPolicy: RowLevelPermissionPolicy | undefined;
|
|
2817
|
-
FormatVersion?: RowLevelPermissionFormatVersion;
|
|
2818
|
-
Status?: Status;
|
|
2819
|
-
}
|
|
2820
2853
|
export declare const TreeMapConfigurationFilterSensitiveLog: (
|
|
2821
2854
|
obj: TreeMapConfiguration
|
|
2822
2855
|
) => any;
|