@aws-sdk/client-quicksight 3.363.0 → 3.369.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 (44) hide show
  1. package/dist-cjs/models/models_0.js +29 -25
  2. package/dist-cjs/models/models_1.js +25 -12
  3. package/dist-cjs/models/models_2.js +12 -4
  4. package/dist-es/models/models_0.js +24 -18
  5. package/dist-es/models/models_1.js +18 -7
  6. package/dist-es/models/models_2.js +7 -1
  7. package/dist-types/commands/CreateAnalysisCommand.d.ts +31 -1
  8. package/dist-types/commands/CreateDashboardCommand.d.ts +31 -1
  9. package/dist-types/commands/CreateTemplateCommand.d.ts +31 -1
  10. package/dist-types/commands/DeleteFolderCommand.d.ts +2 -1
  11. package/dist-types/commands/DeleteFolderMembershipCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteGroupCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +1 -2
  14. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +31 -1
  15. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +31 -1
  16. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +31 -1
  17. package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
  18. package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +1 -1
  19. package/dist-types/commands/UpdateAnalysisCommand.d.ts +31 -1
  20. package/dist-types/commands/UpdateDashboardCommand.d.ts +31 -1
  21. package/dist-types/commands/UpdateTemplateAliasCommand.d.ts +2 -1
  22. package/dist-types/commands/UpdateTemplateCommand.d.ts +31 -1
  23. package/dist-types/commands/UpdateTemplatePermissionsCommand.d.ts +1 -1
  24. package/dist-types/commands/UpdateThemeAliasCommand.d.ts +1 -2
  25. package/dist-types/commands/UpdateThemeCommand.d.ts +1 -1
  26. package/dist-types/models/models_0.d.ts +97 -164
  27. package/dist-types/models/models_1.d.ts +159 -89
  28. package/dist-types/models/models_2.d.ts +94 -107
  29. package/dist-types/models/models_3.d.ts +113 -148
  30. package/dist-types/models/models_4.d.ts +147 -1
  31. package/dist-types/ts3.4/commands/DeleteFolderCommand.d.ts +2 -1
  32. package/dist-types/ts3.4/commands/DeleteFolderMembershipCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +4 -2
  35. package/dist-types/ts3.4/commands/UpdateTemplateAliasCommand.d.ts +2 -4
  36. package/dist-types/ts3.4/commands/UpdateTemplatePermissionsCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/UpdateThemeAliasCommand.d.ts +4 -2
  38. package/dist-types/ts3.4/commands/UpdateThemeCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +38 -53
  40. package/dist-types/ts3.4/models/models_1.d.ts +54 -34
  41. package/dist-types/ts3.4/models/models_2.d.ts +31 -36
  42. package/dist-types/ts3.4/models/models_3.d.ts +32 -40
  43. package/dist-types/ts3.4/models/models_4.d.ts +43 -0
  44. package/package.json +13 -13
@@ -379,7 +379,7 @@ export interface AggregationSortConfiguration {
379
379
  /**
380
380
  * <p>The function that aggregates the values in <code>Column</code>.</p>
381
381
  */
382
- AggregationFunction: AggregationFunction | undefined;
382
+ AggregationFunction?: AggregationFunction;
383
383
  }
384
384
  /**
385
385
  * @public
@@ -804,6 +804,47 @@ export interface CalculatedField {
804
804
  */
805
805
  Expression: string | undefined;
806
806
  }
807
+ /**
808
+ * @public
809
+ * @enum
810
+ */
811
+ export declare const SpecialValue: {
812
+ readonly EMPTY: "EMPTY";
813
+ readonly NULL: "NULL";
814
+ readonly OTHER: "OTHER";
815
+ };
816
+ /**
817
+ * @public
818
+ */
819
+ export type SpecialValue = (typeof SpecialValue)[keyof typeof SpecialValue];
820
+ /**
821
+ * @public
822
+ * <p>Determines the color that's applied to a particular data value in a column.</p>
823
+ */
824
+ export interface CustomColor {
825
+ /**
826
+ * <p>The data value that the color is applied to.</p>
827
+ */
828
+ FieldValue?: string;
829
+ /**
830
+ * <p>The color that is applied to the data value.</p>
831
+ */
832
+ Color: string | undefined;
833
+ /**
834
+ * <p>The value of a special data value.</p>
835
+ */
836
+ SpecialValue?: SpecialValue | string;
837
+ }
838
+ /**
839
+ * @public
840
+ * <p>The color configurations for a column.</p>
841
+ */
842
+ export interface ColorsConfiguration {
843
+ /**
844
+ * <p>A list of up to 50 custom colors.</p>
845
+ */
846
+ CustomColors?: CustomColor[];
847
+ }
807
848
  /**
808
849
  * @public
809
850
  * <p>The options that determine the null value format configuration.</p>
@@ -1125,6 +1166,10 @@ export interface ColumnConfiguration {
1125
1166
  * <p>The role of the column.</p>
1126
1167
  */
