@aws-sdk/client-quicksight 3.835.0 → 3.840.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +12 -11
- package/dist-es/models/models_0.js +0 -6
- package/dist-es/models/models_1.js +6 -3
- package/dist-es/models/models_2.js +4 -0
- package/dist-types/commands/CreateAnalysisCommand.d.ts +5 -0
- package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +6 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +5 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +7 -1
- package/dist-types/commands/CreateTemplateCommand.d.ts +5 -0
- package/dist-types/commands/DeleteIdentityPropagationConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTopicCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +5 -0
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +4 -1
- package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +5 -0
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +7 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +5 -0
- package/dist-types/commands/ListCustomPermissionsCommand.d.ts +6 -0
- package/dist-types/commands/ListDataSourcesCommand.d.ts +7 -1
- package/dist-types/commands/ListIdentityPropagationConfigsCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +4 -1
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +5 -0
- package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +5 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +7 -1
- package/dist-types/commands/UpdateIdentityPropagationConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTemplateCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +27 -74
- package/dist-types/models/models_1.d.ts +75 -72
- package/dist-types/models/models_2.d.ts +89 -103
- package/dist-types/models/models_3.d.ts +126 -45
- package/dist-types/models/models_4.d.ts +43 -131
- package/dist-types/models/models_5.d.ts +132 -3
- package/dist-types/ts3.4/commands/DeleteTopicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +7 -16
- package/dist-types/ts3.4/models/models_1.d.ts +17 -19
- package/dist-types/ts3.4/models/models_2.d.ts +31 -25
- package/dist-types/ts3.4/models/models_3.d.ts +29 -11
- package/dist-types/ts3.4/models/models_4.d.ts +12 -23
- package/dist-types/ts3.4/models/models_5.d.ts +26 -1
- package/package.json +18 -18
|
@@ -5405,6 +5405,28 @@ export interface SheetControlLayout {
|
|
|
5405
5405
|
*/
|
|
5406
5406
|
Configuration: SheetControlLayoutConfiguration | undefined;
|
|
5407
5407
|
}
|
|
5408
|
+
/**
|
|
5409
|
+
* <p>The menu options for the interactions of a textbox.</p>
|
|
5410
|
+
* @public
|
|
5411
|
+
*/
|
|
5412
|
+
export interface TextBoxMenuOption {
|
|
5413
|
+
/**
|
|
5414
|
+
* <p>The availability status of the textbox menu. If the value of this property is set to <code>ENABLED</code>, dashboard readers can interact with the textbox menu.</p>
|
|
5415
|
+
* @public
|
|
5416
|
+
*/
|
|
5417
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
5418
|
+
}
|
|
5419
|
+
/**
|
|
5420
|
+
* <p>The general textbox interactions setup for textbox publish options.</p>
|
|
5421
|
+
* @public
|
|
5422
|
+
*/
|
|
5423
|
+
export interface TextBoxInteractionOptions {
|
|
5424
|
+
/**
|
|
5425
|
+
* <p>The menu options for the textbox.</p>
|
|
5426
|
+
* @public
|
|
5427
|
+
*/
|
|
5428
|
+
TextBoxMenuOption?: TextBoxMenuOption | undefined;
|
|
5429
|
+
}
|
|
5408
5430
|
/**
|
|
5409
5431
|
* <p>A text box.</p>
|
|
5410
5432
|
* @public
|
|
@@ -5420,6 +5442,11 @@ export interface SheetTextBox {
|
|
|
5420
5442
|
* @public
|
|
5421
5443
|
*/
|
|
5422
5444
|
Content?: string | undefined;
|
|
5445
|
+
/**
|
|
5446
|
+
* <p>The general textbox interactions setup for a textbox.</p>
|
|
5447
|
+
* @public
|
|
5448
|
+
*/
|
|
5449
|
+
Interactions?: TextBoxInteractionOptions | undefined;
|
|
5423
5450
|
}
|
|
5424
5451
|
/**
|
|
5425
5452
|
* @public
|
|
@@ -6476,80 +6503,6 @@ export interface VisualInteractionOptions {
|
|
|
6476
6503
|
*/
|
|
6477
6504
|
ContextMenuOption?: ContextMenuOption | undefined;
|
|
6478
6505
|
}
|
|
6479
|
-
/**
|
|
6480
|
-
* @public
|
|
6481
|
-
* @enum
|
|
6482
|
-
*/
|
|
6483
|
-
export declare const LegendPosition: {
|
|
6484
|
-
readonly AUTO: "AUTO";
|
|
6485
|
-
readonly BOTTOM: "BOTTOM";
|
|
6486
|
-
readonly RIGHT: "RIGHT";
|
|
6487
|
-
readonly TOP: "TOP";
|
|
6488
|
-
};
|
|
6489
|
-
/**
|
|
6490
|
-
* @public
|
|
6491
|
-
*/
|
|
6492
|
-
export type LegendPosition = (typeof LegendPosition)[keyof typeof LegendPosition];
|
|
6493
|
-
/**
|
|
6494
|
-
* <p>The options for the legend setup of a visual.</p>
|
|
6495
|
-
* @public
|
|
6496
|
-
*/
|
|
6497
|
-
export interface LegendOptions {
|
|
6498
|
-
/**
|
|
6499
|
-
* <p>Determines whether or not the legend is visible.</p>
|
|
6500
|
-
* @public
|
|
6501
|
-
*/
|
|
6502
|
-
Visibility?: Visibility | undefined;
|
|
6503
|
-
/**
|
|
6504
|
-
* <p>The custom title for the legend.</p>
|
|
6505
|
-
* @public
|
|
6506
|
-
*/
|
|
6507
|
-
Title?: LabelOptions | undefined;
|
|
6508
|
-
/**
|
|
6509
|
-
* <p>The positions for the legend. Choose one of the following
|
|
6510
|
-
* options:</p>
|
|
6511
|
-
* <ul>
|
|
6512
|
-
* <li>
|
|
6513
|
-
* <p>
|
|
6514
|
-
* <code>AUTO</code>
|
|
6515
|
-
* </p>
|
|
6516
|
-
* </li>
|
|
6517
|
-
* <li>
|
|
6518
|
-
* <p>
|
|
6519
|
-
* <code>RIGHT</code>
|
|
6520
|
-
* </p>
|
|
6521
|
-
* </li>
|
|
6522
|
-
* <li>
|
|
6523
|
-
* <p>
|
|
6524
|
-
* <code>BOTTOM</code>
|
|
6525
|
-
* </p>
|
|
6526
|
-
* </li>
|
|
6527
|
-
* <li>
|
|
6528
|
-
* <p>
|
|
6529
|
-
* <code>LEFT</code>
|
|
6530
|
-
* </p>
|
|
6531
|
-
* </li>
|
|
6532
|
-
* </ul>
|
|
6533
|
-
* @public
|
|
6534
|
-
*/
|
|
6535
|
-
Position?: LegendPosition | undefined;
|
|
6536
|
-
/**
|
|
6537
|
-
* <p>The width of the legend. If this value is omitted, a default width is used when rendering.</p>
|
|
6538
|
-
* @public
|
|
6539
|
-
*/
|
|
6540
|
-
Width?: string | undefined;
|
|
6541
|
-
/**
|
|
6542
|
-
* <p>The height of the legend. If this value is omitted, a default height is used when
|
|
6543
|
-
* rendering.</p>
|
|
6544
|
-
* @public
|
|
6545
|
-
*/
|
|
6546
|
-
Height?: string | undefined;
|
|
6547
|
-
/**
|
|
6548
|
-
* <p>Configures the display properties of the given text.</p>
|
|
6549
|
-
* @public
|
|
6550
|
-
*/
|
|
6551
|
-
ValueFontConfiguration?: FontConfiguration | undefined;
|
|
6552
|
-
}
|
|
6553
6506
|
/**
|
|
6554
6507
|
* @internal
|
|
6555
6508
|
*/
|
|
@@ -1,4 +1,78 @@
|
|
|
1
|
-
import { AggregationFunction, AxisDisplayOptions, BarChartFieldWells, BarsArrangement, ChartAxisLabelOptions, ColumnIdentifier, ColumnSort, ContributionAnalysisDefault, CustomActionFilterOperation, CustomActionNavigationOperation, CustomActionSetParametersOperation, CustomActionURLOperation, DataLabelOptions, DataLabelPosition, DimensionField, FontConfiguration, FormatConfiguration,
|
|
1
|
+
import { AggregationFunction, AxisDisplayOptions, BarChartFieldWells, BarsArrangement, ChartAxisLabelOptions, ColumnIdentifier, ColumnSort, ContributionAnalysisDefault, CustomActionFilterOperation, CustomActionNavigationOperation, CustomActionSetParametersOperation, CustomActionURLOperation, DataLabelOptions, DataLabelPosition, DimensionField, FontConfiguration, FormatConfiguration, LabelOptions, MeasureField, NumberDisplayFormatConfiguration, NumericalAggregationFunction, NumericFormatConfiguration, PercentageDisplayFormatConfiguration, SortDirection, TimeGranularity, Visibility, VisualCustomAction, VisualInteractionOptions, WidgetStatus } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
* @enum
|
|
5
|
+
*/
|
|
6
|
+
export declare const LegendPosition: {
|
|
7
|
+
readonly AUTO: "AUTO";
|
|
8
|
+
readonly BOTTOM: "BOTTOM";
|
|
9
|
+
readonly RIGHT: "RIGHT";
|
|
10
|
+
readonly TOP: "TOP";
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export type LegendPosition = (typeof LegendPosition)[keyof typeof LegendPosition];
|
|
16
|
+
/**
|
|
17
|
+
* <p>The options for the legend setup of a visual.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export interface LegendOptions {
|
|
21
|
+
/**
|
|
22
|
+
* <p>Determines whether or not the legend is visible.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
Visibility?: Visibility | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The custom title for the legend.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
Title?: LabelOptions | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The positions for the legend. Choose one of the following
|
|
33
|
+
* options:</p>
|
|
34
|
+
* <ul>
|
|
35
|
+
* <li>
|
|
36
|
+
* <p>
|
|
37
|
+
* <code>AUTO</code>
|
|
38
|
+
* </p>
|
|
39
|
+
* </li>
|
|
40
|
+
* <li>
|
|
41
|
+
* <p>
|
|
42
|
+
* <code>RIGHT</code>
|
|
43
|
+
* </p>
|
|
44
|
+
* </li>
|
|
45
|
+
* <li>
|
|
46
|
+
* <p>
|
|
47
|
+
* <code>BOTTOM</code>
|
|
48
|
+
* </p>
|
|
49
|
+
* </li>
|
|
50
|
+
* <li>
|
|
51
|
+
* <p>
|
|
52
|
+
* <code>LEFT</code>
|
|
53
|
+
* </p>
|
|
54
|
+
* </li>
|
|
55
|
+
* </ul>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
Position?: LegendPosition | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* <p>The width of the legend. If this value is omitted, a default width is used when rendering.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
Width?: string | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* <p>The height of the legend. If this value is omitted, a default height is used when
|
|
66
|
+
* rendering.</p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
Height?: string | undefined;
|
|
70
|
+
/**
|
|
71
|
+
* <p>Configures the display properties of the given text.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
ValueFontConfiguration?: FontConfiguration | undefined;
|
|
75
|
+
}
|
|
2
76
|
/**
|
|
3
77
|
* @public
|
|
4
78
|
* @enum
|
|
@@ -6726,73 +6800,6 @@ export interface PivotTotalOptions {
|
|
|
6726
6800
|
*/
|
|
6727
6801
|
TotalAggregationOptions?: TotalAggregationOption[] | undefined;
|
|
6728
6802
|
}
|
|
6729
|
-
/**
|
|
6730
|
-
* <p>The total options for a pivot table visual.</p>
|
|
6731
|
-
* @public
|
|
6732
|
-
*/
|
|
6733
|
-
export interface PivotTableTotalOptions {
|
|
6734
|
-
/**
|
|
6735
|
-
* <p>The row subtotal options.</p>
|
|
6736
|
-
* @public
|
|
6737
|
-
*/
|
|
6738
|
-
RowSubtotalOptions?: SubtotalOptions | undefined;
|
|
6739
|
-
/**
|
|
6740
|
-
* <p>The column subtotal options.</p>
|
|
6741
|
-
* @public
|
|
6742
|
-
*/
|
|
6743
|
-
ColumnSubtotalOptions?: SubtotalOptions | undefined;
|
|
6744
|
-
/**
|
|
6745
|
-
* <p>The row total options.</p>
|
|
6746
|
-
* @public
|
|
6747
|
-
*/
|
|
6748
|
-
RowTotalOptions?: PivotTotalOptions | undefined;
|
|
6749
|
-
/**
|
|
6750
|
-
* <p>The column total options.</p>
|
|
6751
|
-
* @public
|
|
6752
|
-
*/
|
|
6753
|
-
ColumnTotalOptions?: PivotTotalOptions | undefined;
|
|
6754
|
-
}
|
|
6755
|
-
/**
|
|
6756
|
-
* <p>The configuration for a <code>PivotTableVisual</code>.</p>
|
|
6757
|
-
* @public
|
|
6758
|
-
*/
|
|
6759
|
-
export interface PivotTableConfiguration {
|
|
6760
|
-
/**
|
|
6761
|
-
* <p>The field wells of the visual.</p>
|
|
6762
|
-
* @public
|
|
6763
|
-
*/
|
|
6764
|
-
FieldWells?: PivotTableFieldWells | undefined;
|
|
6765
|
-
/**
|
|
6766
|
-
* <p>The sort configuration for a <code>PivotTableVisual</code>.</p>
|
|
6767
|
-
* @public
|
|
6768
|
-
*/
|
|
6769
|
-
SortConfiguration?: PivotTableSortConfiguration | undefined;
|
|
6770
|
-
/**
|
|
6771
|
-
* <p>The table options for a pivot table visual.</p>
|
|
6772
|
-
* @public
|
|
6773
|
-
*/
|
|
6774
|
-
TableOptions?: PivotTableOptions | undefined;
|
|
6775
|
-
/**
|
|
6776
|
-
* <p>The total options for a pivot table visual.</p>
|
|
6777
|
-
* @public
|
|
6778
|
-
*/
|
|
6779
|
-
TotalOptions?: PivotTableTotalOptions | undefined;
|
|
6780
|
-
/**
|
|
6781
|
-
* <p>The field options for a pivot table visual.</p>
|
|
6782
|
-
* @public
|
|
6783
|
-
*/
|
|
6784
|
-
FieldOptions?: PivotTableFieldOptions | undefined;
|
|
6785
|
-
/**
|
|
6786
|
-
* <p>The paginated report options for a pivot table visual.</p>
|
|
6787
|
-
* @public
|
|
6788
|
-
*/
|
|
6789
|
-
PaginatedReportOptions?: PivotTablePaginatedReportOptions | undefined;
|
|
6790
|
-
/**
|
|
6791
|
-
* <p>The general visual interactions setup for a visual.</p>
|
|
6792
|
-
* @public
|
|
6793
|
-
*/
|
|
6794
|
-
Interactions?: VisualInteractionOptions | undefined;
|
|
6795
|
-
}
|
|
6796
6803
|
/**
|
|
6797
6804
|
* @internal
|
|
6798
6805
|
*/
|
|
@@ -7237,7 +7244,3 @@ export declare const PivotFieldSortOptionsFilterSensitiveLog: (obj: PivotFieldSo
|
|
|
7237
7244
|
* @internal
|
|
7238
7245
|
*/
|
|
7239
7246
|
export declare const PivotTableSortConfigurationFilterSensitiveLog: (obj: PivotTableSortConfiguration) => any;
|
|
7240
|
-
/**
|
|
7241
|
-
* @internal
|
|
7242
|
-
*/
|
|
7243
|
-
export declare const PivotTableConfigurationFilterSensitiveLog: (obj: PivotTableConfiguration) => any;
|
|
@@ -1,7 +1,74 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { AggFunction, AggregationPartitionBy, AggType, AmazonElasticsearchParameters, AmazonOpenSearchParameters, AnalysisDefaults, AssetOptions, AxisDisplayOptions, CalculatedField, ChartAxisLabelOptions, ColumnConfiguration, DataLabelOptions, DataSetIdentifierDeclaration, DimensionField, FilterControl, FilterGroup, FontConfiguration, Layout,
|
|
3
|
-
import { BarChartVisual, BoxPlotVisual, ColorScale, ColumnHierarchy, ComboChartVisual, ConditionalFormattingColor, ConditionalFormattingIcon, CustomContentVisual, EmptyVisual, FieldSortOptions, FilledMapVisual, FunnelChartVisual, GaugeChartVisual, GeospatialMapVisual, HeatMapVisual, HistogramVisual, InsightVisual, ItemsLimitConfiguration, KPIVisual, LayerMapVisual, LineChartVisual, PaginationConfiguration, PieChartVisual,
|
|
2
|
+
import { AggFunction, AggregationPartitionBy, AggType, AmazonElasticsearchParameters, AmazonOpenSearchParameters, AnalysisDefaults, AssetOptions, AxisDisplayOptions, CalculatedField, ChartAxisLabelOptions, ColumnConfiguration, DataLabelOptions, DataSetIdentifierDeclaration, DimensionField, FilterControl, FilterGroup, FontConfiguration, Layout, MeasureField, NumberScale, ParameterControl, ParameterDeclaration, QueryExecutionOptions, ResourceStatus, SheetContentType, SheetControlLayout, SheetImage, SheetTextBox, TimeGranularity, TopicTimeGranularity, URLTargetConfiguration, Visibility, VisualCustomAction, VisualCustomActionDefaults, VisualInteractionOptions } from "./models_0";
|
|
3
|
+
import { BarChartVisual, BoxPlotVisual, ColorScale, ColumnHierarchy, ComboChartVisual, ConditionalFormattingColor, ConditionalFormattingIcon, CustomContentVisual, EmptyVisual, FieldSortOptions, FilledMapVisual, FunnelChartVisual, GaugeChartVisual, GeospatialMapVisual, HeatMapVisual, HistogramVisual, InsightVisual, ItemsLimitConfiguration, KPIVisual, LayerMapVisual, LegendOptions, LineChartVisual, PaginationConfiguration, PieChartVisual, PivotTableFieldOptions, PivotTableFieldWells, PivotTableOptions, PivotTablePaginatedReportOptions, PivotTableSortConfiguration, PivotTotalOptions, RowAlternateColorOptions, SubtotalOptions, TableCellStyle, TableTotalsPlacement, TableTotalsScrollStatus, TooltipOptions, TotalAggregationOption, UnaggregatedField, VisualPalette, VisualSubtitleLabelOptions, VisualTitleLabelOptions } from "./models_1";
|
|
4
4
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
5
|
+
/**
|
|
6
|
+
* <p>The total options for a pivot table visual.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface PivotTableTotalOptions {
|
|
10
|
+
/**
|
|
11
|
+
* <p>The row subtotal options.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
RowSubtotalOptions?: SubtotalOptions | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The column subtotal options.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
ColumnSubtotalOptions?: SubtotalOptions | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The row total options.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
RowTotalOptions?: PivotTotalOptions | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* <p>The column total options.</p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
ColumnTotalOptions?: PivotTotalOptions | undefined;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* <p>The configuration for a <code>PivotTableVisual</code>.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export interface PivotTableConfiguration {
|
|
36
|
+
/**
|
|
37
|
+
* <p>The field wells of the visual.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
FieldWells?: PivotTableFieldWells | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* <p>The sort configuration for a <code>PivotTableVisual</code>.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
SortConfiguration?: PivotTableSortConfiguration | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* <p>The table options for a pivot table visual.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
TableOptions?: PivotTableOptions | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>The total options for a pivot table visual.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
TotalOptions?: PivotTableTotalOptions | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The field options for a pivot table visual.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
FieldOptions?: PivotTableFieldOptions | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The paginated report options for a pivot table visual.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
PaginatedReportOptions?: PivotTablePaginatedReportOptions | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* <p>The general visual interactions setup for a visual.</p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
Interactions?: VisualInteractionOptions | undefined;
|
|
71
|
+
}
|
|
5
72
|
/**
|
|
6
73
|
* @public
|
|
7
74
|
* @enum
|
|
@@ -3777,6 +3844,17 @@ export interface AssetBundleImportJobDataSourceCredentials {
|
|
|
3777
3844
|
*/
|
|
3778
3845
|
SecretArn?: string | undefined;
|
|
3779
3846
|
}
|
|
3847
|
+
/**
|
|
3848
|
+
* <p>The parameters for an IAM Identity Center configuration.</p>
|
|
3849
|
+
* @public
|
|
3850
|
+
*/
|
|
3851
|
+
export interface IdentityCenterConfiguration {
|
|
3852
|
+
/**
|
|
3853
|
+
* <p>A Boolean option that controls whether Trusted Identity Propagation should be used.</p>
|
|
3854
|
+
* @public
|
|
3855
|
+
*/
|
|
3856
|
+
EnableIdentityPropagation?: boolean | undefined;
|
|
3857
|
+
}
|
|
3780
3858
|
/**
|
|
3781
3859
|
* <p>Parameters for Amazon Athena.</p>
|
|
3782
3860
|
* @public
|
|
@@ -3792,6 +3870,12 @@ export interface AthenaParameters {
|
|
|
3792
3870
|
* @public
|
|
3793
3871
|
*/
|
|
3794
3872
|
RoleArn?: string | undefined;
|
|
3873
|
+
/**
|
|
3874
|
+
* <p>An optional parameter that configures IAM Identity Center authentication to grant Amazon QuickSight access to your workgroup.</p>
|
|
3875
|
+
* <p>This parameter can only be specified if your Amazon QuickSight account is configured with IAM Identity Center.</p>
|
|
3876
|
+
* @public
|
|
3877
|
+
*/
|
|
3878
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration | undefined;
|
|
3795
3879
|
}
|
|
3796
3880
|
/**
|
|
3797
3881
|
* <p>Parameters for Amazon Aurora.</p>
|
|
@@ -4064,17 +4148,6 @@ export interface RedshiftIAMParameters {
|
|
|
4064
4148
|
*/
|
|
4065
4149
|
AutoCreateDatabaseUser?: boolean | undefined;
|
|
4066
4150
|
}
|
|
4067
|
-
/**
|
|
4068
|
-
* <p>The parameters for an IAM Identity Center configuration.</p>
|
|
4069
|
-
* @public
|
|
4070
|
-
*/
|
|
4071
|
-
export interface IdentityCenterConfiguration {
|
|
4072
|
-
/**
|
|
4073
|
-
* <p>A Boolean option that controls whether Trusted Identity Propagation should be used.</p>
|
|
4074
|
-
* @public
|
|
4075
|
-
*/
|
|
4076
|
-
EnableIdentityPropagation?: boolean | undefined;
|
|
4077
|
-
}
|
|
4078
4151
|
/**
|
|
4079
4152
|
* <p>The parameters for Amazon Redshift. The <code>ClusterId</code> field can be blank if
|
|
4080
4153
|
* <code>Host</code> and <code>Port</code> are both set. The <code>Host</code> and <code>Port</code> fields can be blank if the <code>ClusterId</code> field is set.</p>
|
|
@@ -5885,6 +5958,7 @@ export type AuthenticationMethodOption = (typeof AuthenticationMethodOption)[key
|
|
|
5885
5958
|
* @enum
|
|
5886
5959
|
*/
|
|
5887
5960
|
export declare const ServiceType: {
|
|
5961
|
+
readonly ATHENA: "ATHENA";
|
|
5888
5962
|
readonly QBUSINESS: "QBUSINESS";
|
|
5889
5963
|
readonly REDSHIFT: "REDSHIFT";
|
|
5890
5964
|
};
|
|
@@ -7129,97 +7203,9 @@ export declare const BrandVersionStatus: {
|
|
|
7129
7203
|
*/
|
|
7130
7204
|
export type BrandVersionStatus = (typeof BrandVersionStatus)[keyof typeof BrandVersionStatus];
|
|
7131
7205
|
/**
|
|
7132
|
-
*
|
|
7133
|
-
* @public
|
|
7134
|
-
*/
|
|
7135
|
-
export interface BrandDetail {
|
|
7136
|
-
/**
|
|
7137
|
-
* <p>The ID of the Amazon QuickSight brand.</p>
|
|
7138
|
-
* @public
|
|
7139
|
-
*/
|
|
7140
|
-
BrandId: string | undefined;
|
|
7141
|
-
/**
|
|
7142
|
-
* <p>The Amazon Resource Name (ARN) of the brand.</p>
|
|
7143
|
-
* @public
|
|
7144
|
-
*/
|
|
7145
|
-
Arn?: string | undefined;
|
|
7146
|
-
/**
|
|
7147
|
-
* <p>The status of the brand.</p>
|
|
7148
|
-
* @public
|
|
7149
|
-
*/
|
|
7150
|
-
BrandStatus?: BrandStatus | undefined;
|
|
7151
|
-
/**
|
|
7152
|
-
* <p>The time that the brand was created.</p>
|
|
7153
|
-
* @public
|
|
7154
|
-
*/
|
|
7155
|
-
CreatedTime?: Date | undefined;
|
|
7156
|
-
/**
|
|
7157
|
-
* <p>The last time the brand was updated.</p>
|
|
7158
|
-
* @public
|
|
7159
|
-
*/
|
|
7160
|
-
LastUpdatedTime?: Date | undefined;
|
|
7161
|
-
/**
|
|
7162
|
-
* <p>The ID of the version.</p>
|
|
7163
|
-
* @public
|
|
7164
|
-
*/
|
|
7165
|
-
VersionId?: string | undefined;
|
|
7166
|
-
/**
|
|
7167
|
-
* <p>The status of the version.</p>
|
|
7168
|
-
* @public
|
|
7169
|
-
*/
|
|
7170
|
-
VersionStatus?: BrandVersionStatus | undefined;
|
|
7171
|
-
/**
|
|
7172
|
-
* <p>A list of errors that occurred during the most recent brand operation.</p>
|
|
7173
|
-
* @public
|
|
7174
|
-
*/
|
|
7175
|
-
Errors?: string[] | undefined;
|
|
7176
|
-
/**
|
|
7177
|
-
* <p>The logo details.</p>
|
|
7178
|
-
* @public
|
|
7179
|
-
*/
|
|
7180
|
-
Logo?: Logo | undefined;
|
|
7181
|
-
}
|
|
7182
|
-
/**
|
|
7183
|
-
* <p>A summary of the brand.</p>
|
|
7184
|
-
* @public
|
|
7206
|
+
* @internal
|
|
7185
7207
|
*/
|
|
7186
|
-
export
|
|
7187
|
-
/**
|
|
7188
|
-
* <p>The Amazon Resource Name (ARN) of the brand.</p>
|
|
7189
|
-
* @public
|
|
7190
|
-
*/
|
|
7191
|
-
Arn?: string | undefined;
|
|
7192
|
-
/**
|
|
7193
|
-
* <p>The ID of the Amazon QuickSight brand.</p>
|
|
7194
|
-
* @public
|
|
7195
|
-
*/
|
|
7196
|
-
BrandId?: string | undefined;
|
|
7197
|
-
/**
|
|
7198
|
-
* <p>The name of the brand.</p>
|
|
7199
|
-
* @public
|
|
7200
|
-
*/
|
|
7201
|
-
BrandName?: string | undefined;
|
|
7202
|
-
/**
|
|
7203
|
-
* <p>The description of the brand.</p>
|
|
7204
|
-
* @public
|
|
7205
|
-
*/
|
|
7206
|
-
Description?: string | undefined;
|
|
7207
|
-
/**
|
|
7208
|
-
* <p>The status of the brand.</p>
|
|
7209
|
-
* @public
|
|
7210
|
-
*/
|
|
7211
|
-
BrandStatus?: BrandStatus | undefined;
|
|
7212
|
-
/**
|
|
7213
|
-
* <p>The time that the brand was created.</p>
|
|
7214
|
-
* @public
|
|
7215
|
-
*/
|
|
7216
|
-
CreatedTime?: Date | undefined;
|
|
7217
|
-
/**
|
|
7218
|
-
* <p>The time when the brand was last updated.</p>
|
|
7219
|
-
* @public
|
|
7220
|
-
*/
|
|
7221
|
-
LastUpdatedTime?: Date | undefined;
|
|
7222
|
-
}
|
|
7208
|
+
export declare const PivotTableConfigurationFilterSensitiveLog: (obj: PivotTableConfiguration) => any;
|
|
7223
7209
|
/**
|
|
7224
7210
|
* @internal
|
|
7225
7211
|
*/
|