@aws-sdk/client-quicksight 3.509.0 → 3.511.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 +14 -14
|
@@ -8,7 +8,6 @@ import {
|
|
|
8
8
|
CalculatedField,
|
|
9
9
|
ChartAxisLabelOptions,
|
|
10
10
|
ColumnConfiguration,
|
|
11
|
-
ColumnHierarchy,
|
|
12
11
|
ColumnIdentifier,
|
|
13
12
|
ColumnSort,
|
|
14
13
|
ContributionAnalysisDefault,
|
|
@@ -16,7 +15,9 @@ import {
|
|
|
16
15
|
DataLabelPosition,
|
|
17
16
|
DataPathValue,
|
|
18
17
|
DataSetIdentifierDeclaration,
|
|
18
|
+
DateTimeHierarchy,
|
|
19
19
|
DimensionField,
|
|
20
|
+
ExplicitHierarchy,
|
|
20
21
|
FieldSort,
|
|
21
22
|
FieldSortOptions,
|
|
22
23
|
FilterControl,
|
|
@@ -32,8 +33,8 @@ import {
|
|
|
32
33
|
ParameterControl,
|
|
33
34
|
ParameterDeclaration,
|
|
34
35
|
PercentageDisplayFormatConfiguration,
|
|
36
|
+
PredefinedHierarchy,
|
|
35
37
|
ReferenceLine,
|
|
36
|
-
ResourceStatus,
|
|
37
38
|
SheetContentType,
|
|
38
39
|
SheetControlLayout,
|
|
39
40
|
SheetTextBox,
|
|
@@ -44,10 +45,23 @@ import {
|
|
|
44
45
|
URLTargetConfiguration,
|
|
45
46
|
Visibility,
|
|
46
47
|
VisualCustomAction,
|
|
48
|
+
VisualInteractionOptions,
|
|
47
49
|
VisualPalette,
|
|
48
|
-
VisualSubtitleLabelOptions,
|
|
49
50
|
WidgetStatus,
|
|
50
51
|
} from "./models_0";
|
|
52
|
+
export interface ColumnHierarchy {
|
|
53
|
+
ExplicitHierarchy?: ExplicitHierarchy;
|
|
54
|
+
DateTimeHierarchy?: DateTimeHierarchy;
|
|
55
|
+
PredefinedHierarchy?: PredefinedHierarchy;
|
|
56
|
+
}
|
|
57
|
+
export interface LongFormatText {
|
|
58
|
+
PlainText?: string;
|
|
59
|
+
RichText?: string;
|
|
60
|
+
}
|
|
61
|
+
export interface VisualSubtitleLabelOptions {
|
|
62
|
+
Visibility?: Visibility;
|
|
63
|
+
FormatText?: LongFormatText;
|
|
64
|
+
}
|
|
51
65
|
export interface ShortFormatText {
|
|
52
66
|
PlainText?: string;
|
|
53
67
|
RichText?: string;
|
|
@@ -105,6 +119,7 @@ export interface BoxPlotChartConfiguration {
|
|
|
105
119
|
Tooltip?: TooltipOptions;
|
|
106
120
|
ReferenceLines?: ReferenceLine[];
|
|
107
121
|
VisualPalette?: VisualPalette;
|
|
122
|
+
Interactions?: VisualInteractionOptions;
|
|
108
123
|
}
|
|
109
124
|
export interface BoxPlotVisual {
|
|
110
125
|
VisualId: string | undefined;
|
|
@@ -158,6 +173,7 @@ export interface ComboChartConfiguration {
|
|
|
158
173
|
Tooltip?: TooltipOptions;
|
|
159
174
|
ReferenceLines?: ReferenceLine[];
|
|
160
175
|
VisualPalette?: VisualPalette;
|
|
176
|
+
Interactions?: VisualInteractionOptions;
|
|
161
177
|
}
|
|
162
178
|
export interface ComboChartVisual {
|
|
163
179
|
VisualId: string | undefined;
|
|
@@ -185,6 +201,7 @@ export interface CustomContentConfiguration {
|
|
|
185
201
|
ContentUrl?: string;
|
|
186
202
|
ContentType?: CustomContentType;
|
|
187
203
|
ImageScaling?: CustomContentImageScalingConfiguration;
|
|
204
|
+
Interactions?: VisualInteractionOptions;
|
|
188
205
|
}
|
|
189
206
|
export interface CustomContentVisual {
|
|
190
207
|
VisualId: string | undefined;
|
|
@@ -242,6 +259,7 @@ export interface FilledMapConfiguration {
|
|
|
242
259
|
Tooltip?: TooltipOptions;
|
|
243
260
|
WindowOptions?: GeospatialWindowOptions;
|
|
244
261
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
262
|
+
Interactions?: VisualInteractionOptions;
|
|
245
263
|
}
|
|
246
264
|
export interface GradientStop {
|
|
247
265
|
GradientOffset: number | undefined;
|
|
@@ -324,6 +342,7 @@ export interface FunnelChartConfiguration {
|
|
|
324
342
|
Tooltip?: TooltipOptions;
|
|
325
343
|
DataLabelOptions?: FunnelChartDataLabelOptions;
|
|
326
344
|
VisualPalette?: VisualPalette;
|
|
345
|
+
Interactions?: VisualInteractionOptions;
|
|
327
346
|
}
|
|
328
347
|
export interface FunnelChartVisual {
|
|
329
348
|
VisualId: string | undefined;
|
|
@@ -391,6 +410,7 @@ export interface GaugeChartConfiguration {
|
|
|
391
410
|
DataLabels?: DataLabelOptions;
|
|
392
411
|
TooltipOptions?: TooltipOptions;
|
|
393
412
|
VisualPalette?: VisualPalette;
|
|
413
|
+
Interactions?: VisualInteractionOptions;
|
|
394
414
|
}
|
|
395
415
|
export interface GaugeChartArcConditionalFormatting {
|
|
396
416
|
ForegroundColor?: ConditionalFormattingColor;
|
|
@@ -530,6 +550,7 @@ export interface GeospatialMapConfiguration {
|
|
|
530
550
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
531
551
|
PointStyleOptions?: GeospatialPointStyleOptions;
|
|
532
552
|
VisualPalette?: VisualPalette;
|
|
553
|
+
Interactions?: VisualInteractionOptions;
|
|
533
554
|
}
|
|
534
555
|
export interface GeospatialMapVisual {
|
|
535
556
|
VisualId: string | undefined;
|
|
@@ -576,6 +597,7 @@ export interface HeatMapConfiguration {
|
|
|
576
597
|
Legend?: LegendOptions;
|
|
577
598
|
DataLabels?: DataLabelOptions;
|
|
578
599
|
Tooltip?: TooltipOptions;
|
|
600
|
+
Interactions?: VisualInteractionOptions;
|
|
579
601
|
}
|
|
580
602
|
export interface HeatMapVisual {
|
|
581
603
|
VisualId: string | undefined;
|
|
@@ -619,6 +641,7 @@ export interface HistogramConfiguration {
|
|
|
619
641
|
DataLabels?: DataLabelOptions;
|
|
620
642
|
Tooltip?: TooltipOptions;
|
|
621
643
|
VisualPalette?: VisualPalette;
|
|
644
|
+
Interactions?: VisualInteractionOptions;
|
|
622
645
|
}
|
|
623
646
|
export interface HistogramVisual {
|
|
624
647
|
VisualId: string | undefined;
|
|
@@ -744,6 +767,7 @@ export interface CustomNarrativeOptions {
|
|
|
744
767
|
export interface InsightConfiguration {
|
|
745
768
|
Computations?: Computation[];
|
|
746
769
|
CustomNarrative?: CustomNarrativeOptions;
|
|
770
|
+
Interactions?: VisualInteractionOptions;
|
|
747
771
|
}
|
|
748
772
|
export interface InsightVisual {
|
|
749
773
|
VisualId: string | undefined;
|
|
@@ -809,6 +833,7 @@ export interface KPIConfiguration {
|
|
|
809
833
|
FieldWells?: KPIFieldWells;
|
|
810
834
|
SortConfiguration?: KPISortConfiguration;
|
|
811
835
|
KPIOptions?: KPIOptions;
|
|
836
|
+
Interactions?: VisualInteractionOptions;
|
|
812
837
|
}
|
|
813
838
|
export interface KPIActualValueConditionalFormatting {
|
|
814
839
|
TextColor?: ConditionalFormattingColor;
|
|
@@ -984,6 +1009,7 @@ export interface LineChartConfiguration {
|
|
|
984
1009
|
Tooltip?: TooltipOptions;
|
|
985
1010
|
ContributionAnalysisDefaults?: ContributionAnalysisDefault[];
|
|
986
1011
|
VisualPalette?: VisualPalette;
|
|
1012
|
+
Interactions?: VisualInteractionOptions;
|
|
987
1013
|
}
|
|
988
1014
|
export interface LineChartVisual {
|
|
989
1015
|
VisualId: string | undefined;
|
|
@@ -1036,6 +1062,7 @@ export interface PieChartConfiguration {
|
|
|
1036
1062
|
Tooltip?: TooltipOptions;
|
|
1037
1063
|
VisualPalette?: VisualPalette;
|
|
1038
1064
|
ContributionAnalysisDefaults?: ContributionAnalysisDefault[];
|
|
1065
|
+
Interactions?: VisualInteractionOptions;
|
|
1039
1066
|
}
|
|
1040
1067
|
export interface PieChartVisual {
|
|
1041
1068
|
VisualId: string | undefined;
|
|
@@ -1266,6 +1293,7 @@ export interface PivotTableConfiguration {
|
|
|
1266
1293
|
TotalOptions?: PivotTableTotalOptions;
|
|
1267
1294
|
FieldOptions?: PivotTableFieldOptions;
|
|
1268
1295
|
PaginatedReportOptions?: PivotTablePaginatedReportOptions;
|
|
1296
|
+
Interactions?: VisualInteractionOptions;
|
|
1269
1297
|
}
|
|
1270
1298
|
export declare const PivotTableConditionalFormattingScopeRole: {
|
|
1271
1299
|
readonly FIELD: "FIELD";
|
|
@@ -1351,6 +1379,7 @@ export interface RadarChartConfiguration {
|
|
|
1351
1379
|
ColorLabelOptions?: ChartAxisLabelOptions;
|
|
1352
1380
|
Legend?: LegendOptions;
|
|
1353
1381
|
AxesRangeScale?: RadarChartAxesRangeScale;
|
|
1382
|
+
Interactions?: VisualInteractionOptions;
|
|
1354
1383
|
}
|
|
1355
1384
|
export interface RadarChartVisual {
|
|
1356
1385
|
VisualId: string | undefined;
|
|
@@ -1377,6 +1406,7 @@ export interface SankeyDiagramChartConfiguration {
|
|
|
1377
1406
|
FieldWells?: SankeyDiagramFieldWells;
|
|
1378
1407
|
SortConfiguration?: SankeyDiagramSortConfiguration;
|
|
1379
1408
|
DataLabels?: DataLabelOptions;
|
|
1409
|
+
Interactions?: VisualInteractionOptions;
|
|
1380
1410
|
}
|
|
1381
1411
|
export interface SankeyDiagramVisual {
|
|
1382
1412
|
VisualId: string | undefined;
|
|
@@ -1417,6 +1447,7 @@ export interface ScatterPlotConfiguration {
|
|
|
1417
1447
|
DataLabels?: DataLabelOptions;
|
|
1418
1448
|
Tooltip?: TooltipOptions;
|
|
1419
1449
|
VisualPalette?: VisualPalette;
|
|
1450
|
+
Interactions?: VisualInteractionOptions;
|
|
1420
1451
|
}
|
|
1421
1452
|
export interface ScatterPlotVisual {
|
|
1422
1453
|
VisualId: string | undefined;
|
|
@@ -1538,6 +1569,7 @@ export interface TableConfiguration {
|
|
|
1538
1569
|
FieldOptions?: TableFieldOptions;
|
|
1539
1570
|
PaginatedReportOptions?: TablePaginatedReportOptions;
|
|
1540
1571
|
TableInlineVisualizations?: TableInlineVisualization[];
|
|
1572
|
+
Interactions?: VisualInteractionOptions;
|
|
1541
1573
|
}
|
|
1542
1574
|
export interface TableCellConditionalFormatting {
|
|
1543
1575
|
FieldId: string | undefined;
|
|
@@ -1584,6 +1616,7 @@ export interface TreeMapConfiguration {
|
|
|
1584
1616
|
Legend?: LegendOptions;
|
|
1585
1617
|
DataLabels?: DataLabelOptions;
|
|
1586
1618
|
Tooltip?: TooltipOptions;
|
|
1619
|
+
Interactions?: VisualInteractionOptions;
|
|
1587
1620
|
}
|
|
1588
1621
|
export interface TreeMapVisual {
|
|
1589
1622
|
VisualId: string | undefined;
|
|
@@ -1593,6 +1626,14 @@ export interface TreeMapVisual {
|
|
|
1593
1626
|
Actions?: VisualCustomAction[];
|
|
1594
1627
|
ColumnHierarchies?: ColumnHierarchy[];
|
|
1595
1628
|
}
|
|
1629
|
+
export interface WaterfallChartGroupColorConfiguration {
|
|
1630
|
+
PositiveBarColor?: string;
|
|
1631
|
+
NegativeBarColor?: string;
|
|
1632
|
+
TotalBarColor?: string;
|
|
1633
|
+
}
|
|
1634
|
+
export interface WaterfallChartColorConfiguration {
|
|
1635
|
+
GroupColorConfiguration?: WaterfallChartGroupColorConfiguration;
|
|
1636
|
+
}
|
|
1596
1637
|
export interface WaterfallChartAggregatedFieldWells {
|
|
1597
1638
|
Categories?: DimensionField[];
|
|
1598
1639
|
Values?: MeasureField[];
|
|
@@ -1619,6 +1660,8 @@ export interface WaterfallChartConfiguration {
|
|
|
1619
1660
|
Legend?: LegendOptions;
|
|
1620
1661
|
DataLabels?: DataLabelOptions;
|
|
1621
1662
|
VisualPalette?: VisualPalette;
|
|
1663
|
+
ColorConfiguration?: WaterfallChartColorConfiguration;
|
|
1664
|
+
Interactions?: VisualInteractionOptions;
|
|
1622
1665
|
}
|
|
1623
1666
|
export interface WaterfallVisual {
|
|
1624
1667
|
VisualId: string | undefined;
|
|
@@ -1684,6 +1727,7 @@ export interface WordCloudChartConfiguration {
|
|
|
1684
1727
|
SortConfiguration?: WordCloudSortConfiguration;
|
|
1685
1728
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
1686
1729
|
WordCloudOptions?: WordCloudOptions;
|
|
1730
|
+
Interactions?: VisualInteractionOptions;
|
|
1687
1731
|
}
|
|
1688
1732
|
export interface WordCloudVisual {
|
|
1689
1733
|
VisualId: string | undefined;
|
|
@@ -1763,28 +1807,6 @@ export interface AnalysisSearchFilter {
|
|
|
1763
1807
|
Name?: AnalysisFilterAttribute;
|
|
1764
1808
|
Value?: string;
|
|
1765
1809
|
}
|
|
1766
|
-
export interface DataSetReference {
|
|
1767
|
-
DataSetPlaceholder: string | undefined;
|
|
1768
|
-
DataSetArn: string | undefined;
|
|
1769
|
-
}
|
|
1770
|
-
export interface AnalysisSourceTemplate {
|
|
1771
|
-
DataSetReferences: DataSetReference[] | undefined;
|
|
1772
|
-
Arn: string | undefined;
|
|
1773
|
-
}
|
|
1774
|
-
export interface AnalysisSourceEntity {
|
|
1775
|
-
SourceTemplate?: AnalysisSourceTemplate;
|
|
1776
|
-
}
|
|
1777
|
-
export interface AnalysisSummary {
|
|
1778
|
-
Arn?: string;
|
|
1779
|
-
AnalysisId?: string;
|
|
1780
|
-
Name?: string;
|
|
1781
|
-
Status?: ResourceStatus;
|
|
1782
|
-
CreatedTime?: Date;
|
|
1783
|
-
LastUpdatedTime?: Date;
|
|
1784
|
-
}
|
|
1785
|
-
export interface AnonymousUserDashboardEmbeddingConfiguration {
|
|
1786
|
-
InitialDashboardId: string | undefined;
|
|
1787
|
-
}
|
|
1788
1810
|
export declare const BarChartVisualFilterSensitiveLog: (
|
|
1789
1811
|
obj: BarChartVisual
|
|
1790
1812
|
) => any;
|
|
@@ -16,15 +16,32 @@ import {
|
|
|
16
16
|
ParameterDeclaration,
|
|
17
17
|
ResourceStatus,
|
|
18
18
|
TimeGranularity,
|
|
19
|
+
VisualMenuOption,
|
|
19
20
|
} from "./models_0";
|
|
20
|
-
import {
|
|
21
|
-
AnalysisDefinition,
|
|
22
|
-
AnalysisSourceEntity,
|
|
23
|
-
AnonymousUserDashboardEmbeddingConfiguration,
|
|
24
|
-
DataSetReference,
|
|
25
|
-
SheetDefinition,
|
|
26
|
-
} from "./models_1";
|
|
21
|
+
import { AnalysisDefinition, SheetDefinition } from "./models_1";
|
|
27
22
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
23
|
+
export interface DataSetReference {
|
|
24
|
+
DataSetPlaceholder: string | undefined;
|
|
25
|
+
DataSetArn: string | undefined;
|
|
26
|
+
}
|
|
27
|
+
export interface AnalysisSourceTemplate {
|
|
28
|
+
DataSetReferences: DataSetReference[] | undefined;
|
|
29
|
+
Arn: string | undefined;
|
|
30
|
+
}
|
|
31
|
+
export interface AnalysisSourceEntity {
|
|
32
|
+
SourceTemplate?: AnalysisSourceTemplate;
|
|
33
|
+
}
|
|
34
|
+
export interface AnalysisSummary {
|
|
35
|
+
Arn?: string;
|
|
36
|
+
AnalysisId?: string;
|
|
37
|
+
Name?: string;
|
|
38
|
+
Status?: ResourceStatus;
|
|
39
|
+
CreatedTime?: Date;
|
|
40
|
+
LastUpdatedTime?: Date;
|
|
41
|
+
}
|
|
42
|
+
export interface AnonymousUserDashboardEmbeddingConfiguration {
|
|
43
|
+
InitialDashboardId: string | undefined;
|
|
44
|
+
}
|
|
28
45
|
export interface DashboardVisualId {
|
|
29
46
|
DashboardId: string | undefined;
|
|
30
47
|
SheetId: string | undefined;
|
|
@@ -1797,9 +1814,6 @@ export interface SheetLayoutElementMaximizationOption {
|
|
|
1797
1814
|
export interface VisualAxisSortOption {
|
|
1798
1815
|
AvailabilityStatus?: DashboardBehavior;
|
|
1799
1816
|
}
|
|
1800
|
-
export interface VisualMenuOption {
|
|
1801
|
-
AvailabilityStatus?: DashboardBehavior;
|
|
1802
|
-
}
|
|
1803
1817
|
export interface ExportHiddenFieldsOption {
|
|
1804
1818
|
AvailabilityStatus?: DashboardBehavior;
|
|
1805
1819
|
}
|
|
@@ -2755,60 +2769,6 @@ export interface SemanticType {
|
|
|
2755
2769
|
FalseyCellValue?: string;
|
|
2756
2770
|
FalseyCellValueSynonyms?: string[];
|
|
2757
2771
|
}
|
|
2758
|
-
export declare const TopicTimeGranularity: {
|
|
2759
|
-
readonly DAY: "DAY";
|
|
2760
|
-
readonly HOUR: "HOUR";
|
|
2761
|
-
readonly MINUTE: "MINUTE";
|
|
2762
|
-
readonly MONTH: "MONTH";
|
|
2763
|
-
readonly QUARTER: "QUARTER";
|
|
2764
|
-
readonly SECOND: "SECOND";
|
|
2765
|
-
readonly WEEK: "WEEK";
|
|
2766
|
-
readonly YEAR: "YEAR";
|
|
2767
|
-
};
|
|
2768
|
-
export type TopicTimeGranularity =
|
|
2769
|
-
(typeof TopicTimeGranularity)[keyof typeof TopicTimeGranularity];
|
|
2770
|
-
export interface TopicCalculatedField {
|
|
2771
|
-
CalculatedFieldName: string | undefined;
|
|
2772
|
-
CalculatedFieldDescription?: string;
|
|
2773
|
-
Expression: string | undefined;
|
|
2774
|
-
CalculatedFieldSynonyms?: string[];
|
|
2775
|
-
IsIncludedInTopic?: boolean;
|
|
2776
|
-
DisableIndexing?: boolean;
|
|
2777
|
-
ColumnDataRole?: ColumnDataRole;
|
|
2778
|
-
TimeGranularity?: TopicTimeGranularity;
|
|
2779
|
-
DefaultFormatting?: DefaultFormatting;
|
|
2780
|
-
Aggregation?: DefaultAggregation;
|
|
2781
|
-
ComparativeOrder?: ComparativeOrder;
|
|
2782
|
-
SemanticType?: SemanticType;
|
|
2783
|
-
AllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
2784
|
-
NotAllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
2785
|
-
NeverAggregateInFilter?: boolean;
|
|
2786
|
-
CellValueSynonyms?: CellValueSynonym[];
|
|
2787
|
-
NonAdditive?: boolean;
|
|
2788
|
-
}
|
|
2789
|
-
export interface TopicColumn {
|
|
2790
|
-
ColumnName: string | undefined;
|
|
2791
|
-
ColumnFriendlyName?: string;
|
|
2792
|
-
ColumnDescription?: string;
|
|
2793
|
-
ColumnSynonyms?: string[];
|
|
2794
|
-
ColumnDataRole?: ColumnDataRole;
|
|
2795
|
-
Aggregation?: DefaultAggregation;
|
|
2796
|
-
IsIncludedInTopic?: boolean;
|
|
2797
|
-
DisableIndexing?: boolean;
|
|
2798
|
-
ComparativeOrder?: ComparativeOrder;
|
|
2799
|
-
SemanticType?: SemanticType;
|
|
2800
|
-
TimeGranularity?: TopicTimeGranularity;
|
|
2801
|
-
AllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
2802
|
-
NotAllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
2803
|
-
DefaultFormatting?: DefaultFormatting;
|
|
2804
|
-
NeverAggregateInFilter?: boolean;
|
|
2805
|
-
CellValueSynonyms?: CellValueSynonym[];
|
|
2806
|
-
NonAdditive?: boolean;
|
|
2807
|
-
}
|
|
2808
|
-
export interface DataAggregation {
|
|
2809
|
-
DatasetRowDateGranularity?: TopicTimeGranularity;
|
|
2810
|
-
DefaultDateColumnName?: string;
|
|
2811
|
-
}
|
|
2812
2772
|
export declare const SnapshotJobS3ResultFilterSensitiveLog: (
|
|
2813
2773
|
obj: SnapshotJobS3Result
|
|
2814
2774
|
) => any;
|
|
@@ -2893,7 +2853,3 @@ export declare const CreateTemplateRequestFilterSensitiveLog: (
|
|
|
2893
2853
|
obj: CreateTemplateRequest
|
|
2894
2854
|
) => any;
|
|
2895
2855
|
export declare const SemanticTypeFilterSensitiveLog: (obj: SemanticType) => any;
|
|
2896
|
-
export declare const TopicCalculatedFieldFilterSensitiveLog: (
|
|
2897
|
-
obj: TopicCalculatedField
|
|
2898
|
-
) => any;
|
|
2899
|
-
export declare const TopicColumnFilterSensitiveLog: (obj: TopicColumn) => any;
|
|
@@ -10,13 +10,10 @@ import {
|
|
|
10
10
|
ResourceStatus,
|
|
11
11
|
Sheet,
|
|
12
12
|
} from "./models_0";
|
|
13
|
-
import {
|
|
14
|
-
AnalysisDefinition,
|
|
15
|
-
AnalysisSummary,
|
|
16
|
-
FilterOperator,
|
|
17
|
-
} from "./models_1";
|
|
13
|
+
import { AnalysisDefinition, FilterOperator } from "./models_1";
|
|
18
14
|
import {
|
|
19
15
|
_Parameters,
|
|
16
|
+
AnalysisSummary,
|
|
20
17
|
AnonymousUserEmbeddingExperienceConfiguration,
|
|
21
18
|
AnonymousUserSnapshotJobResult,
|
|
22
19
|
AssetBundleCloudFormationOverridePropertyConfiguration,
|
|
@@ -37,25 +34,30 @@ import {
|
|
|
37
34
|
AssetBundleImportSourceDescription,
|
|
38
35
|
AssignmentStatus,
|
|
39
36
|
AuthorizedTargetsByService,
|
|
37
|
+
AuthorSpecifiedAggregation,
|
|
40
38
|
BookmarksConfigurations,
|
|
41
39
|
CategoryFilterFunction,
|
|
42
40
|
CategoryFilterType,
|
|
41
|
+
CellValueSynonym,
|
|
43
42
|
CollectiveConstant,
|
|
43
|
+
ColumnDataRole,
|
|
44
44
|
ColumnDataSubType,
|
|
45
45
|
ColumnDataType,
|
|
46
46
|
ColumnGroup,
|
|
47
47
|
ColumnLevelPermissionRule,
|
|
48
|
+
ComparativeOrder,
|
|
48
49
|
ConstantType,
|
|
49
50
|
DashboardPublishOptions,
|
|
50
51
|
DashboardVersionDefinition,
|
|
51
52
|
DashboardVisualId,
|
|
52
|
-
DataAggregation,
|
|
53
53
|
DataSetConfiguration,
|
|
54
54
|
DataSetImportMode,
|
|
55
55
|
DatasetParameter,
|
|
56
56
|
DataSetUsageConfiguration,
|
|
57
57
|
DataSourceParameters,
|
|
58
58
|
DataSourceType,
|
|
59
|
+
DefaultAggregation,
|
|
60
|
+
DefaultFormatting,
|
|
59
61
|
FieldFolder,
|
|
60
62
|
FolderType,
|
|
61
63
|
Group,
|
|
@@ -72,6 +74,7 @@ import {
|
|
|
72
74
|
Role,
|
|
73
75
|
RowLevelPermissionDataSet,
|
|
74
76
|
RowLevelPermissionTagConfiguration,
|
|
77
|
+
SemanticType,
|
|
75
78
|
ServiceType,
|
|
76
79
|
SharingModel,
|
|
77
80
|
SnapshotFile,
|
|
@@ -82,12 +85,63 @@ import {
|
|
|
82
85
|
TemplateVersionDefinition,
|
|
83
86
|
ThemeAlias,
|
|
84
87
|
ThemeConfiguration,
|
|
85
|
-
TopicCalculatedField,
|
|
86
|
-
TopicColumn,
|
|
87
|
-
TopicTimeGranularity,
|
|
88
88
|
VpcConnectionProperties,
|
|
89
89
|
} from "./models_2";
|
|
90
90
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
91
|
+
export declare const TopicTimeGranularity: {
|
|
92
|
+
readonly DAY: "DAY";
|
|
93
|
+
readonly HOUR: "HOUR";
|
|
94
|
+
readonly MINUTE: "MINUTE";
|
|
95
|
+
readonly MONTH: "MONTH";
|
|
96
|
+
readonly QUARTER: "QUARTER";
|
|
97
|
+
readonly SECOND: "SECOND";
|
|
98
|
+
readonly WEEK: "WEEK";
|
|
99
|
+
readonly YEAR: "YEAR";
|
|
100
|
+
};
|
|
101
|
+
export type TopicTimeGranularity =
|
|
102
|
+
(typeof TopicTimeGranularity)[keyof typeof TopicTimeGranularity];
|
|
103
|
+
export interface TopicCalculatedField {
|
|
104
|
+
CalculatedFieldName: string | undefined;
|
|
105
|
+
CalculatedFieldDescription?: string;
|
|
106
|
+
Expression: string | undefined;
|
|
107
|
+
CalculatedFieldSynonyms?: string[];
|
|
108
|
+
IsIncludedInTopic?: boolean;
|
|
109
|
+
DisableIndexing?: boolean;
|
|
110
|
+
ColumnDataRole?: ColumnDataRole;
|
|
111
|
+
TimeGranularity?: TopicTimeGranularity;
|
|
112
|
+
DefaultFormatting?: DefaultFormatting;
|
|
113
|
+
Aggregation?: DefaultAggregation;
|
|
114
|
+
ComparativeOrder?: ComparativeOrder;
|
|
115
|
+
SemanticType?: SemanticType;
|
|
116
|
+
AllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
117
|
+
NotAllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
118
|
+
NeverAggregateInFilter?: boolean;
|
|
119
|
+
CellValueSynonyms?: CellValueSynonym[];
|
|
120
|
+
NonAdditive?: boolean;
|
|
121
|
+
}
|
|
122
|
+
export interface TopicColumn {
|
|
123
|
+
ColumnName: string | undefined;
|
|
124
|
+
ColumnFriendlyName?: string;
|
|
125
|
+
ColumnDescription?: string;
|
|
126
|
+
ColumnSynonyms?: string[];
|
|
127
|
+
ColumnDataRole?: ColumnDataRole;
|
|
128
|
+
Aggregation?: DefaultAggregation;
|
|
129
|
+
IsIncludedInTopic?: boolean;
|
|
130
|
+
DisableIndexing?: boolean;
|
|
131
|
+
ComparativeOrder?: ComparativeOrder;
|
|
132
|
+
SemanticType?: SemanticType;
|
|
133
|
+
TimeGranularity?: TopicTimeGranularity;
|
|
134
|
+
AllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
135
|
+
NotAllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
136
|
+
DefaultFormatting?: DefaultFormatting;
|
|
137
|
+
NeverAggregateInFilter?: boolean;
|
|
138
|
+
CellValueSynonyms?: CellValueSynonym[];
|
|
139
|
+
NonAdditive?: boolean;
|
|
140
|
+
}
|
|
141
|
+
export interface DataAggregation {
|
|
142
|
+
DatasetRowDateGranularity?: TopicTimeGranularity;
|
|
143
|
+
DefaultDateColumnName?: string;
|
|
144
|
+
}
|
|
91
145
|
export interface TopicCategoryFilterConstant {
|
|
92
146
|
ConstantType?: ConstantType;
|
|
93
147
|
SingularConstant?: string;
|
|
@@ -1995,28 +2049,10 @@ export interface ListNamespacesResponse {
|
|
|
1995
2049
|
RequestId?: string;
|
|
1996
2050
|
Status?: number;
|
|
1997
2051
|
}
|
|
1998
|
-
export
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
export interface ListRefreshSchedulesResponse {
|
|
2003
|
-
RefreshSchedules?: RefreshSchedule[];
|
|
2004
|
-
Status?: number;
|
|
2005
|
-
RequestId?: string;
|
|
2006
|
-
}
|
|
2007
|
-
export interface ListRoleMembershipsRequest {
|
|
2008
|
-
Role: Role | undefined;
|
|
2009
|
-
NextToken?: string;
|
|
2010
|
-
MaxResults?: number;
|
|
2011
|
-
AwsAccountId: string | undefined;
|
|
2012
|
-
Namespace: string | undefined;
|
|
2013
|
-
}
|
|
2014
|
-
export interface ListRoleMembershipsResponse {
|
|
2015
|
-
MembersList?: string[];
|
|
2016
|
-
NextToken?: string;
|
|
2017
|
-
RequestId?: string;
|
|
2018
|
-
Status?: number;
|
|
2019
|
-
}
|
|
2052
|
+
export declare const TopicCalculatedFieldFilterSensitiveLog: (
|
|
2053
|
+
obj: TopicCalculatedField
|
|
2054
|
+
) => any;
|
|
2055
|
+
export declare const TopicColumnFilterSensitiveLog: (obj: TopicColumn) => any;
|
|
2020
2056
|
export declare const TopicCategoryFilterConstantFilterSensitiveLog: (
|
|
2021
2057
|
obj: TopicCategoryFilterConstant
|
|
2022
2058
|
) => any;
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
import { AccountCustomization, ResourceStatus } from "./models_0";
|
|
2
|
+
import { AnalysisDefinition, AnalysisSearchFilter } from "./models_1";
|
|
2
3
|
import {
|
|
3
|
-
|
|
4
|
-
AnalysisSearchFilter,
|
|
4
|
+
_Parameters,
|
|
5
5
|
AnalysisSourceEntity,
|
|
6
6
|
AnalysisSummary,
|
|
7
|
-
} from "./models_1";
|
|
8
|
-
import {
|
|
9
|
-
_Parameters,
|
|
10
7
|
AssetBundleCloudFormationOverridePropertyConfiguration,
|
|
11
8
|
AssetBundleExportFormat,
|
|
12
9
|
AssetBundleExportJobValidationStrategy,
|
|
@@ -71,6 +68,28 @@ import {
|
|
|
71
68
|
VPCConnectionAvailabilityStatus,
|
|
72
69
|
VPCConnectionResourceStatus,
|
|
73
70
|
} from "./models_3";
|
|
71
|
+
export interface ListRefreshSchedulesRequest {
|
|
72
|
+
AwsAccountId: string | undefined;
|
|
73
|
+
DataSetId: string | undefined;
|
|
74
|
+
}
|
|
75
|
+
export interface ListRefreshSchedulesResponse {
|
|
76
|
+
RefreshSchedules?: RefreshSchedule[];
|
|
77
|
+
Status?: number;
|
|
78
|
+
RequestId?: string;
|
|
79
|
+
}
|
|
80
|
+
export interface ListRoleMembershipsRequest {
|
|
81
|
+
Role: Role | undefined;
|
|
82
|
+
NextToken?: string;
|
|
83
|
+
MaxResults?: number;
|
|
84
|
+
AwsAccountId: string | undefined;
|
|
85
|
+
Namespace: string | undefined;
|
|
86
|
+
}
|
|
87
|
+
export interface ListRoleMembershipsResponse {
|
|
88
|
+
MembersList?: string[];
|
|
89
|
+
NextToken?: string;
|
|
90
|
+
RequestId?: string;
|
|
91
|
+
Status?: number;
|
|
92
|
+
}
|
|
74
93
|
export interface ListTagsForResourceRequest {
|
|
75
94
|
ResourceArn: string | undefined;
|
|
76
95
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-quicksight",
|
|
3
3
|
"description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.511.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-quicksight",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.511.0",
|
|
24
|
+
"@aws-sdk/core": "3.511.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.511.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.511.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.511.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.511.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.511.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.511.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.511.0",
|
|
32
|
+
"@aws-sdk/types": "3.511.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.511.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.511.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.511.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.1.1",
|
|
37
37
|
"@smithy/core": "^1.3.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^2.4.1",
|