@aws-sdk/client-quicksight 3.598.0 → 3.606.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.
Files changed (35) hide show
  1. package/dist-cjs/index.js +195 -48
  2. package/dist-es/models/models_0.js +0 -14
  3. package/dist-es/models/models_1.js +14 -23
  4. package/dist-es/models/models_2.js +25 -2
  5. package/dist-es/protocols/Aws_restJson1.js +161 -2
  6. package/dist-types/commands/CreateAnalysisCommand.d.ts +60 -0
  7. package/dist-types/commands/CreateDashboardCommand.d.ts +60 -0
  8. package/dist-types/commands/CreateTemplateCommand.d.ts +60 -0
  9. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +60 -0
  10. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +60 -0
  11. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +60 -0
  12. package/dist-types/commands/ListAssetBundleImportJobsCommand.d.ts +2 -1
  13. package/dist-types/commands/ListDashboardVersionsCommand.d.ts +1 -1
  14. package/dist-types/commands/ListDashboardsCommand.d.ts +1 -1
  15. package/dist-types/commands/ListDataSetsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListDataSourcesCommand.d.ts +1 -2
  17. package/dist-types/commands/UpdateAnalysisCommand.d.ts +60 -0
  18. package/dist-types/commands/UpdateDashboardCommand.d.ts +60 -0
  19. package/dist-types/commands/UpdateTemplateCommand.d.ts +60 -0
  20. package/dist-types/models/models_0.d.ts +180 -194
  21. package/dist-types/models/models_1.d.ts +174 -199
  22. package/dist-types/models/models_2.d.ts +192 -106
  23. package/dist-types/models/models_3.d.ts +113 -189
  24. package/dist-types/models/models_4.d.ts +190 -2
  25. package/dist-types/ts3.4/commands/ListAssetBundleImportJobsCommand.d.ts +2 -4
  26. package/dist-types/ts3.4/commands/ListDashboardVersionsCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/ListDataSourcesCommand.d.ts +4 -2
  30. package/dist-types/ts3.4/models/models_0.d.ts +43 -48
  31. package/dist-types/ts3.4/models/models_1.d.ts +45 -62
  32. package/dist-types/ts3.4/models/models_2.d.ts +71 -33
  33. package/dist-types/ts3.4/models/models_3.d.ts +29 -49
  34. package/dist-types/ts3.4/models/models_4.d.ts +47 -0
  35. package/package.json +4 -4
@@ -593,6 +593,20 @@ export interface CategoryFilter {
593
593
  Configuration: CategoryFilterConfiguration | undefined;
594
594
  DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
595
595
  }
