@aws-sdk/client-quicksight 3.431.0 → 3.433.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/commands/StartAssetBundleImportJobCommand.js +2 -2
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +17 -9
- package/dist-cjs/models/models_1.js +20 -9
- package/dist-cjs/models/models_2.js +17 -25
- package/dist-cjs/models/models_3.js +22 -15
- package/dist-cjs/models/models_4.js +16 -1
- package/dist-cjs/protocols/Aws_restJson1.js +8 -0
- package/dist-es/commands/StartAssetBundleImportJobCommand.js +1 -1
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +14 -6
- package/dist-es/models/models_1.js +15 -4
- package/dist-es/models/models_2.js +13 -22
- package/dist-es/models/models_3.js +22 -13
- package/dist-es/models/models_4.js +14 -1
- package/dist-es/protocols/Aws_restJson1.js +8 -0
- package/dist-types/commands/CreateAnalysisCommand.d.ts +47 -12
- package/dist-types/commands/CreateDashboardCommand.d.ts +47 -12
- package/dist-types/commands/CreateDataSetCommand.d.ts +3 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +25 -0
- package/dist-types/commands/CreateFolderCommand.d.ts +1 -1
- package/dist-types/commands/CreateTemplateCommand.d.ts +44 -12
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +44 -12
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +11 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +44 -12
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +22 -0
- package/dist-types/commands/DescribeFolderCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +44 -12
- package/dist-types/commands/ListDataSourcesCommand.d.ts +22 -0
- package/dist-types/commands/ListFoldersCommand.d.ts +1 -1
- package/dist-types/commands/SearchFoldersCommand.d.ts +2 -2
- package/dist-types/commands/SearchGroupsCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +12 -1
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +44 -12
- package/dist-types/commands/UpdateDashboardCommand.d.ts +44 -12
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +22 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +44 -12
- package/dist-types/models/models_0.d.ts +111 -106
- package/dist-types/models/models_1.d.ts +137 -122
- package/dist-types/models/models_2.d.ts +320 -310
- package/dist-types/models/models_3.d.ts +309 -290
- package/dist-types/models/models_4.d.ts +290 -2
- package/dist-types/ts3.4/commands/SearchFoldersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAssetBundleImportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +29 -26
- package/dist-types/ts3.4/models/models_1.d.ts +40 -31
- package/dist-types/ts3.4/models/models_2.d.ts +161 -83
- package/dist-types/ts3.4/models/models_3.d.ts +81 -70
- package/dist-types/ts3.4/models/models_4.d.ts +70 -1
- package/package.json +32 -32
|
@@ -1989,6 +1989,22 @@ export interface RelativeDatesFilter {
|
|
|
1989
1989
|
*/
|
|
1990
1990
|
ExcludePeriodConfiguration?: ExcludePeriodConfiguration;
|
|
1991
1991
|
}
|
|
1992
|
+
/**
|
|
1993
|
+
* @public
|
|
1994
|
+
* <p>The rolling date configuration of a date time filter.</p>
|
|
1995
|
+
*/
|
|
1996
|
+
export interface RollingDateConfiguration {
|
|
1997
|
+
/**
|
|
1998
|
+
* @public
|
|
1999
|
+
* <p>The data set that is used in the rolling date configuration.</p>
|
|
2000
|
+
*/
|
|
2001
|
+
DataSetIdentifier?: string;
|
|
2002
|
+
/**
|
|
2003
|
+
* @public
|
|
2004
|
+
* <p>The expression of the rolling date configuration.</p>
|
|
2005
|
+
*/
|
|
2006
|
+
Expression: string | undefined;
|
|
2007
|
+
}
|
|
1992
2008
|
/**
|
|
1993
2009
|
* @public
|
|
1994
2010
|
* <p>A <code>TimeEqualityFilter</code> filters values that are equal to a given value.</p>
|
|
@@ -2007,13 +2023,13 @@ export interface TimeEqualityFilter {
|
|
|
2007
2023
|
/**
|
|
2008
2024
|
* @public
|
|
2009
2025
|
* <p>The value of a <code>TimeEquality</code> filter.</p>
|
|
2010
|
-
* <p>This field is mutually exclusive to <code>ParameterName</code>.</p>
|
|
2026
|
+
* <p>This field is mutually exclusive to <code>RollingDate</code> and <code>ParameterName</code>.</p>
|
|
2011
2027
|
*/
|
|
2012
2028
|
Value?: Date;
|
|
2013
2029
|
/**
|
|
2014
2030
|
* @public
|
|
2015
2031
|
* <p>The parameter whose value should be used for the filter value.</p>
|
|
2016
|
-
* <p>This field is mutually exclusive to <code>Value</code>.</p>
|
|
2032
|
+
* <p>This field is mutually exclusive to <code>Value</code> and <code>RollingDate</code>.</p>
|
|
2017
2033
|
*/
|
|
2018
2034
|
ParameterName?: string;
|
|
2019
2035
|
/**
|
|
@@ -2021,22 +2037,12 @@ export interface TimeEqualityFilter {
|
|
|
2021
2037
|
* <p>The level of time precision that is used to aggregate <code>DateTime</code> values.</p>
|
|
2022
2038
|
*/
|
|
2023
2039
|
TimeGranularity?: TimeGranularity;
|
|
2024
|
-
}
|
|
2025
|
-
/**
|
|
2026
|
-
* @public
|
|
2027
|
-
* <p>The rolling date configuration of a date time filter.</p>
|
|
2028
|
-
*/
|
|
2029
|
-
export interface RollingDateConfiguration {
|
|
2030
|
-
/**
|
|
2031
|
-
* @public
|
|
2032
|
-
* <p>The data set that is used in the rolling date configuration.</p>
|
|
2033
|
-
*/
|
|
2034
|
-
DataSetIdentifier?: string;
|
|
2035
2040
|
/**
|
|
2036
2041
|
* @public
|
|
2037
|
-
* <p>The
|
|
2042
|
+
* <p>The rolling date input for the <code>TimeEquality</code> filter.</p>
|
|
2043
|
+
* <p>This field is mutually exclusive to <code>Value</code> and <code>ParameterName</code>.</p>
|
|
2038
2044
|
*/
|
|
2039
|
-
|
|
2045
|
+
RollingDate?: RollingDateConfiguration;
|
|
2040
2046
|
}
|
|
2041
2047
|
/**
|
|
2042
2048
|
* @public
|
|
@@ -5466,6 +5472,18 @@ export interface ReferenceLineDynamicDataConfiguration {
|
|
|
5466
5472
|
*/
|
|
5467
5473
|
Calculation: NumericalAggregationFunction | undefined;
|
|
5468
5474
|
}
|
|
5475
|
+
/**
|
|
5476
|
+
* @public
|
|
5477
|
+
* @enum
|
|
5478
|
+
*/
|
|
5479
|
+
export declare const ReferenceLineSeriesType: {
|
|
5480
|
+
readonly BAR: "BAR";
|
|
5481
|
+
readonly LINE: "LINE";
|
|
5482
|
+
};
|
|
5483
|
+
/**
|
|
5484
|
+
* @public
|
|
5485
|
+
*/
|
|
5486
|
+
export type ReferenceLineSeriesType = (typeof ReferenceLineSeriesType)[keyof typeof ReferenceLineSeriesType];
|
|
5469
5487
|
/**
|
|
5470
5488
|
* @public
|
|
5471
5489
|
* <p>The static data configuration of the reference line data configuration.</p>
|
|
@@ -5484,8 +5502,7 @@ export interface ReferenceLineStaticDataConfiguration {
|
|
|
5484
5502
|
export interface ReferenceLineDataConfiguration {
|
|
5485
5503
|
/**
|
|
5486
5504
|
* @public
|
|
5487
|
-
* <p>The static data configuration of the reference line data
|
|
5488
|
-
* configuration.</p>
|
|
5505
|
+
* <p>The static data configuration of the reference line data configuration.</p>
|
|
5489
5506
|
*/
|
|
5490
5507
|
StaticConfiguration?: ReferenceLineStaticDataConfiguration;
|
|
5491
5508
|
/**
|
|
@@ -5498,14 +5515,35 @@ export interface ReferenceLineDataConfiguration {
|
|
|
5498
5515
|
* <p>The axis binding type of the reference line. Choose one of the following options:</p>
|
|
5499
5516
|
* <ul>
|
|
5500
5517
|
* <li>
|
|
5501
|
-
* <p>
|
|
5518
|
+
* <p>
|
|
5519
|
+
* <code>PrimaryY</code>
|
|
5520
|
+
* </p>
|
|
5502
5521
|
* </li>
|
|
5503
5522
|
* <li>
|
|
5504
|
-
* <p>
|
|
5523
|
+
* <p>
|
|
5524
|
+
* <code>SecondaryY</code>
|
|
5525
|
+
* </p>
|
|
5505
5526
|
* </li>
|
|
5506
5527
|
* </ul>
|
|
5507
5528
|
*/
|
|
5508
5529
|
AxisBinding?: AxisBinding;
|
|
5530
|
+
/**
|
|
5531
|
+
* @public
|
|
5532
|
+
* <p>The series type of the reference line data configuration. Choose one of the following options:</p>
|
|
5533
|
+
* <ul>
|
|
5534
|
+
* <li>
|
|
5535
|
+
* <p>
|
|
5536
|
+
* <code>BAR</code>
|
|
5537
|
+
* </p>
|
|
5538
|
+
* </li>
|
|
5539
|
+
* <li>
|
|
5540
|
+
* <p>
|
|
5541
|
+
* <code>LINE</code>
|
|
5542
|
+
* </p>
|
|
5543
|
+
* </li>
|
|
5544
|
+
* </ul>
|
|
5545
|
+
*/
|
|
5546
|
+
SeriesType?: ReferenceLineSeriesType;
|
|
5509
5547
|
}
|
|
5510
5548
|
/**
|
|
5511
5549
|
* @public
|
|
@@ -6203,6 +6241,49 @@ export interface TooltipOptions {
|
|
|
6203
6241
|
*/
|
|
6204
6242
|
FieldBasedTooltip?: FieldBasedTooltip;
|
|
6205
6243
|
}
|
|
6244
|
+
/**
|
|
6245
|
+
* @public
|
|
6246
|
+
* @enum
|
|
6247
|
+
*/
|
|
6248
|
+
export declare const PivotTableDataPathType: {
|
|
6249
|
+
readonly COUNT_METRIC_COLUMN: "COUNT_METRIC_COLUMN";
|
|
6250
|
+
readonly EMPTY_COLUMN_HEADER: "EMPTY_COLUMN_HEADER";
|
|
6251
|
+
readonly HIERARCHY_ROWS_LAYOUT_COLUMN: "HIERARCHY_ROWS_LAYOUT_COLUMN";
|
|
6252
|
+
readonly MULTIPLE_ROW_METRICS_COLUMN: "MULTIPLE_ROW_METRICS_COLUMN";
|
|
6253
|
+
};
|
|
6254
|
+
/**
|
|
6255
|
+
* @public
|
|
6256
|
+
*/
|
|
6257
|
+
export type PivotTableDataPathType = (typeof PivotTableDataPathType)[keyof typeof PivotTableDataPathType];
|
|
6258
|
+
/**
|
|
6259
|
+
* @public
|
|
6260
|
+
* <p>The type of the data path value.</p>
|
|
6261
|
+
*/
|
|
6262
|
+
export interface DataPathType {
|
|
6263
|
+
/**
|
|
6264
|
+
* @public
|
|
6265
|
+
* <p>The type of data path value utilized in a pivot table. Choose one of the following options:</p>
|
|
6266
|
+
* <ul>
|
|
6267
|
+
* <li>
|
|
6268
|
+
* <p>
|
|
6269
|
+
* <code>HIERARCHY_ROWS_LAYOUT_COLUMN</code> - The type of data path for the rows layout column, when <code>RowsLayout</code> is set to <code>HIERARCHY</code>.</p>
|
|
6270
|
+
* </li>
|
|
6271
|
+
* <li>
|
|
6272
|
+
* <p>
|
|
6273
|
+
* <code>MULTIPLE_ROW_METRICS_COLUMN</code> - The type of data path for the metric column when the row is set to Metric Placement.</p>
|
|
6274
|
+
* </li>
|
|
6275
|
+
* <li>
|
|
6276
|
+
* <p>
|
|
6277
|
+
* <code>EMPTY_COLUMN_HEADER</code> - The type of data path for the column with empty column header, when there is no field in <code>ColumnsFieldWell</code> and the row is set to Metric Placement.</p>
|
|
6278
|
+
* </li>
|
|
6279
|
+
* <li>
|
|
6280
|
+
* <p>
|
|
6281
|
+
* <code>COUNT_METRIC_COLUMN</code> - The type of data path for the column with <code>COUNT</code> as the metric, when there is no field in the <code>ValuesFieldWell</code>.</p>
|
|
6282
|
+
* </li>
|
|
6283
|
+
* </ul>
|
|
6284
|
+
*/
|
|
6285
|
+
PivotTableDataPathType?: PivotTableDataPathType;
|
|
6286
|
+
}
|
|
6206
6287
|
/**
|
|
6207
6288
|
* @public
|
|
6208
6289
|
* <p>The data path that needs to be sorted.</p>
|
|
@@ -6212,12 +6293,17 @@ export interface DataPathValue {
|
|
|
6212
6293
|
* @public
|
|
6213
6294
|
* <p>The field ID of the field that needs to be sorted.</p>
|
|
6214
6295
|
*/
|
|
6215
|
-
FieldId
|
|
6296
|
+
FieldId?: string;
|
|
6216
6297
|
/**
|
|
6217
6298
|
* @public
|
|
6218
6299
|
* <p>The actual value of the field that needs to be sorted.</p>
|
|
6219
6300
|
*/
|
|
6220
|
-
FieldValue
|
|
6301
|
+
FieldValue?: string;
|
|
6302
|
+
/**
|
|
6303
|
+
* @public
|
|
6304
|
+
* <p>The type configuration of the field.</p>
|
|
6305
|
+
*/
|
|
6306
|
+
DataPathType?: DataPathType;
|
|
6221
6307
|
}
|
|
6222
6308
|
/**
|
|
6223
6309
|
* @public
|
|
@@ -6578,87 +6664,6 @@ export interface VisualTitleLabelOptions {
|
|
|
6578
6664
|
*/
|
|
6579
6665
|
FormatText?: ShortFormatText;
|
|
6580
6666
|
}
|
|
6581
|
-
/**
|
|
6582
|
-
* @public
|
|
6583
|
-
* <p>A bar chart.</p>
|
|
6584
|
-
* <p>The <code>BarChartVisual</code> structure describes a visual that is a member of the bar chart family. The following charts can be described using this structure:</p>
|
|
6585
|
-
* <ul>
|
|
6586
|
-
* <li>
|
|
6587
|
-
* <p>Horizontal bar chart</p>
|
|
6588
|
-
* </li>
|
|
6589
|
-
* <li>
|
|
6590
|
-
* <p>Vertical bar chart</p>
|
|
6591
|
-
* </li>
|
|
6592
|
-
* <li>
|
|
6593
|
-
* <p>Horizontal stacked bar chart</p>
|
|
6594
|
-
* </li>
|
|
6595
|
-
* <li>
|
|
6596
|
-
* <p>Vertical stacked bar chart</p>
|
|
6597
|
-
* </li>
|
|
6598
|
-
* <li>
|
|
6599
|
-
* <p>Horizontal stacked 100% bar chart</p>
|
|
6600
|
-
* </li>
|
|
6601
|
-
* <li>
|
|
6602
|
-
* <p>Vertical stacked 100% bar chart</p>
|
|
6603
|
-
* </li>
|
|
6604
|
-
* </ul>
|
|
6605
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/bar-charts.html">Using bar charts</a> in the <i>Amazon QuickSight User Guide</i>.</p>
|
|
6606
|
-
*/
|
|
6607
|
-
export interface BarChartVisual {
|
|
6608
|
-
/**
|
|
6609
|
-
* @public
|
|
6610
|
-
* <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>
|
|
6611
|
-
*/
|
|
6612
|
-
VisualId: string | undefined;
|
|
6613
|
-
/**
|
|
6614
|
-
* @public
|
|
6615
|
-
* <p>The title that is displayed on the visual.</p>
|
|
6616
|
-
*/
|
|
6617
|
-
Title?: VisualTitleLabelOptions;
|
|
6618
|
-
/**
|
|
6619
|
-
* @public
|
|
6620
|
-
* <p>The subtitle that is displayed on the visual.</p>
|
|
6621
|
-
*/
|
|
6622
|
-
Subtitle?: VisualSubtitleLabelOptions;
|
|
6623
|
-
/**
|
|
6624
|
-
* @public
|
|
6625
|
-
* <p>The configuration settings of the visual.</p>
|
|
6626
|
-
*/
|
|
6627
|
-
ChartConfiguration?: BarChartConfiguration;
|
|
6628
|
-
/**
|
|
6629
|
-
* @public
|
|
6630
|
-
* <p>The list of custom actions that are configured for a visual.</p>
|
|
6631
|
-
*/
|
|
6632
|
-
Actions?: VisualCustomAction[];
|
|
6633
|
-
/**
|
|
6634
|
-
* @public
|
|
6635
|
-
* <p>The column hierarchy that is used during drill-downs and drill-ups.</p>
|
|
6636
|
-
*/
|
|
6637
|
-
ColumnHierarchies?: ColumnHierarchy[];
|
|
6638
|
-
}
|
|
6639
|
-
/**
|
|
6640
|
-
* @public
|
|
6641
|
-
* @enum
|
|
6642
|
-
*/
|
|
6643
|
-
export declare const BoxPlotFillStyle: {
|
|
6644
|
-
readonly SOLID: "SOLID";
|
|
6645
|
-
readonly TRANSPARENT: "TRANSPARENT";
|
|
6646
|
-
};
|
|
6647
|
-
/**
|
|
6648
|
-
* @public
|
|
6649
|
-
*/
|
|
6650
|
-
export type BoxPlotFillStyle = (typeof BoxPlotFillStyle)[keyof typeof BoxPlotFillStyle];
|
|
6651
|
-
/**
|
|
6652
|
-
* @public
|
|
6653
|
-
* <p>The style options of the box plot.</p>
|
|
6654
|
-
*/
|
|
6655
|
-
export interface BoxPlotStyleOptions {
|
|
6656
|
-
/**
|
|
6657
|
-
* @public
|
|
6658
|
-
* <p>The fill styles (solid, transparent) of the box plot.</p>
|
|
6659
|
-
*/
|
|
6660
|
-
FillStyle?: BoxPlotFillStyle;
|
|
6661
|
-
}
|
|
6662
6667
|
/**
|
|
6663
6668
|
* @internal
|
|
6664
6669
|
*/
|
|
@@ -6715,6 +6720,10 @@ export declare const ColumnConfigurationFilterSensitiveLog: (obj: ColumnConfigur
|
|
|
6715
6720
|
* @internal
|
|
6716
6721
|
*/
|
|
6717
6722
|
export declare const RollingDateConfigurationFilterSensitiveLog: (obj: RollingDateConfiguration) => any;
|
|
6723
|
+
/**
|
|
6724
|
+
* @internal
|
|
6725
|
+
*/
|
|
6726
|
+
export declare const TimeEqualityFilterFilterSensitiveLog: (obj: TimeEqualityFilter) => any;
|
|
6718
6727
|
/**
|
|
6719
6728
|
* @internal
|
|
6720
6729
|
*/
|
|
@@ -6947,7 +6956,3 @@ export declare const VisualPaletteFilterSensitiveLog: (obj: VisualPalette) => an
|
|
|
6947
6956
|
* @internal
|
|
6948
6957
|
*/
|
|
6949
6958
|
export declare const BarChartConfigurationFilterSensitiveLog: (obj: BarChartConfiguration) => any;
|
|
6950
|
-
/**
|
|
6951
|
-
* @internal
|
|
6952
|
-
*/
|
|
6953
|
-
export declare const BarChartVisualFilterSensitiveLog: (obj: BarChartVisual) => any;
|
|
@@ -1,4 +1,85 @@
|
|
|
1
|
-
import { AnalysisDefaults, AxisBinding, AxisDisplayOptions,
|
|
1
|
+
import { AnalysisDefaults, AxisBinding, AxisDisplayOptions, BarChartConfiguration, BarsArrangement, CalculatedField, ChartAxisLabelOptions, ColumnConfiguration, ColumnHierarchy, ColumnIdentifier, ColumnSort, ContributionAnalysisDefault, DataLabelOptions, DataLabelPosition, DataPathValue, DataSetIdentifierDeclaration, DimensionField, FieldSort, FieldSortOptions, FilterControl, FilterGroup, FontConfiguration, FormatConfiguration, HorizontalTextAlignment, ItemsLimitConfiguration, Layout, LegendOptions, MeasureField, NumberDisplayFormatConfiguration, 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>A bar chart.</p>
|
|
5
|
+
* <p>The <code>BarChartVisual</code> structure describes a visual that is a member of the bar chart family. The following charts can be described using this structure:</p>
|
|
6
|
+
* <ul>
|
|
7
|
+
* <li>
|
|
8
|
+
* <p>Horizontal bar chart</p>
|
|
9
|
+
* </li>
|
|
10
|
+
* <li>
|
|
11
|
+
* <p>Vertical bar chart</p>
|
|
12
|
+
* </li>
|
|
13
|
+
* <li>
|
|
14
|
+
* <p>Horizontal stacked bar chart</p>
|
|
15
|
+
* </li>
|
|
16
|
+
* <li>
|
|
17
|
+
* <p>Vertical stacked bar chart</p>
|
|
18
|
+
* </li>
|
|
19
|
+
* <li>
|
|
20
|
+
* <p>Horizontal stacked 100% bar chart</p>
|
|
21
|
+
* </li>
|
|
22
|
+
* <li>
|
|
23
|
+
* <p>Vertical stacked 100% bar chart</p>
|
|
24
|
+
* </li>
|
|
25
|
+
* </ul>
|
|
26
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/bar-charts.html">Using bar charts</a> in the <i>Amazon QuickSight User Guide</i>.</p>
|
|
27
|
+
*/
|
|
28
|
+
export interface BarChartVisual {
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* <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>
|
|
32
|
+
*/
|
|
33
|
+
VisualId: string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
* <p>The title that is displayed on the visual.</p>
|
|
37
|
+
*/
|
|
38
|
+
Title?: VisualTitleLabelOptions;
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* <p>The subtitle that is displayed on the visual.</p>
|
|
42
|
+
*/
|
|
43
|
+
Subtitle?: VisualSubtitleLabelOptions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
* <p>The configuration settings of the visual.</p>
|
|
47
|
+
*/
|
|
48
|
+
ChartConfiguration?: BarChartConfiguration;
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
* <p>The list of custom actions that are configured for a visual.</p>
|
|
52
|
+
*/
|
|
53
|
+
Actions?: VisualCustomAction[];
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
* <p>The column hierarchy that is used during drill-downs and drill-ups.</p>
|
|
57
|
+
*/
|
|
58
|
+
ColumnHierarchies?: ColumnHierarchy[];
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
* @enum
|
|
63
|
+
*/
|
|
64
|
+
export declare const BoxPlotFillStyle: {
|
|
65
|
+
readonly SOLID: "SOLID";
|
|
66
|
+
readonly TRANSPARENT: "TRANSPARENT";
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export type BoxPlotFillStyle = (typeof BoxPlotFillStyle)[keyof typeof BoxPlotFillStyle];
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
* <p>The style options of the box plot.</p>
|
|
75
|
+
*/
|
|
76
|
+
export interface BoxPlotStyleOptions {
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
* <p>The fill styles (solid, transparent) of the box plot.</p>
|
|
80
|
+
*/
|
|
81
|
+
FillStyle?: BoxPlotFillStyle;
|
|
82
|
+
}
|
|
2
83
|
/**
|
|
3
84
|
* @public
|
|
4
85
|
* <p>The options of a box plot visual.</p>
|
|
@@ -4431,6 +4512,49 @@ export declare const TableTotalsScrollStatus: {
|
|
|
4431
4512
|
* @public
|
|
4432
4513
|
*/
|
|
4433
4514
|
export type TableTotalsScrollStatus = (typeof TableTotalsScrollStatus)[keyof typeof TableTotalsScrollStatus];
|
|
4515
|
+
/**
|
|
4516
|
+
* @public
|
|
4517
|
+
* @enum
|
|
4518
|
+
*/
|
|
4519
|
+
export declare const SimpleTotalAggregationFunction: {
|
|
4520
|
+
readonly AVERAGE: "AVERAGE";
|
|
4521
|
+
readonly DEFAULT: "DEFAULT";
|
|
4522
|
+
readonly MAX: "MAX";
|
|
4523
|
+
readonly MIN: "MIN";
|
|
4524
|
+
readonly NONE: "NONE";
|
|
4525
|
+
readonly SUM: "SUM";
|
|
4526
|
+
};
|
|
4527
|
+
/**
|
|
4528
|
+
* @public
|
|
4529
|
+
*/
|
|
4530
|
+
export type SimpleTotalAggregationFunction = (typeof SimpleTotalAggregationFunction)[keyof typeof SimpleTotalAggregationFunction];
|
|
4531
|
+
/**
|
|
4532
|
+
* @public
|
|
4533
|
+
* <p>An aggregation function that aggregates the total values of a measure.</p>
|
|
4534
|
+
*/
|
|
4535
|
+
export interface TotalAggregationFunction {
|
|
4536
|
+
/**
|
|
4537
|
+
* @public
|
|
4538
|
+
* <p>A built in aggregation function for total values.</p>
|
|
4539
|
+
*/
|
|
4540
|
+
SimpleTotalAggregationFunction?: SimpleTotalAggregationFunction;
|
|
4541
|
+
}
|
|
4542
|
+
/**
|
|
4543
|
+
* @public
|
|
4544
|
+
* <p>The total aggregation settings map of a field id.</p>
|
|
4545
|
+
*/
|
|
4546
|
+
export interface TotalAggregationOption {
|
|
4547
|
+
/**
|
|
4548
|
+
* @public
|
|
4549
|
+
* <p>The field id that's associated with the total aggregation option.</p>
|
|
4550
|
+
*/
|
|
4551
|
+
FieldId: string | undefined;
|
|
4552
|
+
/**
|
|
4553
|
+
* @public
|
|
4554
|
+
* <p>The total aggregation function that you want to set for a specified field id.</p>
|
|
4555
|
+
*/
|
|
4556
|
+
TotalAggregationFunction: TotalAggregationFunction | undefined;
|
|
4557
|
+
}
|
|
4434
4558
|
/**
|
|
4435
4559
|
* @public
|
|
4436
4560
|
* <p>The optional configuration of totals cells in a <code>PivotTableVisual</code>.</p>
|
|
@@ -4471,6 +4595,11 @@ export interface PivotTotalOptions {
|
|
|
4471
4595
|
* <p>The cell styling options for the total of header cells.</p>
|
|
4472
4596
|
*/
|
|
4473
4597
|
MetricHeaderCellStyle?: TableCellStyle;
|
|
4598
|
+
/**
|
|
4599
|
+
* @public
|
|
4600
|
+
* <p>The total aggregation options for each value field.</p>
|
|
4601
|
+
*/
|
|
4602
|
+
TotalAggregationOptions?: TotalAggregationOption[];
|
|
4474
4603
|
}
|
|
4475
4604
|
/**
|
|
4476
4605
|
* @public
|
|
@@ -5545,6 +5674,11 @@ export interface TotalOptions {
|
|
|
5545
5674
|
* <p>Cell styling options for the total cells.</p>
|
|
5546
5675
|
*/
|
|
5547
5676
|
TotalCellStyle?: TableCellStyle;
|
|
5677
|
+
/**
|
|
5678
|
+
* @public
|
|
5679
|
+
* <p>The total aggregation settings for each value field.</p>
|
|
5680
|
+
*/
|
|
5681
|
+
TotalAggregationOptions?: TotalAggregationOption[];
|
|
5548
5682
|
}
|
|
5549
5683
|
/**
|
|
5550
5684
|
* @public
|
|
@@ -6724,124 +6858,9 @@ export declare const SnapshotFileSheetSelectionScope: {
|
|
|
6724
6858
|
*/
|
|
6725
6859
|
export type SnapshotFileSheetSelectionScope = (typeof SnapshotFileSheetSelectionScope)[keyof typeof SnapshotFileSheetSelectionScope];
|
|
6726
6860
|
/**
|
|
6727
|
-
* @
|
|
6728
|
-
* <p>A structure that contains information that identifies the snapshot that needs to be generated.</p>
|
|
6729
|
-
*/
|
|
6730
|
-
export interface SnapshotFileSheetSelection {
|
|
6731
|
-
/**
|
|
6732
|
-
* @public
|
|
6733
|
-
* <p>The sheet ID of the dashboard to generate the snapshot artifact from. This value is required for CSV, Excel, and PDF format types.</p>
|
|
6734
|
-
*/
|
|
6735
|
-
SheetId: string | undefined;
|
|
6736
|
-
/**
|
|
6737
|
-
* @public
|
|
6738
|
-
* <p>The selection scope of the visuals on a sheet of a dashboard that you are generating a snapthot of. You can choose one of the following options.</p>
|
|
6739
|
-
* <ul>
|
|
6740
|
-
* <li>
|
|
6741
|
-
* <p>
|
|
6742
|
-
* <code>ALL_VISUALS</code> - Selects all visuals that are on the sheet. This value is required if the snapshot is a PDF.</p>
|
|
6743
|
-
* </li>
|
|
6744
|
-
* <li>
|
|
6745
|
-
* <p>
|
|
6746
|
-
* <code>SELECTED_VISUALS</code> - Select the visual that you want to add to the snapshot. This value is required if the snapshot is a CSV or Excel workbook.</p>
|
|
6747
|
-
* </li>
|
|
6748
|
-
* </ul>
|
|
6749
|
-
*/
|
|
6750
|
-
SelectionScope: SnapshotFileSheetSelectionScope | undefined;
|
|
6751
|
-
/**
|
|
6752
|
-
* @public
|
|
6753
|
-
* <p>
|
|
6754
|
-
* A structure that lists the IDs of the visuals in the selected sheet. Supported visual types are table, pivot table visuals. This value is required if you are generating a CSV or Excel workbook. This value supports a maximum of 1 visual ID for CSV and 5 visual IDs across up to 5 sheet selections for Excel. If you are generating an Excel workbook, the order of the visual IDs provided in this structure determines the order of the worksheets in the Excel file.
|
|
6755
|
-
* </p>
|
|
6756
|
-
*/
|
|
6757
|
-
VisualIds?: string[];
|
|
6758
|
-
}
|
|
6759
|
-
/**
|
|
6760
|
-
* @public
|
|
6761
|
-
* <p>A structure that contains the information for the snapshot that you want to generate. This information is provided by you when you start a new snapshot job.</p>
|
|
6762
|
-
*/
|
|
6763
|
-
export interface SnapshotFile {
|
|
6764
|
-
/**
|
|
6765
|
-
* @public
|
|
6766
|
-
* <p>A list of <code>SnapshotFileSheetSelection</code> objects that contain information on the dashboard sheet that is exported. These objects provide information about the snapshot artifacts that are generated during the job. This structure can hold a maximum of 5 CSV configurations, 5 Excel configurations, or 1 configuration for PDF.</p>
|
|
6767
|
-
*/
|
|
6768
|
-
SheetSelections: SnapshotFileSheetSelection[] | undefined;
|
|
6769
|
-
/**
|
|
6770
|
-
* @public
|
|
6771
|
-
* <p>The format of the snapshot file to be generated. You can choose between <code>CSV</code>, <code>Excel</code>, or <code>PDF</code>.</p>
|
|
6772
|
-
*/
|
|
6773
|
-
FormatType: SnapshotFileFormatType | undefined;
|
|
6774
|
-
}
|
|
6775
|
-
/**
|
|
6776
|
-
* @public
|
|
6777
|
-
* <p>Information on the error that caused the snapshot job to fail.</p>
|
|
6778
|
-
*/
|
|
6779
|
-
export interface SnapshotJobResultErrorInfo {
|
|
6780
|
-
/**
|
|
6781
|
-
* @public
|
|
6782
|
-
* <p>The error message.</p>
|
|
6783
|
-
*/
|
|
6784
|
-
ErrorMessage?: string;
|
|
6785
|
-
/**
|
|
6786
|
-
* @public
|
|
6787
|
-
* <p>The error type.</p>
|
|
6788
|
-
*/
|
|
6789
|
-
ErrorType?: string;
|
|
6790
|
-
}
|
|
6791
|
-
/**
|
|
6792
|
-
* @public
|
|
6793
|
-
* <p>An optional structure that contains the Amazon S3 bucket configuration that the generated snapshots are stored in. If you don't provide this information, generated snapshots are stored in the default Amazon QuickSight bucket.</p>
|
|
6794
|
-
*/
|
|
6795
|
-
export interface S3BucketConfiguration {
|
|
6796
|
-
/**
|
|
6797
|
-
* @public
|
|
6798
|
-
* <p>The name of an existing Amazon S3 bucket where the generated snapshot artifacts are sent.</p>
|
|
6799
|
-
*/
|
|
6800
|
-
BucketName: string | undefined;
|
|
6801
|
-
/**
|
|
6802
|
-
* @public
|
|
6803
|
-
* <p>The prefix of the Amazon S3 bucket that the generated snapshots are stored in.</p>
|
|
6804
|
-
*/
|
|
6805
|
-
BucketPrefix: string | undefined;
|
|
6806
|
-
/**
|
|
6807
|
-
* @public
|
|
6808
|
-
* <p>The region that the Amazon S3 bucket is located in. The bucket must be located in the same region that the <code>StartDashboardSnapshotJob</code> API call is made.</p>
|
|
6809
|
-
*/
|
|
6810
|
-
BucketRegion: string | undefined;
|
|
6811
|
-
}
|
|
6812
|
-
/**
|
|
6813
|
-
* @public
|
|
6814
|
-
* <p>A structure that describes the Amazon S3 settings to use to save the generated dashboard snapshot.</p>
|
|
6815
|
-
*/
|
|
6816
|
-
export interface SnapshotS3DestinationConfiguration {
|
|
6817
|
-
/**
|
|
6818
|
-
* @public
|
|
6819
|
-
* <p>A structure that contains details about the Amazon S3 bucket that the generated dashboard snapshot is saved in.</p>
|
|
6820
|
-
*/
|
|
6821
|
-
BucketConfiguration?: S3BucketConfiguration;
|
|
6822
|
-
}
|
|
6823
|
-
/**
|
|
6824
|
-
* @public
|
|
6825
|
-
* <p>The Amazon S3 result from the snapshot job. The result includes the <code>DestinationConfiguration</code> and the Amazon S3 Uri. If an error occured during the job, the result returns information on the error.</p>
|
|
6861
|
+
* @internal
|
|
6826
6862
|
*/
|
|
6827
|
-
export
|
|
6828
|
-
/**
|
|
6829
|
-
* @public
|
|
6830
|
-
* <p>A list of Amazon S3 bucket configurations that are provided when you make a <code>StartDashboardSnapshotJob</code> API call.
|
|
6831
|
-
* </p>
|
|
6832
|
-
*/
|
|
6833
|
-
S3DestinationConfiguration?: SnapshotS3DestinationConfiguration;
|
|
6834
|
-
/**
|
|
6835
|
-
* @public
|
|
6836
|
-
* <p>The Amazon S3 Uri.</p>
|
|
6837
|
-
*/
|
|
6838
|
-
S3Uri?: string;
|
|
6839
|
-
/**
|
|
6840
|
-
* @public
|
|
6841
|
-
* <p>An array of error records that describe any failures that occur while the dashboard snapshot job runs.</p>
|
|
6842
|
-
*/
|
|
6843
|
-
ErrorInfo?: SnapshotJobResultErrorInfo[];
|
|
6844
|
-
}
|
|
6863
|
+
export declare const BarChartVisualFilterSensitiveLog: (obj: BarChartVisual) => any;
|
|
6845
6864
|
/**
|
|
6846
6865
|
* @internal
|
|
6847
6866
|
*/
|
|
@@ -7390,7 +7409,3 @@ export declare const SheetDefinitionFilterSensitiveLog: (obj: SheetDefinition) =
|
|
|
7390
7409
|
* @internal
|
|
7391
7410
|
*/
|
|
7392
7411
|
export declare const AnalysisDefinitionFilterSensitiveLog: (obj: AnalysisDefinition) => any;
|
|
7393
|
-
/**
|
|
7394
|
-
* @internal
|
|
7395
|
-
*/
|
|
7396
|
-
export declare const SnapshotJobS3ResultFilterSensitiveLog: (obj: SnapshotJobS3Result) => any;
|