1127
1168
  Role?: ColumnRole | string;
1169
+ /**
1170
+ * <p>The color configurations of the column.</p>
1171
+ */
1172
+ ColorsConfiguration?: ColorsConfiguration;
1128
1173
  }
1129
1174
  /**
1130
1175
  * @public
@@ -5053,6 +5098,44 @@ export interface PanelConfiguration {
5053
5098
  */
5054
5099
  BackgroundColor?: string;
5055
5100
  }
5101
+ /**
5102
+ * @public
5103
+ * @enum
5104
+ */
5105
+ export declare const SmallMultiplesAxisPlacement: {
5106
+ readonly INSIDE: "INSIDE";
5107
+ readonly OUTSIDE: "OUTSIDE";
5108
+ };
5109
+ /**
5110
+ * @public
5111
+ */
5112
+ export type SmallMultiplesAxisPlacement = (typeof SmallMultiplesAxisPlacement)[keyof typeof SmallMultiplesAxisPlacement];
5113
+ /**
5114
+ * @public
5115
+ * @enum
5116
+ */
5117
+ export declare const SmallMultiplesAxisScale: {
5118
+ readonly INDEPENDENT: "INDEPENDENT";
5119
+ readonly SHARED: "SHARED";
5120
+ };
5121
+ /**
5122
+ * @public
5123
+ */
5124
+ export type SmallMultiplesAxisScale = (typeof SmallMultiplesAxisScale)[keyof typeof SmallMultiplesAxisScale];
5125
+ /**
5126
+ * @public
5127
+ * <p>Configures the properties of a chart's axes that are used by small multiples panels.</p>
5128
+ */
5129
+ export interface SmallMultiplesAxisProperties {
5130
+ /**
5131
+ * <p>Determines whether scale of the axes are shared or independent. The default value is <code>SHARED</code>.</p>
5132
+ */
5133
+ Scale?: SmallMultiplesAxisScale | string;
5134
+ /**
5135
+ * <p>Defines the placement of the axis. By default, axes are rendered <code>OUTSIDE</code> of the panels. Axes with <code>INDEPENDENT</code> scale are rendered <code>INSIDE</code> the panels.</p>
5136
+ */
5137
+ Placement?: SmallMultiplesAxisPlacement | string;
5138
+ }
5056
5139
  /**
5057
5140
  * @public
5058
5141
  * <p>Options that determine the layout and display options of a chart's small multiples.</p>
@@ -5074,6 +5157,14 @@ export interface SmallMultiplesOptions {
5074
5157
  * <p>Configures the display options for each small multiples panel.</p>
5075
5158
  */
5076
5159
  PanelConfiguration?: PanelConfiguration;
5160
+ /**
5161
+ * <p>The properties of a small multiples X axis.</p>
5162
+ */
5163
+ XAxis?: SmallMultiplesAxisProperties;
5164
+ /**
5165
+ * <p>The properties of a small multiples Y axis.</p>
5166
+ */
5167
+ YAxis?: SmallMultiplesAxisProperties;
5077
5168
  }
