@aws-sdk/client-quicksight 3.507.0 → 3.510.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 +68 -24
- package/dist-es/models/models_2.js +0 -19
- package/dist-es/models/models_3.js +20 -1
- package/dist-es/protocols/Aws_restJson1.js +44 -0
- package/dist-types/commands/CreateAnalysisCommand.d.ts +64 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +62 -0
- package/dist-types/commands/CreateTemplateCommand.d.ts +64 -0
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +64 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +65 -3
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +64 -0
- package/dist-types/commands/ListRefreshSchedulesCommand.d.ts +1 -1
- package/dist-types/commands/ListRoleMembershipsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +64 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +62 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +64 -0
- package/dist-types/models/models_0.d.ts +43 -54
- package/dist-types/models/models_1.d.ts +197 -93
- package/dist-types/models/models_2.d.ts +94 -264
- package/dist-types/models/models_3.d.ts +249 -88
- package/dist-types/models/models_4.d.ts +94 -4
- package/dist-types/ts3.4/commands/ListRefreshSchedulesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListRoleMembershipsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +11 -13
- package/dist-types/ts3.4/models/models_1.d.ts +47 -25
- package/dist-types/ts3.4/models/models_2.d.ts +24 -68
- package/dist-types/ts3.4/models/models_3.d.ts +67 -31
- package/dist-types/ts3.4/models/models_4.d.ts +24 -5
- package/package.json +2 -2
package/dist-cjs/index.js
CHANGED
|
@@ -2271,16 +2271,6 @@ var TopicNumericSeparatorSymbol = {
|
|
|
2271
2271
|
COMMA: "COMMA",
|
|
2272
2272
|
DOT: "DOT"
|
|
2273
2273
|
};
|
|
2274
|
-
var TopicTimeGranularity = {
|
|
2275
|
-
DAY: "DAY",
|
|
2276
|
-
HOUR: "HOUR",
|
|
2277
|
-
MINUTE: "MINUTE",
|
|
2278
|
-
MONTH: "MONTH",
|
|
2279
|
-
QUARTER: "QUARTER",
|
|
2280
|
-
SECOND: "SECOND",
|
|
2281
|
-
WEEK: "WEEK",
|
|
2282
|
-
YEAR: "YEAR"
|
|
2283
|
-
};
|
|
2284
2274
|
var SnapshotJobS3ResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2285
2275
|
...obj,
|
|
2286
2276
|
...obj.S3Uri && { S3Uri: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -2468,18 +2458,19 @@ var SemanticTypeFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
2468
2458
|
...obj.FalseyCellValue && { FalseyCellValue: import_smithy_client.SENSITIVE_STRING },
|
|
2469
2459
|
...obj.FalseyCellValueSynonyms && { FalseyCellValueSynonyms: import_smithy_client.SENSITIVE_STRING }
|
|
2470
2460
|
}), "SemanticTypeFilterSensitiveLog");
|
|
2471
|
-
var TopicCalculatedFieldFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2472
|
-
...obj,
|
|
2473
|
-
...obj.Expression && { Expression: import_smithy_client.SENSITIVE_STRING },
|
|
2474
|
-
...obj.SemanticType && { SemanticType: SemanticTypeFilterSensitiveLog(obj.SemanticType) }
|
|
2475
|
-
}), "TopicCalculatedFieldFilterSensitiveLog");
|
|
2476
|
-
var TopicColumnFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2477
|
-
...obj,
|
|
2478
|
-
...obj.SemanticType && { SemanticType: SemanticTypeFilterSensitiveLog(obj.SemanticType) }
|
|
2479
|
-
}), "TopicColumnFilterSensitiveLog");
|
|
2480
2461
|
|
|
2481
2462
|
// src/models/models_3.ts
|
|
2482
2463
|
|
|
2464
|
+
var TopicTimeGranularity = {
|
|
2465
|
+
DAY: "DAY",
|
|
2466
|
+
HOUR: "HOUR",
|
|
2467
|
+
MINUTE: "MINUTE",
|
|
2468
|
+
MONTH: "MONTH",
|
|
2469
|
+
QUARTER: "QUARTER",
|
|
2470
|
+
SECOND: "SECOND",
|
|
2471
|
+
WEEK: "WEEK",
|
|
2472
|
+
YEAR: "YEAR"
|
|
2473
|
+
};
|
|
2483
2474
|
var FilterClass = {
|
|
2484
2475
|
CONDITIONAL_VALUE_FILTER: "CONDITIONAL_VALUE_FILTER",
|
|
2485
2476
|
ENFORCED_VALUE_FILTER: "ENFORCED_VALUE_FILTER",
|
|
@@ -2878,6 +2869,15 @@ var _InvalidRequestException = class _InvalidRequestException extends QuickSight
|
|
|
2878
2869
|
};
|
|
2879
2870
|
__name(_InvalidRequestException, "InvalidRequestException");
|
|
2880
2871
|
var InvalidRequestException = _InvalidRequestException;
|
|
2872
|
+
var TopicCalculatedFieldFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2873
|
+
...obj,
|
|
2874
|
+
...obj.Expression && { Expression: import_smithy_client.SENSITIVE_STRING },
|
|
2875
|
+
...obj.SemanticType && { SemanticType: SemanticTypeFilterSensitiveLog(obj.SemanticType) }
|
|
2876
|
+
}), "TopicCalculatedFieldFilterSensitiveLog");
|
|
2877
|
+
var TopicColumnFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2878
|
+
...obj,
|
|
2879
|
+
...obj.SemanticType && { SemanticType: SemanticTypeFilterSensitiveLog(obj.SemanticType) }
|
|
2880
|
+
}), "TopicColumnFilterSensitiveLog");
|
|
2881
2881
|
var TopicCategoryFilterConstantFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2882
2882
|
...obj
|
|
2883
2883
|
}), "TopicCategoryFilterConstantFilterSensitiveLog");
|
|
@@ -9331,6 +9331,7 @@ var se_BarChartConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
9331
9331
|
ContributionAnalysisDefaults: import_smithy_client._json,
|
|
9332
9332
|
DataLabels: import_smithy_client._json,
|
|
9333
9333
|
FieldWells: (_) => se_BarChartFieldWells(_, context),
|
|
9334
|
+
Interactions: import_smithy_client._json,
|
|
9334
9335
|
Legend: import_smithy_client._json,
|
|
9335
9336
|
Orientation: [],
|
|
9336
9337
|
ReferenceLines: (_) => se_ReferenceLineList(_, context),
|
|
@@ -9385,6 +9386,7 @@ var se_BoxPlotChartConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
9385
9386
|
CategoryAxis: (_) => se_AxisDisplayOptions(_, context),
|
|
9386
9387
|
CategoryLabelOptions: import_smithy_client._json,
|
|
9387
9388
|
FieldWells: (_) => se_BoxPlotFieldWells(_, context),
|
|
9389
|
+
Interactions: import_smithy_client._json,
|
|
9388
9390
|
Legend: import_smithy_client._json,
|
|
9389
9391
|
PrimaryYAxisDisplayOptions: (_) => se_AxisDisplayOptions(_, context),
|
|
9390
9392
|
PrimaryYAxisLabelOptions: import_smithy_client._json,
|
|
@@ -9475,6 +9477,7 @@ var se_ComboChartConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
9475
9477
|
CategoryLabelOptions: import_smithy_client._json,
|
|
9476
9478
|
ColorLabelOptions: import_smithy_client._json,
|
|
9477
9479
|
FieldWells: (_) => se_ComboChartFieldWells(_, context),
|
|
9480
|
+
Interactions: import_smithy_client._json,
|
|
9478
9481
|
Legend: import_smithy_client._json,
|
|
9479
9482
|
LineDataLabels: import_smithy_client._json,
|
|
9480
9483
|
PrimaryYAxisDisplayOptions: (_) => se_AxisDisplayOptions(_, context),
|
|
@@ -9797,6 +9800,7 @@ var se_FilledMapConditionalFormattingOptionList = /* @__PURE__ */ __name((input,
|
|
|
9797
9800
|
var se_FilledMapConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
9798
9801
|
return (0, import_smithy_client.take)(input, {
|
|
9799
9802
|
FieldWells: (_) => se_FilledMapFieldWells(_, context),
|
|
9803
|
+
Interactions: import_smithy_client._json,
|
|
9800
9804
|
Legend: import_smithy_client._json,
|
|
9801
9805
|
MapStyleOptions: import_smithy_client._json,
|
|
9802
9806
|
SortConfiguration: (_) => se_FilledMapSortConfiguration(_, context),
|
|
@@ -9937,6 +9941,7 @@ var se_FunnelChartConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
9937
9941
|
CategoryLabelOptions: import_smithy_client._json,
|
|
9938
9942
|
DataLabelOptions: import_smithy_client._json,
|
|
9939
9943
|
FieldWells: (_) => se_FunnelChartFieldWells(_, context),
|
|
9944
|
+
Interactions: import_smithy_client._json,
|
|
9940
9945
|
SortConfiguration: (_) => se_FunnelChartSortConfiguration(_, context),
|
|
9941
9946
|
Tooltip: (_) => se_TooltipOptions(_, context),
|
|
9942
9947
|
ValueLabelOptions: import_smithy_client._json,
|
|
@@ -9995,6 +10000,7 @@ var se_GaugeChartConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
9995
10000
|
DataLabels: import_smithy_client._json,
|
|
9996
10001
|
FieldWells: (_) => se_GaugeChartFieldWells(_, context),
|
|
9997
10002
|
GaugeChartOptions: (_) => se_GaugeChartOptions(_, context),
|
|
10003
|
+
Interactions: import_smithy_client._json,
|
|
9998
10004
|
TooltipOptions: (_) => se_TooltipOptions(_, context),
|
|
9999
10005
|
VisualPalette: import_smithy_client._json
|
|
10000
10006
|
});
|
|
@@ -10048,6 +10054,7 @@ var se_GeospatialMapAggregatedFieldWells = /* @__PURE__ */ __name((input, contex
|
|
|
10048
10054
|
var se_GeospatialMapConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
10049
10055
|
return (0, import_smithy_client.take)(input, {
|
|
10050
10056
|
FieldWells: (_) => se_GeospatialMapFieldWells(_, context),
|
|
10057
|
+
Interactions: import_smithy_client._json,
|
|
10051
10058
|
Legend: import_smithy_client._json,
|
|
10052
10059
|
MapStyleOptions: import_smithy_client._json,
|
|
10053
10060
|
PointStyleOptions: import_smithy_client._json,
|
|
@@ -10116,6 +10123,7 @@ var se_HeatMapConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
10116
10123
|
ColumnLabelOptions: import_smithy_client._json,
|
|
10117
10124
|
DataLabels: import_smithy_client._json,
|
|
10118
10125
|
FieldWells: (_) => se_HeatMapFieldWells(_, context),
|
|
10126
|
+
Interactions: import_smithy_client._json,
|
|
10119
10127
|
Legend: import_smithy_client._json,
|
|
10120
10128
|
RowLabelOptions: import_smithy_client._json,
|
|
10121
10129
|
SortConfiguration: (_) => se_HeatMapSortConfiguration(_, context),
|
|
@@ -10168,6 +10176,7 @@ var se_HistogramConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
10168
10176
|
BinOptions: (_) => se_HistogramBinOptions(_, context),
|
|
10169
10177
|
DataLabels: import_smithy_client._json,
|
|
10170
10178
|
FieldWells: (_) => se_HistogramFieldWells(_, context),
|
|
10179
|
+
Interactions: import_smithy_client._json,
|
|
10171
10180
|
Tooltip: (_) => se_TooltipOptions(_, context),
|
|
10172
10181
|
VisualPalette: import_smithy_client._json,
|
|
10173
10182
|
XAxisDisplayOptions: (_) => se_AxisDisplayOptions(_, context),
|
|
@@ -10197,7 +10206,8 @@ var se_HistogramVisual = /* @__PURE__ */ __name((input, context) => {
|
|
|
10197
10206
|
var se_InsightConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
10198
10207
|
return (0, import_smithy_client.take)(input, {
|
|
10199
10208
|
Computations: (_) => se_ComputationList(_, context),
|
|
10200
|
-
CustomNarrative: import_smithy_client._json
|
|
10209
|
+
CustomNarrative: import_smithy_client._json,
|
|
10210
|
+
Interactions: import_smithy_client._json
|
|
10201
10211
|
});
|
|
10202
10212
|
}, "se_InsightConfiguration");
|
|
10203
10213
|
var se_InsightVisual = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -10243,6 +10253,7 @@ var se_KPIConditionalFormattingOptionList = /* @__PURE__ */ __name((input, conte
|
|
|
10243
10253
|
var se_KPIConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
10244
10254
|
return (0, import_smithy_client.take)(input, {
|
|
10245
10255
|
FieldWells: (_) => se_KPIFieldWells(_, context),
|
|
10256
|
+
Interactions: import_smithy_client._json,
|
|
10246
10257
|
KPIOptions: import_smithy_client._json,
|
|
10247
10258
|
SortConfiguration: (_) => se_KPISortConfiguration(_, context)
|
|
10248
10259
|
});
|
|
@@ -10313,6 +10324,7 @@ var se_LineChartConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
10313
10324
|
DefaultSeriesSettings: import_smithy_client._json,
|
|
10314
10325
|
FieldWells: (_) => se_LineChartFieldWells(_, context),
|
|
10315
10326
|
ForecastConfigurations: (_) => se_ForecastConfigurationList(_, context),
|
|
10327
|
+
Interactions: import_smithy_client._json,
|
|
10316
10328
|
Legend: import_smithy_client._json,
|
|
10317
10329
|
PrimaryYAxisDisplayOptions: (_) => se_LineSeriesAxisDisplayOptions(_, context),
|
|
10318
10330
|
PrimaryYAxisLabelOptions: import_smithy_client._json,
|
|
@@ -10568,6 +10580,7 @@ var se_PieChartConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
10568
10580
|
DataLabels: import_smithy_client._json,
|
|
10569
10581
|
DonutOptions: import_smithy_client._json,
|
|
10570
10582
|
FieldWells: (_) => se_PieChartFieldWells(_, context),
|
|
10583
|
+
Interactions: import_smithy_client._json,
|
|
10571
10584
|
Legend: import_smithy_client._json,
|
|
10572
10585
|
SmallMultiplesOptions: import_smithy_client._json,
|
|
10573
10586
|
SortConfiguration: (_) => se_PieChartSortConfiguration(_, context),
|
|
@@ -10649,6 +10662,7 @@ var se_PivotTableConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
10649
10662
|
return (0, import_smithy_client.take)(input, {
|
|
10650
10663
|
FieldOptions: import_smithy_client._json,
|
|
10651
10664
|
FieldWells: (_) => se_PivotTableFieldWells(_, context),
|
|
10665
|
+
Interactions: import_smithy_client._json,
|
|
10652
10666
|
PaginatedReportOptions: import_smithy_client._json,
|
|
10653
10667
|
SortConfiguration: (_) => se_PivotTableSortConfiguration(_, context),
|
|
10654
10668
|
TableOptions: import_smithy_client._json,
|
|
@@ -10708,6 +10722,7 @@ var se_RadarChartConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
10708
10722
|
ColorAxis: (_) => se_AxisDisplayOptions(_, context),
|
|
10709
10723
|
ColorLabelOptions: import_smithy_client._json,
|
|
10710
10724
|
FieldWells: (_) => se_RadarChartFieldWells(_, context),
|
|
10725
|
+
Interactions: import_smithy_client._json,
|
|
10711
10726
|
Legend: import_smithy_client._json,
|
|
10712
10727
|
Shape: [],
|
|
10713
10728
|
SortConfiguration: (_) => se_RadarChartSortConfiguration(_, context),
|
|
@@ -10801,6 +10816,7 @@ var se_SankeyDiagramChartConfiguration = /* @__PURE__ */ __name((input, context)
|
|
|
10801
10816
|
return (0, import_smithy_client.take)(input, {
|
|
10802
10817
|
DataLabels: import_smithy_client._json,
|
|
10803
10818
|
FieldWells: (_) => se_SankeyDiagramFieldWells(_, context),
|
|
10819
|
+
Interactions: import_smithy_client._json,
|
|
10804
10820
|
SortConfiguration: (_) => se_SankeyDiagramSortConfiguration(_, context)
|
|
10805
10821
|
});
|
|
10806
10822
|
}, "se_SankeyDiagramChartConfiguration");
|
|
@@ -10838,6 +10854,7 @@ var se_ScatterPlotConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
10838
10854
|
return (0, import_smithy_client.take)(input, {
|
|
10839
10855
|
DataLabels: import_smithy_client._json,
|
|
10840
10856
|
FieldWells: (_) => se_ScatterPlotFieldWells(_, context),
|
|
10857
|
+
Interactions: import_smithy_client._json,
|
|
10841
10858
|
Legend: import_smithy_client._json,
|
|
10842
10859
|
SortConfiguration: import_smithy_client._json,
|
|
10843
10860
|
Tooltip: (_) => se_TooltipOptions(_, context),
|
|
@@ -10972,6 +10989,7 @@ var se_TableConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
10972
10989
|
return (0, import_smithy_client.take)(input, {
|
|
10973
10990
|
FieldOptions: import_smithy_client._json,
|
|
10974
10991
|
FieldWells: (_) => se_TableFieldWells(_, context),
|
|
10992
|
+
Interactions: import_smithy_client._json,
|
|
10975
10993
|
PaginatedReportOptions: import_smithy_client._json,
|
|
10976
10994
|
SortConfiguration: (_) => se_TableSortConfiguration(_, context),
|
|
10977
10995
|
TableInlineVisualizations: import_smithy_client._json,
|
|
@@ -11175,6 +11193,7 @@ var se_TreeMapConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
11175
11193
|
DataLabels: import_smithy_client._json,
|
|
11176
11194
|
FieldWells: (_) => se_TreeMapFieldWells(_, context),
|
|
11177
11195
|
GroupLabelOptions: import_smithy_client._json,
|
|
11196
|
+
Interactions: import_smithy_client._json,
|
|
11178
11197
|
Legend: import_smithy_client._json,
|
|
11179
11198
|
SizeLabelOptions: import_smithy_client._json,
|
|
11180
11199
|
SortConfiguration: (_) => se_TreeMapSortConfiguration(_, context),
|
|
@@ -11282,8 +11301,10 @@ var se_WaterfallChartConfiguration = /* @__PURE__ */ __name((input, context) =>
|
|
|
11282
11301
|
return (0, import_smithy_client.take)(input, {
|
|
11283
11302
|
CategoryAxisDisplayOptions: (_) => se_AxisDisplayOptions(_, context),
|
|
11284
11303
|
CategoryAxisLabelOptions: import_smithy_client._json,
|
|
11304
|
+
ColorConfiguration: import_smithy_client._json,
|
|
11285
11305
|
DataLabels: import_smithy_client._json,
|
|
11286
11306
|
FieldWells: (_) => se_WaterfallChartFieldWells(_, context),
|
|
11307
|
+
Interactions: import_smithy_client._json,
|
|
11287
11308
|
Legend: import_smithy_client._json,
|
|
11288
11309
|
PrimaryYAxisDisplayOptions: (_) => se_AxisDisplayOptions(_, context),
|
|
11289
11310
|
PrimaryYAxisLabelOptions: import_smithy_client._json,
|
|
@@ -11336,6 +11357,7 @@ var se_WordCloudChartConfiguration = /* @__PURE__ */ __name((input, context) =>
|
|
|
11336
11357
|
return (0, import_smithy_client.take)(input, {
|
|
11337
11358
|
CategoryLabelOptions: import_smithy_client._json,
|
|
11338
11359
|
FieldWells: (_) => se_WordCloudFieldWells(_, context),
|
|
11360
|
+
Interactions: import_smithy_client._json,
|
|
11339
11361
|
SortConfiguration: (_) => se_WordCloudSortConfiguration(_, context),
|
|
11340
11362
|
WordCloudOptions: import_smithy_client._json
|
|
11341
11363
|
});
|
|
@@ -11573,6 +11595,7 @@ var de_BarChartConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
11573
11595
|
ContributionAnalysisDefaults: import_smithy_client._json,
|
|
11574
11596
|
DataLabels: import_smithy_client._json,
|
|
11575
11597
|
FieldWells: (_) => de_BarChartFieldWells(_, context),
|
|
11598
|
+
Interactions: import_smithy_client._json,
|
|
11576
11599
|
Legend: import_smithy_client._json,
|
|
11577
11600
|
Orientation: import_smithy_client.expectString,
|
|
11578
11601
|
ReferenceLines: (_) => de_ReferenceLineList(_, context),
|
|
@@ -11627,6 +11650,7 @@ var de_BoxPlotChartConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
11627
11650
|
CategoryAxis: (_) => de_AxisDisplayOptions(_, context),
|
|
11628
11651
|
CategoryLabelOptions: import_smithy_client._json,
|
|
11629
11652
|
FieldWells: (_) => de_BoxPlotFieldWells(_, context),
|
|
11653
|
+
Interactions: import_smithy_client._json,
|
|
11630
11654
|
Legend: import_smithy_client._json,
|
|
11631
11655
|
PrimaryYAxisDisplayOptions: (_) => de_AxisDisplayOptions(_, context),
|
|
11632
11656
|
PrimaryYAxisLabelOptions: import_smithy_client._json,
|
|
@@ -11720,6 +11744,7 @@ var de_ComboChartConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
11720
11744
|
CategoryLabelOptions: import_smithy_client._json,
|
|
11721
11745
|
ColorLabelOptions: import_smithy_client._json,
|
|
11722
11746
|
FieldWells: (_) => de_ComboChartFieldWells(_, context),
|
|
11747
|
+
Interactions: import_smithy_client._json,
|
|
11723
11748
|
Legend: import_smithy_client._json,
|
|
11724
11749
|
LineDataLabels: import_smithy_client._json,
|
|
11725
11750
|
PrimaryYAxisDisplayOptions: (_) => de_AxisDisplayOptions(_, context),
|
|
@@ -12191,6 +12216,7 @@ var de_FilledMapConditionalFormattingOptionList = /* @__PURE__ */ __name((output
|
|
|
12191
12216
|
var de_FilledMapConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
12192
12217
|
return (0, import_smithy_client.take)(output, {
|
|
12193
12218
|
FieldWells: (_) => de_FilledMapFieldWells(_, context),
|
|
12219
|
+
Interactions: import_smithy_client._json,
|
|
12194
12220
|
Legend: import_smithy_client._json,
|
|
12195
12221
|
MapStyleOptions: import_smithy_client._json,
|
|
12196
12222
|
SortConfiguration: (_) => de_FilledMapSortConfiguration(_, context),
|
|
@@ -12365,6 +12391,7 @@ var de_FunnelChartConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
12365
12391
|
CategoryLabelOptions: import_smithy_client._json,
|
|
12366
12392
|
DataLabelOptions: import_smithy_client._json,
|
|
12367
12393
|
FieldWells: (_) => de_FunnelChartFieldWells(_, context),
|
|
12394
|
+
Interactions: import_smithy_client._json,
|
|
12368
12395
|
SortConfiguration: (_) => de_FunnelChartSortConfiguration(_, context),
|
|
12369
12396
|
Tooltip: (_) => de_TooltipOptions(_, context),
|
|
12370
12397
|
ValueLabelOptions: import_smithy_client._json,
|
|
@@ -12425,6 +12452,7 @@ var de_GaugeChartConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
12425
12452
|
DataLabels: import_smithy_client._json,
|
|
12426
12453
|
FieldWells: (_) => de_GaugeChartFieldWells(_, context),
|
|
12427
12454
|
GaugeChartOptions: (_) => de_GaugeChartOptions(_, context),
|
|
12455
|
+
Interactions: import_smithy_client._json,
|
|
12428
12456
|
TooltipOptions: (_) => de_TooltipOptions(_, context),
|
|
12429
12457
|
VisualPalette: import_smithy_client._json
|
|
12430
12458
|
});
|
|
@@ -12478,6 +12506,7 @@ var de_GeospatialMapAggregatedFieldWells = /* @__PURE__ */ __name((output, conte
|
|
|
12478
12506
|
var de_GeospatialMapConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
12479
12507
|
return (0, import_smithy_client.take)(output, {
|
|
12480
12508
|
FieldWells: (_) => de_GeospatialMapFieldWells(_, context),
|
|
12509
|
+
Interactions: import_smithy_client._json,
|
|
12481
12510
|
Legend: import_smithy_client._json,
|
|
12482
12511
|
MapStyleOptions: import_smithy_client._json,
|
|
12483
12512
|
PointStyleOptions: import_smithy_client._json,
|
|
@@ -12547,6 +12576,7 @@ var de_HeatMapConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
12547
12576
|
ColumnLabelOptions: import_smithy_client._json,
|
|
12548
12577
|
DataLabels: import_smithy_client._json,
|
|
12549
12578
|
FieldWells: (_) => de_HeatMapFieldWells(_, context),
|
|
12579
|
+
Interactions: import_smithy_client._json,
|
|
12550
12580
|
Legend: import_smithy_client._json,
|
|
12551
12581
|
RowLabelOptions: import_smithy_client._json,
|
|
12552
12582
|
SortConfiguration: (_) => de_HeatMapSortConfiguration(_, context),
|
|
@@ -12600,6 +12630,7 @@ var de_HistogramConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
12600
12630
|
BinOptions: (_) => de_HistogramBinOptions(_, context),
|
|
12601
12631
|
DataLabels: import_smithy_client._json,
|
|
12602
12632
|
FieldWells: (_) => de_HistogramFieldWells(_, context),
|
|
12633
|
+
Interactions: import_smithy_client._json,
|
|
12603
12634
|
Tooltip: (_) => de_TooltipOptions(_, context),
|
|
12604
12635
|
VisualPalette: import_smithy_client._json,
|
|
12605
12636
|
XAxisDisplayOptions: (_) => de_AxisDisplayOptions(_, context),
|
|
@@ -12651,7 +12682,8 @@ var de_Ingestions = /* @__PURE__ */ __name((output, context) => {
|
|
|
12651
12682
|
var de_InsightConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
12652
12683
|
return (0, import_smithy_client.take)(output, {
|
|
12653
12684
|
Computations: (_) => de_ComputationList(_, context),
|
|
12654
|
-
CustomNarrative: import_smithy_client._json
|
|
12685
|
+
CustomNarrative: import_smithy_client._json,
|
|
12686
|
+
Interactions: import_smithy_client._json
|
|
12655
12687
|
});
|
|
12656
12688
|
}, "de_InsightConfiguration");
|
|
12657
12689
|
var de_InsightVisual = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -12698,6 +12730,7 @@ var de_KPIConditionalFormattingOptionList = /* @__PURE__ */ __name((output, cont
|
|
|
12698
12730
|
var de_KPIConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
12699
12731
|
return (0, import_smithy_client.take)(output, {
|
|
12700
12732
|
FieldWells: (_) => de_KPIFieldWells(_, context),
|
|
12733
|
+
Interactions: import_smithy_client._json,
|
|
12701
12734
|
KPIOptions: import_smithy_client._json,
|
|
12702
12735
|
SortConfiguration: (_) => de_KPISortConfiguration(_, context)
|
|
12703
12736
|
});
|
|
@@ -12769,6 +12802,7 @@ var de_LineChartConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
12769
12802
|
DefaultSeriesSettings: import_smithy_client._json,
|
|
12770
12803
|
FieldWells: (_) => de_LineChartFieldWells(_, context),
|
|
12771
12804
|
ForecastConfigurations: (_) => de_ForecastConfigurationList(_, context),
|
|
12805
|
+
Interactions: import_smithy_client._json,
|
|
12772
12806
|
Legend: import_smithy_client._json,
|
|
12773
12807
|
PrimaryYAxisDisplayOptions: (_) => de_LineSeriesAxisDisplayOptions(_, context),
|
|
12774
12808
|
PrimaryYAxisLabelOptions: import_smithy_client._json,
|
|
@@ -13027,6 +13061,7 @@ var de_PieChartConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
13027
13061
|
DataLabels: import_smithy_client._json,
|
|
13028
13062
|
DonutOptions: import_smithy_client._json,
|
|
13029
13063
|
FieldWells: (_) => de_PieChartFieldWells(_, context),
|
|
13064
|
+
Interactions: import_smithy_client._json,
|
|
13030
13065
|
Legend: import_smithy_client._json,
|
|
13031
13066
|
SmallMultiplesOptions: import_smithy_client._json,
|
|
13032
13067
|
SortConfiguration: (_) => de_PieChartSortConfiguration(_, context),
|
|
@@ -13111,6 +13146,7 @@ var de_PivotTableConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
13111
13146
|
return (0, import_smithy_client.take)(output, {
|
|
13112
13147
|
FieldOptions: import_smithy_client._json,
|
|
13113
13148
|
FieldWells: (_) => de_PivotTableFieldWells(_, context),
|
|
13149
|
+
Interactions: import_smithy_client._json,
|
|
13114
13150
|
PaginatedReportOptions: import_smithy_client._json,
|
|
13115
13151
|
SortConfiguration: (_) => de_PivotTableSortConfiguration(_, context),
|
|
13116
13152
|
TableOptions: import_smithy_client._json,
|
|
@@ -13170,6 +13206,7 @@ var de_RadarChartConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
13170
13206
|
ColorAxis: (_) => de_AxisDisplayOptions(_, context),
|
|
13171
13207
|
ColorLabelOptions: import_smithy_client._json,
|
|
13172
13208
|
FieldWells: (_) => de_RadarChartFieldWells(_, context),
|
|
13209
|
+
Interactions: import_smithy_client._json,
|
|
13173
13210
|
Legend: import_smithy_client._json,
|
|
13174
13211
|
Shape: import_smithy_client.expectString,
|
|
13175
13212
|
SortConfiguration: (_) => de_RadarChartSortConfiguration(_, context),
|
|
@@ -13272,6 +13309,7 @@ var de_SankeyDiagramChartConfiguration = /* @__PURE__ */ __name((output, context
|
|
|
13272
13309
|
return (0, import_smithy_client.take)(output, {
|
|
13273
13310
|
DataLabels: import_smithy_client._json,
|
|
13274
13311
|
FieldWells: (_) => de_SankeyDiagramFieldWells(_, context),
|
|
13312
|
+
Interactions: import_smithy_client._json,
|
|
13275
13313
|
SortConfiguration: (_) => de_SankeyDiagramSortConfiguration(_, context)
|
|
13276
13314
|
});
|
|
13277
13315
|
}, "de_SankeyDiagramChartConfiguration");
|
|
@@ -13309,6 +13347,7 @@ var de_ScatterPlotConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
13309
13347
|
return (0, import_smithy_client.take)(output, {
|
|
13310
13348
|
DataLabels: import_smithy_client._json,
|
|
13311
13349
|
FieldWells: (_) => de_ScatterPlotFieldWells(_, context),
|
|
13350
|
+
Interactions: import_smithy_client._json,
|
|
13312
13351
|
Legend: import_smithy_client._json,
|
|
13313
13352
|
SortConfiguration: import_smithy_client._json,
|
|
13314
13353
|
Tooltip: (_) => de_TooltipOptions(_, context),
|
|
@@ -13448,6 +13487,7 @@ var de_TableConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
13448
13487
|
return (0, import_smithy_client.take)(output, {
|
|
13449
13488
|
FieldOptions: import_smithy_client._json,
|
|
13450
13489
|
FieldWells: (_) => de_TableFieldWells(_, context),
|
|
13490
|
+
Interactions: import_smithy_client._json,
|
|
13451
13491
|
PaginatedReportOptions: import_smithy_client._json,
|
|
13452
13492
|
SortConfiguration: (_) => de_TableSortConfiguration(_, context),
|
|
13453
13493
|
TableInlineVisualizations: import_smithy_client._json,
|
|
@@ -13806,6 +13846,7 @@ var de_TreeMapConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
13806
13846
|
DataLabels: import_smithy_client._json,
|
|
13807
13847
|
FieldWells: (_) => de_TreeMapFieldWells(_, context),
|
|
13808
13848
|
GroupLabelOptions: import_smithy_client._json,
|
|
13849
|
+
Interactions: import_smithy_client._json,
|
|
13809
13850
|
Legend: import_smithy_client._json,
|
|
13810
13851
|
SizeLabelOptions: import_smithy_client._json,
|
|
13811
13852
|
SortConfiguration: (_) => de_TreeMapSortConfiguration(_, context),
|
|
@@ -13955,8 +13996,10 @@ var de_WaterfallChartConfiguration = /* @__PURE__ */ __name((output, context) =>
|
|
|
13955
13996
|
return (0, import_smithy_client.take)(output, {
|
|
13956
13997
|
CategoryAxisDisplayOptions: (_) => de_AxisDisplayOptions(_, context),
|
|
13957
13998
|
CategoryAxisLabelOptions: import_smithy_client._json,
|
|
13999
|
+
ColorConfiguration: import_smithy_client._json,
|
|
13958
14000
|
DataLabels: import_smithy_client._json,
|
|
13959
14001
|
FieldWells: (_) => de_WaterfallChartFieldWells(_, context),
|
|
14002
|
+
Interactions: import_smithy_client._json,
|
|
13960
14003
|
Legend: import_smithy_client._json,
|
|
13961
14004
|
PrimaryYAxisDisplayOptions: (_) => de_AxisDisplayOptions(_, context),
|
|
13962
14005
|
PrimaryYAxisLabelOptions: import_smithy_client._json,
|
|
@@ -14009,6 +14052,7 @@ var de_WordCloudChartConfiguration = /* @__PURE__ */ __name((output, context) =>
|
|
|
14009
14052
|
return (0, import_smithy_client.take)(output, {
|
|
14010
14053
|
CategoryLabelOptions: import_smithy_client._json,
|
|
14011
14054
|
FieldWells: (_) => de_WordCloudFieldWells(_, context),
|
|
14055
|
+
Interactions: import_smithy_client._json,
|
|
14012
14056
|
SortConfiguration: (_) => de_WordCloudSortConfiguration(_, context),
|
|
14013
14057
|
WordCloudOptions: import_smithy_client._json
|
|
14014
14058
|
});
|
|
@@ -18957,7 +19001,6 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
18957
19001
|
DefaultAggregation,
|
|
18958
19002
|
DisplayFormat,
|
|
18959
19003
|
TopicNumericSeparatorSymbol,
|
|
18960
|
-
TopicTimeGranularity,
|
|
18961
19004
|
SnapshotJobS3ResultFilterSensitiveLog,
|
|
18962
19005
|
SnapshotJobResultFileGroupFilterSensitiveLog,
|
|
18963
19006
|
AnonymousUserSnapshotJobResultFilterSensitiveLog,
|
|
@@ -18988,8 +19031,7 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
18988
19031
|
TemplateVersionDefinitionFilterSensitiveLog,
|
|
18989
19032
|
CreateTemplateRequestFilterSensitiveLog,
|
|
18990
19033
|
SemanticTypeFilterSensitiveLog,
|
|
18991
|
-
|
|
18992
|
-
TopicColumnFilterSensitiveLog,
|
|
19034
|
+
TopicTimeGranularity,
|
|
18993
19035
|
FilterClass,
|
|
18994
19036
|
NamedFilterType,
|
|
18995
19037
|
NamedFilterAggType,
|
|
@@ -19030,6 +19072,8 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
19030
19072
|
GroupFilterAttribute,
|
|
19031
19073
|
GroupFilterOperator,
|
|
19032
19074
|
InvalidRequestException,
|
|
19075
|
+
TopicCalculatedFieldFilterSensitiveLog,
|
|
19076
|
+
TopicColumnFilterSensitiveLog,
|
|
19033
19077
|
TopicCategoryFilterConstantFilterSensitiveLog,
|
|
19034
19078
|
TopicCategoryFilterFilterSensitiveLog,
|
|
19035
19079
|
TopicRangeFilterConstantFilterSensitiveLog,
|
|
@@ -588,16 +588,6 @@ export const TopicNumericSeparatorSymbol = {
|
|
|
588
588
|
COMMA: "COMMA",
|
|
589
589
|
DOT: "DOT",
|
|
590
590
|
};
|
|
591
|
-
export const TopicTimeGranularity = {
|
|
592
|
-
DAY: "DAY",
|
|
593
|
-
HOUR: "HOUR",
|
|
594
|
-
MINUTE: "MINUTE",
|
|
595
|
-
MONTH: "MONTH",
|
|
596
|
-
QUARTER: "QUARTER",
|
|
597
|
-
SECOND: "SECOND",
|
|
598
|
-
WEEK: "WEEK",
|
|
599
|
-
YEAR: "YEAR",
|
|
600
|
-
};
|
|
601
591
|
export const SnapshotJobS3ResultFilterSensitiveLog = (obj) => ({
|
|
602
592
|
...obj,
|
|
603
593
|
...(obj.S3Uri && { S3Uri: SENSITIVE_STRING }),
|
|
@@ -775,12 +765,3 @@ export const SemanticTypeFilterSensitiveLog = (obj) => ({
|
|
|
775
765
|
...(obj.FalseyCellValue && { FalseyCellValue: SENSITIVE_STRING }),
|
|
776
766
|
...(obj.FalseyCellValueSynonyms && { FalseyCellValueSynonyms: SENSITIVE_STRING }),
|
|
777
767
|
});
|
|
778
|
-
export const TopicCalculatedFieldFilterSensitiveLog = (obj) => ({
|
|
779
|
-
...obj,
|
|
780
|
-
...(obj.Expression && { Expression: SENSITIVE_STRING }),
|
|
781
|
-
...(obj.SemanticType && { SemanticType: SemanticTypeFilterSensitiveLog(obj.SemanticType) }),
|
|
782
|
-
});
|
|
783
|
-
export const TopicColumnFilterSensitiveLog = (obj) => ({
|
|
784
|
-
...obj,
|
|
785
|
-
...(obj.SemanticType && { SemanticType: SemanticTypeFilterSensitiveLog(obj.SemanticType) }),
|
|
786
|
-
});
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
|
-
import { _ParametersFilterSensitiveLog, AssetBundleImportSourceDescriptionFilterSensitiveLog, LogicalTableFilterSensitiveLog, RowLevelPermissionTagConfigurationFilterSensitiveLog,
|
|
2
|
+
import { _ParametersFilterSensitiveLog, AssetBundleImportSourceDescriptionFilterSensitiveLog, LogicalTableFilterSensitiveLog, RowLevelPermissionTagConfigurationFilterSensitiveLog, SemanticTypeFilterSensitiveLog, } from "./models_2";
|
|
3
3
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
4
|
+
export const TopicTimeGranularity = {
|
|
5
|
+
DAY: "DAY",
|
|
6
|
+
HOUR: "HOUR",
|
|
7
|
+
MINUTE: "MINUTE",
|
|
8
|
+
MONTH: "MONTH",
|
|
9
|
+
QUARTER: "QUARTER",
|
|
10
|
+
SECOND: "SECOND",
|
|
11
|
+
WEEK: "WEEK",
|
|
12
|
+
YEAR: "YEAR",
|
|
13
|
+
};
|
|
4
14
|
export const FilterClass = {
|
|
5
15
|
CONDITIONAL_VALUE_FILTER: "CONDITIONAL_VALUE_FILTER",
|
|
6
16
|
ENFORCED_VALUE_FILTER: "ENFORCED_VALUE_FILTER",
|
|
@@ -364,6 +374,15 @@ export class InvalidRequestException extends __BaseException {
|
|
|
364
374
|
this.RequestId = opts.RequestId;
|
|
365
375
|
}
|
|
366
376
|
}
|
|
377
|
+
export const TopicCalculatedFieldFilterSensitiveLog = (obj) => ({
|
|
378
|
+
...obj,
|
|
379
|
+
...(obj.Expression && { Expression: SENSITIVE_STRING }),
|
|
380
|
+
...(obj.SemanticType && { SemanticType: SemanticTypeFilterSensitiveLog(obj.SemanticType) }),
|
|
381
|
+
});
|
|
382
|
+
export const TopicColumnFilterSensitiveLog = (obj) => ({
|
|
383
|
+
...obj,
|
|
384
|
+
...(obj.SemanticType && { SemanticType: SemanticTypeFilterSensitiveLog(obj.SemanticType) }),
|
|
385
|
+
});
|
|
367
386
|
export const TopicCategoryFilterConstantFilterSensitiveLog = (obj) => ({
|
|
368
387
|
...obj,
|
|
369
388
|
});
|