596
+ export interface CategoryInnerFilter {
597
+ Column: ColumnIdentifier | undefined;
598
+ Configuration: CategoryFilterConfiguration | undefined;
599
+ DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
600
+ }
601
+ export interface InnerFilter {
602
+ CategoryInnerFilter?: CategoryInnerFilter;
603
+ }
604
+ export interface NestedFilter {
605
+ FilterId: string | undefined;
606
+ Column: ColumnIdentifier | undefined;
607
+ IncludeInnerSet: boolean | undefined;
608
+ InnerFilter: InnerFilter | undefined;
609
+ }
596
610
  export declare const NumericEqualityMatchOperator: {
597
611
  readonly DOES_NOT_EQUAL: "DOES_NOT_EQUAL";
598
612
  readonly EQUALS: "EQUALS";
@@ -731,6 +745,7 @@ export interface Filter {
731
745
  TimeRangeFilter?: TimeRangeFilter;
732
746
  RelativeDatesFilter?: RelativeDatesFilter;
733
747
  TopBottomFilter?: TopBottomFilter;
748
+ NestedFilter?: NestedFilter;
734
749
  }
735
750
  export declare const FilterVisualScope: {
736
751
  readonly ALL_VISUALS: "ALL_VISUALS";
@@ -1012,6 +1027,33 @@ export interface SectionAfterPageBreak {
1012
1027
  export interface SectionPageBreakConfiguration {
1013
1028
  After?: SectionAfterPageBreak;
1014
1029
  }
1030
+ export interface ColumnSort {
1031
+ SortBy: ColumnIdentifier | undefined;
1032
+ Direction: SortDirection | undefined;
1033
+ AggregationFunction?: AggregationFunction;
1034
+ }
1035
+ export interface BodySectionDynamicCategoryDimensionConfiguration {
1036
+ Column: ColumnIdentifier | undefined;
1037
+ Limit?: number;
1038
+ SortByMetrics?: ColumnSort[];
1039
+ }
1040
+ export interface BodySectionDynamicNumericDimensionConfiguration {
1041
+ Column: ColumnIdentifier | undefined;
1042
+ Limit?: number;
1043
+ SortByMetrics?: ColumnSort[];
1044
+ }
1045
+ export interface BodySectionRepeatDimensionConfiguration {
1046
+ DynamicCategoryDimensionConfiguration?: BodySectionDynamicCategoryDimensionConfiguration;
1047
+ DynamicNumericDimensionConfiguration?: BodySectionDynamicNumericDimensionConfiguration;
1048
+ }
1049
+ export interface BodySectionRepeatPageBreakConfiguration {
1050
+ After?: SectionAfterPageBreak;
1051
+ }
1052
+ export interface BodySectionRepeatConfiguration {
1053
+ DimensionConfigurations?: BodySectionRepeatDimensionConfiguration[];
1054
+ PageBreakConfiguration?: BodySectionRepeatPageBreakConfiguration;
1055
+ NonRepeatingVisuals?: string[];
1056
+ }
1015
1057
  export interface SectionStyle {
1016
1058
  Height?: string;
1017
1059
  Padding?: Spacing;
@@ -1021,6 +1063,7 @@ export interface BodySectionConfiguration {
1021
1063
  Content: BodySectionContent | undefined;
1022
1064
  Style?: SectionStyle;
1023
1065
  PageBreakConfiguration?: SectionPageBreakConfiguration;
1066
+ RepeatConfiguration?: BodySectionRepeatConfiguration;
1024
1067
  }
1025
1068
  export interface HeaderFooterSectionConfiguration {
1026
1069
  SectionId: string | undefined;
@@ -1575,11 +1618,6 @@ export interface ItemsLimitConfiguration {
1575
1618
  ItemsLimit?: number;
1576
1619
  OtherCategories?: OtherCategories;
1577
1620
  }
1578
- export interface ColumnSort {
1579
- SortBy: ColumnIdentifier | undefined;
1580
- Direction: SortDirection | undefined;
1581
- AggregationFunction?: AggregationFunction;
1582
- }
1583
1621
  export interface FieldSort {
1584
1622
  FieldId: string | undefined;
1585
1623
  Direction: SortDirection | undefined;
@@ -1609,49 +1647,6 @@ export interface ColumnTooltipItem {
1609
1647
  Aggregation?: AggregationFunction;
1610
1648
  TooltipTarget?: TooltipTarget;
1611
1649
  }
1612
- export interface FieldTooltipItem {
1613
- FieldId: string | undefined;
1614
- Label?: string;
1615
- Visibility?: Visibility;
1616
- TooltipTarget?: TooltipTarget;
1617
- }
1618
- export interface TooltipItem {
1619
- FieldTooltipItem?: FieldTooltipItem;
1620
- ColumnTooltipItem?: ColumnTooltipItem;
1621
- }
1622
- export declare const TooltipTitleType: {
1623
- readonly NONE: "NONE";
1624
- readonly PRIMARY_VALUE: "PRIMARY_VALUE";
1625
- };
1626
- export type TooltipTitleType =
1627
- (typeof TooltipTitleType)[keyof typeof TooltipTitleType];
1628
- export interface FieldBasedTooltip {
1629
- AggregationVisibility?: Visibility;
1630
- TooltipTitleType?: TooltipTitleType;
1631
- TooltipFields?: TooltipItem[];
1632
- }
1633
- export declare const SelectedTooltipType: {
1634
- readonly BASIC: "BASIC";
1635
- readonly DETAILED: "DETAILED";
1636
- };
1637
- export type SelectedTooltipType =
1638
- (typeof SelectedTooltipType)[keyof typeof SelectedTooltipType];
1639
- export interface TooltipOptions {
1640
- TooltipVisibility?: Visibility;
1641
- SelectedTooltipType?: SelectedTooltipType;
1642
- FieldBasedTooltip?: FieldBasedTooltip;
1643
- }
1644
- export declare const PivotTableDataPathType: {
1645
- readonly COUNT_METRIC_COLUMN: "COUNT_METRIC_COLUMN";
1646
- readonly EMPTY_COLUMN_HEADER: "EMPTY_COLUMN_HEADER";
1647
- readonly HIERARCHY_ROWS_LAYOUT_COLUMN: "HIERARCHY_ROWS_LAYOUT_COLUMN";
1648
- readonly MULTIPLE_ROW_METRICS_COLUMN: "MULTIPLE_ROW_METRICS_COLUMN";
1649
- };
1650
- export type PivotTableDataPathType =
1651
- (typeof PivotTableDataPathType)[keyof typeof PivotTableDataPathType];
1652
- export interface DataPathType {
1653
- PivotTableDataPathType?: PivotTableDataPathType;
1654
- }
1655
1650
  export declare const CalculatedFieldFilterSensitiveLog: (
1656
1651
  obj: CalculatedField
1657
1652
  ) => any;
@@ -8,10 +8,10 @@ import {
8
8
  ChartAxisLabelOptions,
9
9
  ColumnIdentifier,
10
10
  ColumnSort,
11
+ ColumnTooltipItem,
11
12
  ContributionAnalysisDefault,
12
13
  DataLabelOptions,
13
14
  DataLabelPosition,
14
- DataPathType,
15
15
  DimensionField,
16
16
  FieldSort,
17
17
  FieldSortOptions,
@@ -27,13 +27,56 @@ import {
27
27
  SmallMultiplesOptions,
28
28
  SortDirection,
29
29
  TimeGranularity,
30
- TooltipOptions,
30
+ TooltipTarget,
31
31
  URLTargetConfiguration,
32
32
  Visibility,
33
33
  VisualCustomAction,
34
34
  VisualInteractionOptions,
35
35
  WidgetStatus,
36
36
  } from "./models_0";
37
+ export interface FieldTooltipItem {
38
+ FieldId: string | undefined;
39
+ Label?: string;
40
+ Visibility?: Visibility;
41
+ TooltipTarget?: TooltipTarget;
42
+ }
43
+ export interface TooltipItem {
44
+ FieldTooltipItem?: FieldTooltipItem;
45
+ ColumnTooltipItem?: ColumnTooltipItem;
46
+ }
47
+ export declare const TooltipTitleType: {
48
+ readonly NONE: "NONE";
49
+ readonly PRIMARY_VALUE: "PRIMARY_VALUE";
50
+ };
51
+ export type TooltipTitleType =
52
+ (typeof TooltipTitleType)[keyof typeof TooltipTitleType];
53
+ export interface FieldBasedTooltip {
54
+ AggregationVisibility?: Visibility;
55
+ TooltipTitleType?: TooltipTitleType;
56
+ TooltipFields?: TooltipItem[];
57
+ }
58
+ export declare const SelectedTooltipType: {
59
+ readonly BASIC: "BASIC";
60
+ readonly DETAILED: "DETAILED";
61
+ };
62
+ export type SelectedTooltipType =
63
+ (typeof SelectedTooltipType)[keyof typeof SelectedTooltipType];
64
+ export interface TooltipOptions {
65
+ TooltipVisibility?: Visibility;
66
+ SelectedTooltipType?: SelectedTooltipType;
67
+ FieldBasedTooltip?: FieldBasedTooltip;
68
+ }
69
+ export declare const PivotTableDataPathType: {
70
+ readonly COUNT_METRIC_COLUMN: "COUNT_METRIC_COLUMN";
71
+ readonly EMPTY_COLUMN_HEADER: "EMPTY_COLUMN_HEADER";
72
+ readonly HIERARCHY_ROWS_LAYOUT_COLUMN: "HIERARCHY_ROWS_LAYOUT_COLUMN";
73
+ readonly MULTIPLE_ROW_METRICS_COLUMN: "MULTIPLE_ROW_METRICS_COLUMN";
74
+ };
75
+ export type PivotTableDataPathType =
76
+ (typeof PivotTableDataPathType)[keyof typeof PivotTableDataPathType];
77
+ export interface DataPathType {
78
+ PivotTableDataPathType?: PivotTableDataPathType;
79
+ }
37
80
  export interface DataPathValue {
38
81
  FieldId?: string;
39
82
  FieldValue?: string;
@@ -1702,54 +1745,6 @@ export interface WaterfallChartSortConfiguration {
1702
1745
  CategorySort?: FieldSortOptions[];
1703
1746
  BreakdownItemsLimit?: ItemsLimitConfiguration;
1704
1747
  }
1705
- export interface WaterfallChartOptions {
1706
- TotalBarLabel?: string;
1707
- }
1708
- export interface WaterfallChartConfiguration {
1709
- FieldWells?: WaterfallChartFieldWells;
1710
- SortConfiguration?: WaterfallChartSortConfiguration;
1711
- WaterfallChartOptions?: WaterfallChartOptions;
1712
- CategoryAxisLabelOptions?: ChartAxisLabelOptions;
1713
- CategoryAxisDisplayOptions?: AxisDisplayOptions;
1714
- PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
1715
- PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
1716
- Legend?: LegendOptions;
1717
- DataLabels?: DataLabelOptions;
1718
- VisualPalette?: VisualPalette;
1719
- ColorConfiguration?: WaterfallChartColorConfiguration;
1720
- Interactions?: VisualInteractionOptions;
1721
- }
1722
- export interface WaterfallVisual {
1723
- VisualId: string | undefined;
1724
- Title?: VisualTitleLabelOptions;
1725
- Subtitle?: VisualSubtitleLabelOptions;
1726
- ChartConfiguration?: WaterfallChartConfiguration;
1727
- Actions?: VisualCustomAction[];
1728
- ColumnHierarchies?: ColumnHierarchy[];
1729
- }
1730
- export interface WordCloudAggregatedFieldWells {
1731
- GroupBy?: DimensionField[];
1732
- Size?: MeasureField[];
1733
- }
1734
- export interface WordCloudFieldWells {
1735
- WordCloudAggregatedFieldWells?: WordCloudAggregatedFieldWells;
1736
- }
1737
- export interface WordCloudSortConfiguration {
1738
- CategoryItemsLimit?: ItemsLimitConfiguration;
1739
- CategorySort?: FieldSortOptions[];
1740
- }
1741
- export declare const WordCloudCloudLayout: {
1742
- readonly FLUID: "FLUID";
1743
- readonly NORMAL: "NORMAL";
1744
- };
1745
- export type WordCloudCloudLayout =
1746
- (typeof WordCloudCloudLayout)[keyof typeof WordCloudCloudLayout];
1747
- export declare const WordCloudWordCasing: {
1748
- readonly EXISTING_CASE: "EXISTING_CASE";
1749
- readonly LOWER_CASE: "LOWER_CASE";
1750
- };
1751
- export type WordCloudWordCasing =
1752
- (typeof WordCloudWordCasing)[keyof typeof WordCloudWordCasing];
1753
1748
  export declare const DataPathValueFilterSensitiveLog: (
1754
1749
  obj: DataPathValue
1755
1750
  ) => any;
@@ -2135,15 +2130,3 @@ export declare const WaterfallChartAggregatedFieldWellsFilterSensitiveLog: (
2135
2130
  export declare const WaterfallChartFieldWellsFilterSensitiveLog: (
2136
2131
  obj: WaterfallChartFieldWells
2137
2132
  ) => any;
2138
- export declare const WaterfallChartConfigurationFilterSensitiveLog: (
2139
- obj: WaterfallChartConfiguration
2140
- ) => any;
2141
- export declare const WaterfallVisualFilterSensitiveLog: (
2142
- obj: WaterfallVisual
2143
- ) => any;
2144
- export declare const WordCloudAggregatedFieldWellsFilterSensitiveLog: (
2145
- obj: WordCloudAggregatedFieldWells
2146
- ) => any;
2147
- export declare const WordCloudFieldWellsFilterSensitiveLog: (
2148
- obj: WordCloudFieldWells
2149
- ) => any;
@@ -6,15 +6,22 @@ import {
6
6
  AmazonOpenSearchParameters,
7
7
  AnalysisDefaults,
8
8
  AssetOptions,
9
+ AxisDisplayOptions,
9
10
  CalculatedField,
10
11
  ChartAxisLabelOptions,
11
12
  ColumnConfiguration,
12
13
  DashboardBehavior,
14
+ DataLabelOptions,
13
15
  DataSetIdentifierDeclaration,
16
+ DimensionField,
14
17
  Edition,
18
+ FieldSortOptions,
15
19
  FilterControl,
16
20
  FilterGroup,
21
+ ItemsLimitConfiguration,
17
22
  Layout,
23
+ LegendOptions,
24
+ MeasureField,
18
25
  ParameterControl,
19
26
  ParameterDeclaration,
20
27
  ResourceStatus,
@@ -49,15 +56,62 @@ import {
49
56
  ScatterPlotVisual,
50
57
  TableVisual,
51
58
  TreeMapVisual,
59
+ VisualPalette,
52
60
  VisualSubtitleLabelOptions,
53
61
  VisualTitleLabelOptions,
54
- WaterfallVisual,
55
- WordCloudCloudLayout,
56
- WordCloudFieldWells,
57
- WordCloudSortConfiguration,
58
- WordCloudWordCasing,
62
+ WaterfallChartColorConfiguration,
63
+ WaterfallChartFieldWells,
64
+ WaterfallChartSortConfiguration,
59
65
  } from "./models_1";
60
66
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
67
+ export interface WaterfallChartOptions {
68
+ TotalBarLabel?: string;
69
+ }
70
+ export interface WaterfallChartConfiguration {
71
+ FieldWells?: WaterfallChartFieldWells;
72
+ SortConfiguration?: WaterfallChartSortConfiguration;
73
+ WaterfallChartOptions?: WaterfallChartOptions;
74
+ CategoryAxisLabelOptions?: ChartAxisLabelOptions;
75
+ CategoryAxisDisplayOptions?: AxisDisplayOptions;
76
+ PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
77
+ PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
78
+ Legend?: LegendOptions;
79
+ DataLabels?: DataLabelOptions;
80
+ VisualPalette?: VisualPalette;
81
+ ColorConfiguration?: WaterfallChartColorConfiguration;
82
+ Interactions?: VisualInteractionOptions;
83
+ }
84
+ export interface WaterfallVisual {
85
+ VisualId: string | undefined;
86
+ Title?: VisualTitleLabelOptions;
87
+ Subtitle?: VisualSubtitleLabelOptions;
88
+ ChartConfiguration?: WaterfallChartConfiguration;
89
+ Actions?: VisualCustomAction[];
90
+ ColumnHierarchies?: ColumnHierarchy[];
91
+ }
92
+ export interface WordCloudAggregatedFieldWells {
93
+ GroupBy?: DimensionField[];
94
+ Size?: MeasureField[];
95
+ }
96
+ export interface WordCloudFieldWells {
97
+ WordCloudAggregatedFieldWells?: WordCloudAggregatedFieldWells;
98
+ }
99
+ export interface WordCloudSortConfiguration {
100
+ CategoryItemsLimit?: ItemsLimitConfiguration;
101
+ CategorySort?: FieldSortOptions[];
102
+ }
103
+ export declare const WordCloudCloudLayout: {
104
+ readonly FLUID: "FLUID";
105
+ readonly NORMAL: "NORMAL";
106
+ };
107
+ export type WordCloudCloudLayout =
108
+ (typeof WordCloudCloudLayout)[keyof typeof WordCloudCloudLayout];
109
+ export declare const WordCloudWordCasing: {
110
+ readonly EXISTING_CASE: "EXISTING_CASE";
111
+ readonly LOWER_CASE: "LOWER_CASE";
112
+ };
113
+ export type WordCloudWordCasing =
114
+ (typeof WordCloudWordCasing)[keyof typeof WordCloudWordCasing];
61
115
  export declare const WordCloudWordOrientation: {
62
116
  readonly HORIZONTAL: "HORIZONTAL";
63
117
  readonly HORIZONTAL_AND_VERTICAL: "HORIZONTAL_AND_VERTICAL";
@@ -2789,34 +2843,18 @@ export interface CreateTemplateAliasResponse {
2789
2843
  Status?: number;
2790
2844
  RequestId?: string;
2791
2845
  }
2792
- export interface DataColorPalette {
2793
- Colors?: string[];
2794
- MinMaxGradient?: string[];
2795
- EmptyFillColor?: string;
2796
- }
2797
- export interface TileStyle {
2798
- Border?: BorderStyle;
2799
- }
2800
- export interface GutterStyle {
2801
- Show?: boolean;
2802
- }
2803
- export interface MarginStyle {
2804
- Show?: boolean;
2805
- }
2806
- export interface TileLayoutStyle {
2807
- Gutter?: GutterStyle;
2808
- Margin?: MarginStyle;
2809
- }
2810
- export interface SheetStyle {
2811
- Tile?: TileStyle;
2812
- TileLayout?: TileLayoutStyle;
2813
- }
2814
- export interface Font {
2815
- FontFamily?: string;
2816
- }
2817
- export interface Typography {
2818
- FontFamilies?: Font[];
2819
- }
2846
+ export declare const WaterfallChartConfigurationFilterSensitiveLog: (
2847
+ obj: WaterfallChartConfiguration
2848
+ ) => any;
2849
+ export declare const WaterfallVisualFilterSensitiveLog: (
2850
+ obj: WaterfallVisual
2851
+ ) => any;
2852
+ export declare const WordCloudAggregatedFieldWellsFilterSensitiveLog: (
2853
+ obj: WordCloudAggregatedFieldWells
2854
+ ) => any;
2855
+ export declare const WordCloudFieldWellsFilterSensitiveLog: (
2856
+ obj: WordCloudFieldWells
2857
+ ) => any;
2820
2858
  export declare const WordCloudChartConfigurationFilterSensitiveLog: (
2821
2859
  obj: WordCloudChartConfiguration
2822
2860
  ) => any;
@@ -30,12 +30,12 @@ import {
30
30
  AssetBundleImportJobOverrideTags,
31
31
  AssetBundleImportJobOverrideValidationStrategy,
32
32
  AssetBundleImportJobStatus,
33
- AssetBundleImportJobSummary,
34
33
  AssetBundleImportJobWarning,
35
34
  AssetBundleImportSourceDescription,
36
35
  AssignmentStatus,
37
36
  AuthorSpecifiedAggregation,
38
37
  BookmarksConfigurations,
38
+ BorderStyle,
39
39
  CategoryFilterFunction,
40
40
  CategoryFilterType,
41
41
  CellValueSynonym,
@@ -50,7 +50,6 @@ import {
50
50
  DashboardPublishOptions,
51
51
  DashboardVersionDefinition,
52
52
  DashboardVisualId,
53
- DataColorPalette,
54
53
  DataSetConfiguration,
55
54
  DataSetImportMode,
56
55
  DatasetParameter,
@@ -76,17 +75,43 @@ import {
76
75
  RowLevelPermissionTagConfiguration,
77
76
  ServiceType,
78
77
  SharingModel,
79
- SheetStyle,
80
78
  SnapshotFile,
81
79
  SnapshotS3DestinationConfiguration,
82
80
  SslProperties,
83
81
  Tag,
84
82
  TemplateAlias,
85
83
  TemplateVersionDefinition,
86
- Typography,
87
84
  VpcConnectionProperties,
88
85
  } from "./models_2";
89
86
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
87
+ export interface DataColorPalette {
88
+ Colors?: string[];
89
+ MinMaxGradient?: string[];
90
+ EmptyFillColor?: string;
91
+ }
92
+ export interface TileStyle {
93
+ Border?: BorderStyle;
94
+ }
95
+ export interface GutterStyle {
96
+ Show?: boolean;
97
+ }
98
+ export interface MarginStyle {
99
+ Show?: boolean;
100
+ }
101
+ export interface TileLayoutStyle {
102
+ Gutter?: GutterStyle;
103
+ Margin?: MarginStyle;
104
+ }
105
+ export interface SheetStyle {
106
+ Tile?: TileStyle;
107
+ TileLayout?: TileLayoutStyle;
108
+ }
109
+ export interface Font {
110
+ FontFamily?: string;
111
+ }
112
+ export interface Typography {
113
+ FontFamilies?: Font[];
114
+ }
90
115
  export interface UIColorPalette {
91
116
  PrimaryForeground?: string;
92
117
  PrimaryBackground?: string;
@@ -2038,51 +2063,6 @@ export interface ListAssetBundleImportJobsRequest {
2038
2063
  NextToken?: string;
2039
2064
  MaxResults?: number;
2040
2065
  }
2041
- export interface ListAssetBundleImportJobsResponse {
2042
- AssetBundleImportJobSummaryList?: AssetBundleImportJobSummary[];
2043
- NextToken?: string;
2044
- RequestId?: string;
2045
- Status?: number;
2046
- }
2047
- export interface ListDashboardsRequest {
2048
- AwsAccountId: string | undefined;
2049
- NextToken?: string;
2050
- MaxResults?: number;
2051
- }
2052
- export interface ListDashboardsResponse {
2053
- DashboardSummaryList?: DashboardSummary[];
2054
- NextToken?: string;
2055
- Status?: number;
2056
- RequestId?: string;
2057
- }
2058
- export interface ListDashboardVersionsRequest {
2059
- AwsAccountId: string | undefined;
2060
- DashboardId: string | undefined;
2061
- NextToken?: string;
2062
- MaxResults?: number;
2063
- }
2064
- export interface ListDashboardVersionsResponse {
2065
- DashboardVersionSummaryList?: DashboardVersionSummary[];
2066
- NextToken?: string;
2067
- Status?: number;
2068
- RequestId?: string;
2069
- }
2070
- export interface ListDataSetsRequest {
2071
- AwsAccountId: string | undefined;
2072
- NextToken?: string;
2073
- MaxResults?: number;
2074
- }
2075
- export interface ListDataSetsResponse {
2076
- DataSetSummaries?: DataSetSummary[];
2077
- NextToken?: string;
2078
- RequestId?: string;
2079
- Status?: number;
2080
- }
2081
- export interface ListDataSourcesRequest {
2082
- AwsAccountId: string | undefined;
2083
- NextToken?: string;
2084
- MaxResults?: number;
2085
- }
2086
2066
  export declare const SemanticTypeFilterSensitiveLog: (obj: SemanticType) => any;
2087
2067
  export declare const TopicCalculatedFieldFilterSensitiveLog: (
2088
2068
  obj: TopicCalculatedField
@@ -17,6 +17,7 @@ import {
17
17
  AssetBundleImportJobOverridePermissions,
18
18
  AssetBundleImportJobOverrideTags,
19
19
  AssetBundleImportJobOverrideValidationStrategy,
20
+ AssetBundleImportJobSummary,
20
21
  AssetBundleImportSource,
21
22
  AssignmentStatus,
22
23
  AuthorizedTargetsByService,
@@ -53,6 +54,7 @@ import {
53
54
  import {
54
55
  DashboardSearchFilter,
55
56
  DashboardSummary,
57
+ DashboardVersionSummary,
56
58
  DataSetRefreshProperties,
57
59
  DataSetSearchFilter,
58
60
  DataSetSummary,
@@ -83,6 +85,51 @@ import {
83
85
  VPCConnectionAvailabilityStatus,
84
86
  VPCConnectionResourceStatus,
85
87
  } from "./models_3";
88
+ export interface ListAssetBundleImportJobsResponse {
89
+ AssetBundleImportJobSummaryList?: AssetBundleImportJobSummary[];
90
+ NextToken?: string;
91
+ RequestId?: string;
92
+ Status?: number;
93
+ }
94
+ export interface ListDashboardsRequest {
95
+ AwsAccountId: string | undefined;
96
+ NextToken?: string;
97
+ MaxResults?: number;
98
+ }
99
+ export interface ListDashboardsResponse {
100
+ DashboardSummaryList?: DashboardSummary[];
101
+ NextToken?: string;
102
+ Status?: number;
103
+ RequestId?: string;
104
+ }
105
+ export interface ListDashboardVersionsRequest {
106
+ AwsAccountId: string | undefined;
107
+ DashboardId: string | undefined;
108
+ NextToken?: string;
109
+ MaxResults?: number;
110
+ }
111
+ export interface ListDashboardVersionsResponse {
112
+ DashboardVersionSummaryList?: DashboardVersionSummary[];
113
+ NextToken?: string;
114
+ Status?: number;
115
+ RequestId?: string;
116
+ }
117
+ export interface ListDataSetsRequest {
118
+ AwsAccountId: string | undefined;
119
+ NextToken?: string;
120
+ MaxResults?: number;
121
+ }
122
+ export interface ListDataSetsResponse {
123
+ DataSetSummaries?: DataSetSummary[];
124
+ NextToken?: string;
125
+ RequestId?: string;
126
+ Status?: number;
127
+ }
128
+ export interface ListDataSourcesRequest {
129
+ AwsAccountId: string | undefined;
130
+ NextToken?: string;
131
+ MaxResults?: number;
132
+ }
86
133
  export interface ListDataSourcesResponse {
87
134
  DataSources?: DataSource[];
88
135
  NextToken?: string;
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.598.0",
4
+ "version": "3.606.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,10 +20,10 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.598.0",
24
- "@aws-sdk/client-sts": "3.598.0",
23
+ "@aws-sdk/client-sso-oidc": "3.606.0",
24
+ "@aws-sdk/client-sts": "3.606.0",
25
25
  "@aws-sdk/core": "3.598.0",
26
- "@aws-sdk/credential-provider-node": "3.598.0",
26
+ "@aws-sdk/credential-provider-node": "3.600.0",
27
27
  "@aws-sdk/middleware-host-header": "3.598.0",
28
28
  "@aws-sdk/middleware-logger": "3.598.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.598.0",