5078
5169
  /**
5079
5170
  * @public
@@ -5793,159 +5884,17 @@ export interface PaginationConfiguration {
5793
5884
  PageNumber: number | undefined;
5794
5885
  }
5795
5886
  /**
5796
- * @public
5797
- * <p>The sort configuration of a <code>BoxPlotVisual</code>.</p>
5798
- */
5799
- export interface BoxPlotSortConfiguration {
5800
- /**
5801
- * <p>The sort configuration of a group by fields.</p>
5802
- */
5803
- CategorySort?: FieldSortOptions[];
5804
- /**
5805
- * <p>The pagination configuration of a table visual or box plot.</p>
5806
- */
5807
- PaginationConfiguration?: PaginationConfiguration;
5808
- }
5809
- /**
5810
- * @public
5811
- * <p>The configuration of a <code>BoxPlotVisual</code>.</p>
5812
- */
5813
- export interface BoxPlotChartConfiguration {
5814
- /**
5815
- * <p>The field wells of the visual.</p>
5816
- */
5817
- FieldWells?: BoxPlotFieldWells;
5818
- /**
5819
- * <p>The sort configuration of a <code>BoxPlotVisual</code>.</p>
5820
- */
5821
- SortConfiguration?: BoxPlotSortConfiguration;
5822
- /**
5823
- * <p>The box plot chart options for a box plot visual</p>
5824
- */
5825
- BoxPlotOptions?: BoxPlotOptions;
5826
- /**
5827
- * <p>The label display options (grid line, range, scale, axis step) of a box plot category.</p>
5828
- */
5829
- CategoryAxis?: AxisDisplayOptions;
5830
- /**
5831
- * <p>The label options (label text, label visibility and sort Icon visibility) of a box plot category.</p>
5832
- */
5833
- CategoryLabelOptions?: ChartAxisLabelOptions;
5834
- /**
5835
- * <p>The label display options (grid line, range, scale, axis step) of a box plot category.</p>
5836
- */
5837
- PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
5838
- /**
5839
- * <p>The label options (label text, label visibility and sort icon visibility) of a box plot value.</p>
5840
- */
5841
- PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
5842
- /**
5843
- * <p>The options for the legend setup of a visual.</p>
5844
- */
5845
- Legend?: LegendOptions;
5846
- /**
5847
- * <p>The tooltip display setup of the visual.</p>
5848
- */
5849
- Tooltip?: TooltipOptions;
5850
- /**
5851
- * <p>The reference line setup of the visual.</p>
5852
- */
5853
- ReferenceLines?: ReferenceLine[];
5854
- /**
5855
- * <p>The palette (chart color) display setup of the visual.</p>
5856
- */
5857
- VisualPalette?: VisualPalette;
5858
- }
5859
- /**
5860
- * @public
5861
- * <p>A box plot.</p>
5862
- * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/box-plots.html">Using box plots</a> in the <i>Amazon QuickSight User Guide</i>.</p>
5863
- */
5864
- export interface BoxPlotVisual {
5865
- /**
5866
- * <p>The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers..</p>
5867
- */
5868
- VisualId: string | undefined;
5869
- /**
5870
- * <p>The title that is displayed on the visual.</p>
5871
- */
5872
- Title?: VisualTitleLabelOptions;
5873
- /**
5874
- * <p>The subtitle that is displayed on the visual.</p>
5875
- */
5876
- Subtitle?: VisualSubtitleLabelOptions;
5877
- /**
5878
- * <p>The configuration settings of the visual.</p>
5879
- */
5880
- ChartConfiguration?: BoxPlotChartConfiguration;
5881
- /**
5882
- * <p>The list of custom actions that are configured for a visual.</p>
5883
- */
5884
- Actions?: VisualCustomAction[];
5885
- /**
5886
- * <p>The column hierarchy that is used during drill-downs and drill-ups.</p>
5887
- */
5888
- ColumnHierarchies?: ColumnHierarchy[];
5889
- }
5890
- /**
5891
- * @public
5892
- * <p>The aggregated field wells of a combo chart.</p>
5893
- */
5894
- export interface ComboChartAggregatedFieldWells {
5895
- /**
5896
- * <p>The aggregated category field wells of a combo chart.</p>
5897
- */
5898
- Category?: DimensionField[];
5899
- /**
5900
- * <p>The aggregated <code>BarValues</code> field well of a combo chart.</p>
5901
- */
5902
- BarValues?: MeasureField[];
5903
- /**
5904
- * <p>The aggregated colors field well of a combo chart.</p>
5905
- */
5906
- Colors?: DimensionField[];
5907
- /**
5908
- * <p>The aggregated <code>LineValues</code> field well of a combo chart.</p>
5909
- */
5910
- LineValues?: MeasureField[];
5911
- }
5912
- /**
5913
- * @public
5914
- * <p>The field wells of the visual.</p>
5915
- * <p>This is a union type structure. For this structure to be valid, only one of the attributes can be defined.</p>
5887
+ * @internal
5916
5888
  */
5917
- export interface ComboChartFieldWells {
5918
- /**
5919
- * <p>The aggregated field wells of a combo chart. Combo charts only have aggregated field wells. Columns in a combo chart are aggregated by category.</p>
5920
- */
5921
- ComboChartAggregatedFieldWells?: ComboChartAggregatedFieldWells;
5922
- }
5889
+ export declare const CalculatedFieldFilterSensitiveLog: (obj: CalculatedField) => any;
5923
5890
  /**
5924
- * @public
5925
- * <p>The sort configuration of a <code>ComboChartVisual</code>.</p>
5891
+ * @internal
5926
5892
  */
5927
- export interface ComboChartSortConfiguration {
5928
- /**
5929
- * <p>The sort configuration of the category field well in a combo chart.</p>
5930
- */
5931
- CategorySort?: FieldSortOptions[];
5932
- /**
5933
- * <p>The item limit configuration for the category field well of a combo chart.</p>
5934
- */
5935
- CategoryItemsLimit?: ItemsLimitConfiguration;
5936
- /**
5937
- * <p>The sort configuration of the color field well in a combo chart.</p>
5938
- */
5939
- ColorSort?: FieldSortOptions[];
5940
- /**
5941
- * <p>The item limit configuration of the color field well in a combo chart.</p>
5942
- */
5943
- ColorItemsLimit?: ItemsLimitConfiguration;
5944
- }
5893
+ export declare const CustomColorFilterSensitiveLog: (obj: CustomColor) => any;
5945
5894
  /**
5946
5895
  * @internal
5947
5896
  */
5948
- export declare const CalculatedFieldFilterSensitiveLog: (obj: CalculatedField) => any;
5897
+ export declare const ColorsConfigurationFilterSensitiveLog: (obj: ColorsConfiguration) => any;
5949
5898
  /**
5950
5899
  * @internal
5951
5900
  */
@@ -6234,19 +6183,3 @@ export declare const BoxPlotAggregatedFieldWellsFilterSensitiveLog: (obj: BoxPlo
6234
6183
  * @internal
6235
6184
  */
6236
6185
  export declare const BoxPlotFieldWellsFilterSensitiveLog: (obj: BoxPlotFieldWells) => any;
6237
- /**
6238
- * @internal
6239
- */
6240
- export declare const BoxPlotChartConfigurationFilterSensitiveLog: (obj: BoxPlotChartConfiguration) => any;
6241
- /**
6242
- * @internal
6243
- */
6244
- export declare const BoxPlotVisualFilterSensitiveLog: (obj: BoxPlotVisual) => any;
6245
- /**
6246
- * @internal
6247
- */
6248
- export declare const ComboChartAggregatedFieldWellsFilterSensitiveLog: (obj: ComboChartAggregatedFieldWells) => any;
6249
- /**
6250
- * @internal
6251
- */
6252
- export declare const ComboChartFieldWellsFilterSensitiveLog: (obj: ComboChartFieldWells) => any;
@@ -1,4 +1,154 @@
1
- import { AnalysisDefaults, AxisBinding, AxisDisplayOptions, BarChartVisual, BarsArrangement, BoxPlotVisual, CalculatedField, ChartAxisLabelOptions, ColumnConfiguration, ColumnHierarchy, ColumnIdentifier, ColumnSort, ComboChartFieldWells, ComboChartSortConfiguration, ContributionAnalysisDefault, DataLabelOptions, DataLabelPosition, DataPathValue, DataSetIdentifierDeclaration, DimensionField, FieldSort, FieldSortOptions, FilterControl, FilterGroup, FontConfiguration, FormatConfiguration, HorizontalTextAlignment, ItemsLimitConfiguration, Layout, LegendOptions, MeasureField, NumberDisplayFormatConfiguration, PaginationConfiguration, ParameterControl, ParameterDeclaration, PercentageDisplayFormatConfiguration, ReferenceLine, ResourceStatus, SheetContentType, SheetControlLayout, SheetTextBox, SmallMultiplesOptions, SortDirection, TimeGranularity, TooltipOptions, URLTargetConfiguration, Visibility, VisualCustomAction, VisualPalette, VisualSubtitleLabelOptions, VisualTitleLabelOptions, WidgetStatus } from "./models_0";
1
+ import { AnalysisDefaults, AxisBinding, AxisDisplayOptions, BarChartVisual, BarsArrangement, BoxPlotFieldWells, BoxPlotOptions, CalculatedField, ChartAxisLabelOptions, ColumnConfiguration, ColumnHierarchy, ColumnIdentifier, ColumnSort, ContributionAnalysisDefault, DataLabelOptions, DataLabelPosition, DataPathValue, DataSetIdentifierDeclaration, DimensionField, FieldSort, FieldSortOptions, FilterControl, FilterGroup, FontConfiguration, FormatConfiguration, HorizontalTextAlignment, ItemsLimitConfiguration, Layout, LegendOptions, MeasureField, NumberDisplayFormatConfiguration, PaginationConfiguration, ParameterControl, ParameterDeclaration, PercentageDisplayFormatConfiguration, ReferenceLine, ResourceStatus, SheetContentType, SheetControlLayout, SheetTextBox, SmallMultiplesOptions, SortDirection, TimeGranularity, TooltipOptions, URLTargetConfiguration, Visibility, VisualCustomAction, VisualPalette, VisualSubtitleLabelOptions, VisualTitleLabelOptions, WidgetStatus } from "./models_0";
2
+ /**
3
+ * @public
4
+ * <p>The sort configuration of a <code>BoxPlotVisual</code>.</p>
5
+ */
6
+ export interface BoxPlotSortConfiguration {
7
+ /**
8
+ * <p>The sort configuration of a group by fields.</p>
9
+ */
10
+ CategorySort?: FieldSortOptions[];
11
+ /**
12
+ * <p>The pagination configuration of a table visual or box plot.</p>
13
+ */
14
+ PaginationConfiguration?: PaginationConfiguration;
15
+ }
16
+ /**
17
+ * @public
18
+ * <p>The configuration of a <code>BoxPlotVisual</code>.</p>
19
+ */
20
+ export interface BoxPlotChartConfiguration {
21
+ /**
22
+ * <p>The field wells of the visual.</p>
23
+ */
24
+ FieldWells?: BoxPlotFieldWells;
25
+ /**
26
+ * <p>The sort configuration of a <code>BoxPlotVisual</code>.</p>
27
+ */
28
+ SortConfiguration?: BoxPlotSortConfiguration;
29
+ /**
30
+ * <p>The box plot chart options for a box plot visual</p>
31
+ */
32
+ BoxPlotOptions?: BoxPlotOptions;
33
+ /**
34
+ * <p>The label display options (grid line, range, scale, axis step) of a box plot category.</p>
35
+ */
36
+ CategoryAxis?: AxisDisplayOptions;
37
+ /**
38
+ * <p>The label options (label text, label visibility and sort Icon visibility) of a box plot category.</p>
39
+ */
40
+ CategoryLabelOptions?: ChartAxisLabelOptions;
41
+ /**
42
+ * <p>The label display options (grid line, range, scale, axis step) of a box plot category.</p>
43
+ */
44
+ PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
45
+ /**
46
+ * <p>The label options (label text, label visibility and sort icon visibility) of a box plot value.</p>
47
+ */
48
+ PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
49
+ /**
50
+ * <p>The options for the legend setup of a visual.</p>
51
+ */
52
+ Legend?: LegendOptions;
53
+ /**
54
+ * <p>The tooltip display setup of the visual.</p>
55
+ */
56
+ Tooltip?: TooltipOptions;
57
+ /**
58
+ * <p>The reference line setup of the visual.</p>
59
+ */
60
+ ReferenceLines?: ReferenceLine[];
61
+ /**
62
+ * <p>The palette (chart color) display setup of the visual.</p>
63
+ */
64
+ VisualPalette?: VisualPalette;
65
+ }
66
+ /**
67
+ * @public
68
+ * <p>A box plot.</p>
69
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/box-plots.html">Using box plots</a> in the <i>Amazon QuickSight User Guide</i>.</p>
70
+ */
71
+ export interface BoxPlotVisual {
72
+ /**
73
+ * <p>The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers..</p>
74
+ */
75
+ VisualId: string | undefined;
76
+ /**
77
+ * <p>The title that is displayed on the visual.</p>
78
+ */
79
+ Title?: VisualTitleLabelOptions;
80
+ /**
81
+ * <p>The subtitle that is displayed on the visual.</p>
82
+ */
83
+ Subtitle?: VisualSubtitleLabelOptions;
84
+ /**
85
+ * <p>The configuration settings of the visual.</p>
86
+ */
87
+ ChartConfiguration?: BoxPlotChartConfiguration;
88
+ /**
89
+ * <p>The list of custom actions that are configured for a visual.</p>
90
+ */
91
+ Actions?: VisualCustomAction[];
92
+ /**
93
+ * <p>The column hierarchy that is used during drill-downs and drill-ups.</p>
94
+ */
95
+ ColumnHierarchies?: ColumnHierarchy[];
96
+ }
97
+ /**
98
+ * @public
99
+ * <p>The aggregated field wells of a combo chart.</p>
100
+ */
101
+ export interface ComboChartAggregatedFieldWells {
102
+ /**
103
+ * <p>The aggregated category field wells of a combo chart.</p>
104
+ */
105
+ Category?: DimensionField[];
106
+ /**
107
+ * <p>The aggregated <code>BarValues</code> field well of a combo chart.</p>
108
+ */
109
+ BarValues?: MeasureField[];
110
+ /**
111
+ * <p>The aggregated colors field well of a combo chart.</p>
112
+ */
113
+ Colors?: DimensionField[];
114
+ /**
115
+ * <p>The aggregated <code>LineValues</code> field well of a combo chart.</p>
116
+ */
117
+ LineValues?: MeasureField[];
118
+ }
119
+ /**
120
+ * @public
121
+ * <p>The field wells of the visual.</p>
122
+ * <p>This is a union type structure. For this structure to be valid, only one of the attributes can be defined.</p>
123
+ */
124
+ export interface ComboChartFieldWells {
125
+ /**
126
+ * <p>The aggregated field wells of a combo chart. Combo charts only have aggregated field wells. Columns in a combo chart are aggregated by category.</p>
127
+ */
128
+ ComboChartAggregatedFieldWells?: ComboChartAggregatedFieldWells;
129
+ }
130
+ /**
131
+ * @public
132
+ * <p>The sort configuration of a <code>ComboChartVisual</code>.</p>
133
+ */
134
+ export interface ComboChartSortConfiguration {
135
+ /**
136
+ * <p>The sort configuration of the category field well in a combo chart.</p>
137
+ */
138
+ CategorySort?: FieldSortOptions[];
139
+ /**
140
+ * <p>The item limit configuration for the category field well of a combo chart.</p>
141
+ */
142
+ CategoryItemsLimit?: ItemsLimitConfiguration;
143
+ /**
144
+ * <p>The sort configuration of the color field well in a combo chart.</p>
145
+ */
146
+ ColorSort?: FieldSortOptions[];
147
+ /**
148
+ * <p>The item limit configuration of the color field well in a combo chart.</p>
149
+ */
150
+ ColorItemsLimit?: ItemsLimitConfiguration;
151
+ }
2
152
  /**
3
153
  * @public
4
154
  * <p>The configuration of a <code>ComboChartVisual</code>.</p>
@@ -5807,93 +5957,21 @@ export interface AssetBundleImportJobDataSetOverrideParameters {
5807
5957
  Name?: string;
5808
5958
  }
5809
5959
  /**
5810
- * @public
5811
- * <p>A username and password credential pair to use to import a data source resource.</p>
5812
- */
5813
- export interface AssetBundleImportJobDataSourceCredentialPair {
5814
- /**
5815
- * <p>The username for the data source connection.</p>
5816
- */
5817
- Username: string | undefined;
5818
- /**
5819
- * <p>The password for the data source connection.</p>
5820
- */
5821
- Password: string | undefined;
5822
- }
5823
- /**
5824
- * @public
5825
- * <p>The login credentials to use to import a data source resource.</p>
5826
- */
5827
- export interface AssetBundleImportJobDataSourceCredentials {
5828
- /**
5829
- * <p>A username and password credential pair to be used to create the imported data source. Keep this field blank if you are using a Secrets Manager secret to provide credentials.</p>
5830
- */
5831
- CredentialPair?: AssetBundleImportJobDataSourceCredentialPair;
5832
- /**
5833
- * <p>The ARN of the Secrets Manager secret that's used to create the imported data source. Keep this field blank, unless you are using a secret in place of a credential pair.</p>
5834
- */
5835
- SecretArn?: string;
5836
- }
5837
- /**
5838
- * @public
5839
- * <p>Parameters for Amazon Athena.</p>
5960
+ * @internal
5840
5961
  */
5841
- export interface AthenaParameters {
5842
- /**
5843
- * <p>The workgroup that Amazon Athena uses.</p>
5844
- */
5845
- WorkGroup?: string;
5846
- /**
5847
- * <p>Use the <code>RoleArn</code> structure to override an account-wide role for a specific Athena data source. For example, say an account administrator has turned off all Athena access with an account-wide role. The administrator can then use <code>RoleArn</code> to bypass the account-wide role and allow Athena access for the single Athena data source that is specified in the structure, even if the account-wide role forbidding Athena access is still active.</p>
5848
- */
5849
- RoleArn?: string;
5850
- }
5962
+ export declare const BoxPlotChartConfigurationFilterSensitiveLog: (obj: BoxPlotChartConfiguration) => any;
5851
5963
  /**
5852
- * @public
5853
- * <p>Parameters for Amazon Aurora.</p>
5964
+ * @internal
5854
5965
  */
5855
- export interface AuroraParameters {
5856
- /**
5857
- * <p>Host.</p>
5858
- */
5859
- Host: string | undefined;
5860
- /**
5861
- * <p>Port.</p>
5862
- */
5863
- Port: number | undefined;
5864
- /**
5865
- * <p>Database.</p>
5866
- */
5867
- Database: string | undefined;
5868
- }
5966
+ export declare const BoxPlotVisualFilterSensitiveLog: (obj: BoxPlotVisual) => any;
5869
5967
  /**
5870
- * @public
5871
- * <p>Parameters for Amazon Aurora PostgreSQL-Compatible Edition.</p>
5968
+ * @internal
5872
5969
  */
5873
- export interface AuroraPostgreSqlParameters {
5874
- /**
5875
- * <p>The Amazon Aurora PostgreSQL-Compatible host to connect to.</p>
5876
- */
5877
- Host: string | undefined;
5878
- /**
5879
- * <p>The port that Amazon Aurora PostgreSQL is listening on.</p>
5880
- */
5881
- Port: number | undefined;
5882
- /**
5883
- * <p>The Amazon Aurora PostgreSQL database to connect to.</p>
5884
- */
5885
- Database: string | undefined;
5886
- }
5970
+ export declare const ComboChartAggregatedFieldWellsFilterSensitiveLog: (obj: ComboChartAggregatedFieldWells) => any;
5887
5971
  /**
5888
- * @public
5889
- * <p>The parameters for IoT Analytics.</p>
5972
+ * @internal
5890
5973
  */
5891
- export interface AwsIotAnalyticsParameters {
5892
- /**
5893
- * <p>Dataset name.</p>
5894
- */
5895
- DataSetName: string | undefined;
5896
- }
5974
+ export declare const ComboChartFieldWellsFilterSensitiveLog: (obj: ComboChartFieldWells) => any;
5897
5975
  /**
5898
5976
  * @internal
5899
5977
  */
@@ -6410,11 +6488,3 @@ export declare const SheetDefinitionFilterSensitiveLog: (obj: SheetDefinition) =
6410
6488
  * @internal
6411
6489
  */
6412
6490
  export declare const AnalysisDefinitionFilterSensitiveLog: (obj: AnalysisDefinition) => any;
6413
- /**
6414
- * @internal
6415
- */
6416
- export declare const AssetBundleImportJobDataSourceCredentialPairFilterSensitiveLog: (obj: AssetBundleImportJobDataSourceCredentialPair) => any;
6417
- /**
6418
- * @internal
6419
- */
6420
- export declare const AssetBundleImportJobDataSourceCredentialsFilterSensitiveLog: (obj: AssetBundleImportJobDataSourceCredentials) => any;