@awboost/cfn-resource-types 0.1.277 → 0.1.279
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/lib/AWS-CE-CostCategory.d.ts +28 -4
- package/lib/AWS-CE-CostCategory.js +1 -2
- package/lib/AWS-DMS-DataProvider.d.ts +26 -1
- package/lib/AWS-IoT-AccountAuditConfiguration.d.ts +62 -2
- package/lib/AWS-IoTFleetWise-DecoderManifest.d.ts +8 -0
- package/lib/AWS-MediaLive-CloudWatchAlarmTemplate.d.ts +2 -2
- package/lib/AWS-MediaLive-EventBridgeRuleTemplate.d.ts +1 -1
- package/lib/AWS-MediaLive-SignalMap.d.ts +15 -15
- package/lib/AWS-Oam-Link.d.ts +1 -1
- package/lib/AWS-QuickSight-Analysis.d.ts +137 -2
- package/lib/AWS-QuickSight-Dashboard.d.ts +129 -1
- package/lib/AWS-QuickSight-Template.d.ts +147 -0
- package/lib/AWS-Transfer-Agreement.d.ts +31 -1
- package/package.json +1 -1
|
@@ -430,6 +430,7 @@ export type BarChartConfiguration = {
|
|
|
430
430
|
ContributionAnalysisDefaults?: ContributionAnalysisDefault[];
|
|
431
431
|
DataLabels?: DataLabelOptions;
|
|
432
432
|
FieldWells?: BarChartFieldWells;
|
|
433
|
+
Interactions?: VisualInteractionOptions;
|
|
433
434
|
Legend?: LegendOptions;
|
|
434
435
|
Orientation?: BarChartOrientation;
|
|
435
436
|
/**
|
|
@@ -552,6 +553,7 @@ export type BinWidthOptions = {
|
|
|
552
553
|
export type BodySectionConfiguration = {
|
|
553
554
|
Content: BodySectionContent;
|
|
554
555
|
PageBreakConfiguration?: SectionPageBreakConfiguration;
|
|
556
|
+
RepeatConfiguration?: BodySectionRepeatConfiguration;
|
|
555
557
|
/**
|
|
556
558
|
* @minLength `1`
|
|
557
559
|
* @maxLength `512`
|
|
@@ -567,6 +569,72 @@ export type BodySectionConfiguration = {
|
|
|
567
569
|
export type BodySectionContent = {
|
|
568
570
|
Layout?: SectionLayoutConfiguration;
|
|
569
571
|
};
|
|
572
|
+
/**
|
|
573
|
+
* Type definition for `AWS::QuickSight::Dashboard.BodySectionDynamicCategoryDimensionConfiguration`.
|
|
574
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectiondynamiccategorydimensionconfiguration.html}
|
|
575
|
+
*/
|
|
576
|
+
export type BodySectionDynamicCategoryDimensionConfiguration = {
|
|
577
|
+
Column: ColumnIdentifier;
|
|
578
|
+
/**
|
|
579
|
+
* @min `1`
|
|
580
|
+
* @max `1000`
|
|
581
|
+
*/
|
|
582
|
+
Limit?: number;
|
|
583
|
+
/**
|
|
584
|
+
* @minLength `0`
|
|
585
|
+
* @maxLength `100`
|
|
586
|
+
*/
|
|
587
|
+
SortByMetrics?: ColumnSort[];
|
|
588
|
+
};
|
|
589
|
+
/**
|
|
590
|
+
* Type definition for `AWS::QuickSight::Dashboard.BodySectionDynamicNumericDimensionConfiguration`.
|
|
591
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectiondynamicnumericdimensionconfiguration.html}
|
|
592
|
+
*/
|
|
593
|
+
export type BodySectionDynamicNumericDimensionConfiguration = {
|
|
594
|
+
Column: ColumnIdentifier;
|
|
595
|
+
/**
|
|
596
|
+
* @min `1`
|
|
597
|
+
* @max `1000`
|
|
598
|
+
*/
|
|
599
|
+
Limit?: number;
|
|
600
|
+
/**
|
|
601
|
+
* @minLength `0`
|
|
602
|
+
* @maxLength `100`
|
|
603
|
+
*/
|
|
604
|
+
SortByMetrics?: ColumnSort[];
|
|
605
|
+
};
|
|
606
|
+
/**
|
|
607
|
+
* Type definition for `AWS::QuickSight::Dashboard.BodySectionRepeatConfiguration`.
|
|
608
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectionrepeatconfiguration.html}
|
|
609
|
+
*/
|
|
610
|
+
export type BodySectionRepeatConfiguration = {
|
|
611
|
+
/**
|
|
612
|
+
* @minLength `0`
|
|
613
|
+
* @maxLength `3`
|
|
614
|
+
*/
|
|
615
|
+
DimensionConfigurations?: BodySectionRepeatDimensionConfiguration[];
|
|
616
|
+
/**
|
|
617
|
+
* @minLength `0`
|
|
618
|
+
* @maxLength `20`
|
|
619
|
+
*/
|
|
620
|
+
NonRepeatingVisuals?: string[];
|
|
621
|
+
PageBreakConfiguration?: BodySectionRepeatPageBreakConfiguration;
|
|
622
|
+
};
|
|
623
|
+
/**
|
|
624
|
+
* Type definition for `AWS::QuickSight::Dashboard.BodySectionRepeatDimensionConfiguration`.
|
|
625
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectionrepeatdimensionconfiguration.html}
|
|
626
|
+
*/
|
|
627
|
+
export type BodySectionRepeatDimensionConfiguration = {
|
|
628
|
+
DynamicCategoryDimensionConfiguration?: BodySectionDynamicCategoryDimensionConfiguration;
|
|
629
|
+
DynamicNumericDimensionConfiguration?: BodySectionDynamicNumericDimensionConfiguration;
|
|
630
|
+
};
|
|
631
|
+
/**
|
|
632
|
+
* Type definition for `AWS::QuickSight::Dashboard.BodySectionRepeatPageBreakConfiguration`.
|
|
633
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-bodysectionrepeatpagebreakconfiguration.html}
|
|
634
|
+
*/
|
|
635
|
+
export type BodySectionRepeatPageBreakConfiguration = {
|
|
636
|
+
After?: SectionAfterPageBreak;
|
|
637
|
+
};
|
|
570
638
|
/**
|
|
571
639
|
* Type definition for `AWS::QuickSight::Dashboard.BoxPlotAggregatedFieldWells`.
|
|
572
640
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-boxplotaggregatedfieldwells.html}
|
|
@@ -592,6 +660,7 @@ export type BoxPlotChartConfiguration = {
|
|
|
592
660
|
CategoryAxis?: AxisDisplayOptions;
|
|
593
661
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
594
662
|
FieldWells?: BoxPlotFieldWells;
|
|
663
|
+
Interactions?: VisualInteractionOptions;
|
|
595
664
|
Legend?: LegendOptions;
|
|
596
665
|
PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
|
|
597
666
|
PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
@@ -975,6 +1044,7 @@ export type ComboChartConfiguration = {
|
|
|
975
1044
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
976
1045
|
ColorLabelOptions?: ChartAxisLabelOptions;
|
|
977
1046
|
FieldWells?: ComboChartFieldWells;
|
|
1047
|
+
Interactions?: VisualInteractionOptions;
|
|
978
1048
|
Legend?: LegendOptions;
|
|
979
1049
|
LineDataLabels?: DataLabelOptions;
|
|
980
1050
|
PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
|
|
@@ -1188,6 +1258,13 @@ export type ConditionalFormattingSolidColor = {
|
|
|
1188
1258
|
*/
|
|
1189
1259
|
Expression: string;
|
|
1190
1260
|
};
|
|
1261
|
+
/**
|
|
1262
|
+
* Type definition for `AWS::QuickSight::Dashboard.ContextMenuOption`.
|
|
1263
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-contextmenuoption.html}
|
|
1264
|
+
*/
|
|
1265
|
+
export type ContextMenuOption = {
|
|
1266
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
1267
|
+
};
|
|
1191
1268
|
/**
|
|
1192
1269
|
* Type definition for `AWS::QuickSight::Dashboard.ContributionAnalysisDefault`.
|
|
1193
1270
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-contributionanalysisdefault.html}
|
|
@@ -1300,6 +1377,7 @@ export type CustomContentConfiguration = {
|
|
|
1300
1377
|
*/
|
|
1301
1378
|
ContentUrl?: string;
|
|
1302
1379
|
ImageScaling?: CustomContentImageScalingConfiguration;
|
|
1380
|
+
Interactions?: VisualInteractionOptions;
|
|
1303
1381
|
};
|
|
1304
1382
|
/**
|
|
1305
1383
|
* Type definition for `AWS::QuickSight::Dashboard.CustomContentImageScalingConfiguration`.
|
|
@@ -1971,11 +2049,13 @@ export type DateTimeParameterDeclaration = {
|
|
|
1971
2049
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datetimepickercontroldisplayoptions.html}
|
|
1972
2050
|
*/
|
|
1973
2051
|
export type DateTimePickerControlDisplayOptions = {
|
|
2052
|
+
DateIconVisibility?: Visibility;
|
|
1974
2053
|
/**
|
|
1975
2054
|
* @minLength `1`
|
|
1976
2055
|
* @maxLength `128`
|
|
1977
2056
|
*/
|
|
1978
2057
|
DateTimeFormat?: string;
|
|
2058
|
+
HelperTextVisibility?: Visibility;
|
|
1979
2059
|
InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
|
|
1980
2060
|
TitleOptions?: LabelOptions;
|
|
1981
2061
|
};
|
|
@@ -2210,6 +2290,11 @@ export type DestinationParameterValueConfiguration = {
|
|
|
2210
2290
|
SourceField?: string;
|
|
2211
2291
|
SourceParameterName?: string;
|
|
2212
2292
|
};
|
|
2293
|
+
/**
|
|
2294
|
+
* Type definition for `AWS::QuickSight::Dashboard.DigitGroupingStyle`.
|
|
2295
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-digitgroupingstyle.html}
|
|
2296
|
+
*/
|
|
2297
|
+
export type DigitGroupingStyle = "DEFAULT" | "LAKHS";
|
|
2213
2298
|
/**
|
|
2214
2299
|
* Type definition for `AWS::QuickSight::Dashboard.DimensionField`.
|
|
2215
2300
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dimensionfield.html}
|
|
@@ -2459,6 +2544,7 @@ export type FilledMapConditionalFormattingOption = {
|
|
|
2459
2544
|
*/
|
|
2460
2545
|
export type FilledMapConfiguration = {
|
|
2461
2546
|
FieldWells?: FilledMapFieldWells;
|
|
2547
|
+
Interactions?: VisualInteractionOptions;
|
|
2462
2548
|
Legend?: LegendOptions;
|
|
2463
2549
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
2464
2550
|
SortConfiguration?: FilledMapSortConfiguration;
|
|
@@ -2858,6 +2944,7 @@ export type FontConfiguration = {
|
|
|
2858
2944
|
*/
|
|
2859
2945
|
FontColor?: string;
|
|
2860
2946
|
FontDecoration?: FontDecoration;
|
|
2947
|
+
FontFamily?: string;
|
|
2861
2948
|
FontSize?: FontSize;
|
|
2862
2949
|
FontStyle?: FontStyle;
|
|
2863
2950
|
FontWeight?: FontWeight;
|
|
@@ -3088,6 +3175,7 @@ export type FunnelChartConfiguration = {
|
|
|
3088
3175
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
3089
3176
|
DataLabelOptions?: FunnelChartDataLabelOptions;
|
|
3090
3177
|
FieldWells?: FunnelChartFieldWells;
|
|
3178
|
+
Interactions?: VisualInteractionOptions;
|
|
3091
3179
|
SortConfiguration?: FunnelChartSortConfiguration;
|
|
3092
3180
|
Tooltip?: TooltipOptions;
|
|
3093
3181
|
ValueLabelOptions?: ChartAxisLabelOptions;
|
|
@@ -3170,6 +3258,20 @@ export type FunnelChartVisual = {
|
|
|
3170
3258
|
export type GaugeChartArcConditionalFormatting = {
|
|
3171
3259
|
ForegroundColor?: ConditionalFormattingColor;
|
|
3172
3260
|
};
|
|
3261
|
+
/**
|
|
3262
|
+
* Type definition for `AWS::QuickSight::Dashboard.GaugeChartColorConfiguration`.
|
|
3263
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartcolorconfiguration.html}
|
|
3264
|
+
*/
|
|
3265
|
+
export type GaugeChartColorConfiguration = {
|
|
3266
|
+
/**
|
|
3267
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
3268
|
+
*/
|
|
3269
|
+
BackgroundColor?: string;
|
|
3270
|
+
/**
|
|
3271
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
3272
|
+
*/
|
|
3273
|
+
ForegroundColor?: string;
|
|
3274
|
+
};
|
|
3173
3275
|
/**
|
|
3174
3276
|
* Type definition for `AWS::QuickSight::Dashboard.GaugeChartConditionalFormatting`.
|
|
3175
3277
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartconditionalformatting.html}
|
|
@@ -3194,9 +3296,11 @@ export type GaugeChartConditionalFormattingOption = {
|
|
|
3194
3296
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartconfiguration.html}
|
|
3195
3297
|
*/
|
|
3196
3298
|
export type GaugeChartConfiguration = {
|
|
3299
|
+
ColorConfiguration?: GaugeChartColorConfiguration;
|
|
3197
3300
|
DataLabels?: DataLabelOptions;
|
|
3198
3301
|
FieldWells?: GaugeChartFieldWells;
|
|
3199
3302
|
GaugeChartOptions?: GaugeChartOptions;
|
|
3303
|
+
Interactions?: VisualInteractionOptions;
|
|
3200
3304
|
TooltipOptions?: TooltipOptions;
|
|
3201
3305
|
VisualPalette?: VisualPalette;
|
|
3202
3306
|
};
|
|
@@ -3888,6 +3992,7 @@ export type HeatMapConfiguration = {
|
|
|
3888
3992
|
ColumnLabelOptions?: ChartAxisLabelOptions;
|
|
3889
3993
|
DataLabels?: DataLabelOptions;
|
|
3890
3994
|
FieldWells?: HeatMapFieldWells;
|
|
3995
|
+
Interactions?: VisualInteractionOptions;
|
|
3891
3996
|
Legend?: LegendOptions;
|
|
3892
3997
|
RowLabelOptions?: ChartAxisLabelOptions;
|
|
3893
3998
|
SortConfiguration?: HeatMapSortConfiguration;
|
|
@@ -3982,6 +4087,7 @@ export type HistogramConfiguration = {
|
|
|
3982
4087
|
BinOptions?: HistogramBinOptions;
|
|
3983
4088
|
DataLabels?: DataLabelOptions;
|
|
3984
4089
|
FieldWells?: HistogramFieldWells;
|
|
4090
|
+
Interactions?: VisualInteractionOptions;
|
|
3985
4091
|
Tooltip?: TooltipOptions;
|
|
3986
4092
|
VisualPalette?: VisualPalette;
|
|
3987
4093
|
XAxisDisplayOptions?: AxisDisplayOptions;
|
|
@@ -4113,6 +4219,7 @@ export type InsightConfiguration = {
|
|
|
4113
4219
|
*/
|
|
4114
4220
|
Computations?: Computation[];
|
|
4115
4221
|
CustomNarrative?: CustomNarrativeOptions;
|
|
4222
|
+
Interactions?: VisualInteractionOptions;
|
|
4116
4223
|
};
|
|
4117
4224
|
/**
|
|
4118
4225
|
* Type definition for `AWS::QuickSight::Dashboard.InsightVisual`.
|
|
@@ -4251,6 +4358,7 @@ export type KPIConditionalFormattingOption = {
|
|
|
4251
4358
|
*/
|
|
4252
4359
|
export type KPIConfiguration = {
|
|
4253
4360
|
FieldWells?: KPIFieldWells;
|
|
4361
|
+
Interactions?: VisualInteractionOptions;
|
|
4254
4362
|
KPIOptions?: KPIOptions;
|
|
4255
4363
|
SortConfiguration?: KPISortConfiguration;
|
|
4256
4364
|
};
|
|
@@ -4545,6 +4653,7 @@ export type LineChartConfiguration = {
|
|
|
4545
4653
|
* @maxLength `10`
|
|
4546
4654
|
*/
|
|
4547
4655
|
ForecastConfigurations?: ForecastConfiguration[];
|
|
4656
|
+
Interactions?: VisualInteractionOptions;
|
|
4548
4657
|
Legend?: LegendOptions;
|
|
4549
4658
|
PrimaryYAxisDisplayOptions?: LineSeriesAxisDisplayOptions;
|
|
4550
4659
|
PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
@@ -5495,6 +5604,7 @@ export type PieChartConfiguration = {
|
|
|
5495
5604
|
DataLabels?: DataLabelOptions;
|
|
5496
5605
|
DonutOptions?: DonutOptions;
|
|
5497
5606
|
FieldWells?: PieChartFieldWells;
|
|
5607
|
+
Interactions?: VisualInteractionOptions;
|
|
5498
5608
|
Legend?: LegendOptions;
|
|
5499
5609
|
SmallMultiplesOptions?: SmallMultiplesOptions;
|
|
5500
5610
|
SortConfiguration?: PieChartSortConfiguration;
|
|
@@ -5645,6 +5755,7 @@ export type PivotTableConditionalFormattingScopeRole = "FIELD" | "FIELD_TOTAL" |
|
|
|
5645
5755
|
export type PivotTableConfiguration = {
|
|
5646
5756
|
FieldOptions?: PivotTableFieldOptions;
|
|
5647
5757
|
FieldWells?: PivotTableFieldWells;
|
|
5758
|
+
Interactions?: VisualInteractionOptions;
|
|
5648
5759
|
PaginatedReportOptions?: PivotTablePaginatedReportOptions;
|
|
5649
5760
|
SortConfiguration?: PivotTableSortConfiguration;
|
|
5650
5761
|
TableOptions?: PivotTableOptions;
|
|
@@ -6067,6 +6178,7 @@ export type RadarChartConfiguration = {
|
|
|
6067
6178
|
ColorAxis?: AxisDisplayOptions;
|
|
6068
6179
|
ColorLabelOptions?: ChartAxisLabelOptions;
|
|
6069
6180
|
FieldWells?: RadarChartFieldWells;
|
|
6181
|
+
Interactions?: VisualInteractionOptions;
|
|
6070
6182
|
Legend?: LegendOptions;
|
|
6071
6183
|
Shape?: RadarChartShape;
|
|
6072
6184
|
SortConfiguration?: RadarChartSortConfiguration;
|
|
@@ -6418,6 +6530,7 @@ export type SankeyDiagramAggregatedFieldWells = {
|
|
|
6418
6530
|
export type SankeyDiagramChartConfiguration = {
|
|
6419
6531
|
DataLabels?: DataLabelOptions;
|
|
6420
6532
|
FieldWells?: SankeyDiagramFieldWells;
|
|
6533
|
+
Interactions?: VisualInteractionOptions;
|
|
6421
6534
|
SortConfiguration?: SankeyDiagramSortConfiguration;
|
|
6422
6535
|
};
|
|
6423
6536
|
/**
|
|
@@ -6503,7 +6616,9 @@ export type ScatterPlotCategoricallyAggregatedFieldWells = {
|
|
|
6503
6616
|
export type ScatterPlotConfiguration = {
|
|
6504
6617
|
DataLabels?: DataLabelOptions;
|
|
6505
6618
|
FieldWells?: ScatterPlotFieldWells;
|
|
6619
|
+
Interactions?: VisualInteractionOptions;
|
|
6506
6620
|
Legend?: LegendOptions;
|
|
6621
|
+
SortConfiguration?: ScatterPlotSortConfiguration;
|
|
6507
6622
|
Tooltip?: TooltipOptions;
|
|
6508
6623
|
VisualPalette?: VisualPalette;
|
|
6509
6624
|
XAxisDisplayOptions?: AxisDisplayOptions;
|
|
@@ -6519,6 +6634,13 @@ export type ScatterPlotFieldWells = {
|
|
|
6519
6634
|
ScatterPlotCategoricallyAggregatedFieldWells?: ScatterPlotCategoricallyAggregatedFieldWells;
|
|
6520
6635
|
ScatterPlotUnaggregatedFieldWells?: ScatterPlotUnaggregatedFieldWells;
|
|
6521
6636
|
};
|
|
6637
|
+
/**
|
|
6638
|
+
* Type definition for `AWS::QuickSight::Dashboard.ScatterPlotSortConfiguration`.
|
|
6639
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotsortconfiguration.html}
|
|
6640
|
+
*/
|
|
6641
|
+
export type ScatterPlotSortConfiguration = {
|
|
6642
|
+
ScatterPlotLimitConfiguration?: ItemsLimitConfiguration;
|
|
6643
|
+
};
|
|
6522
6644
|
/**
|
|
6523
6645
|
* Type definition for `AWS::QuickSight::Dashboard.ScatterPlotUnaggregatedFieldWells`.
|
|
6524
6646
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-scatterplotunaggregatedfieldwells.html}
|
|
@@ -6979,6 +7101,7 @@ export type SheetTextBox = {
|
|
|
6979
7101
|
* @maxLength `150000`
|
|
6980
7102
|
*/
|
|
6981
7103
|
Content?: string;
|
|
7104
|
+
Interactions?: any;
|
|
6982
7105
|
/**
|
|
6983
7106
|
* @minLength `1`
|
|
6984
7107
|
* @maxLength `512`
|
|
@@ -7378,6 +7501,7 @@ export type TableConditionalFormattingOption = {
|
|
|
7378
7501
|
export type TableConfiguration = {
|
|
7379
7502
|
FieldOptions?: TableFieldOptions;
|
|
7380
7503
|
FieldWells?: TableFieldWells;
|
|
7504
|
+
Interactions?: VisualInteractionOptions;
|
|
7381
7505
|
PaginatedReportOptions?: TablePaginatedReportOptions;
|
|
7382
7506
|
SortConfiguration?: TableSortConfiguration;
|
|
7383
7507
|
/**
|
|
@@ -7682,6 +7806,7 @@ export type TextWrap = "NONE" | "WRAP";
|
|
|
7682
7806
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-thousandseparatoroptions.html}
|
|
7683
7807
|
*/
|
|
7684
7808
|
export type ThousandSeparatorOptions = {
|
|
7809
|
+
GroupingStyle?: DigitGroupingStyle;
|
|
7685
7810
|
Symbol?: NumericSeparatorSymbol;
|
|
7686
7811
|
Visibility?: Visibility;
|
|
7687
7812
|
};
|
|
@@ -7974,6 +8099,7 @@ export type TreeMapConfiguration = {
|
|
|
7974
8099
|
DataLabels?: DataLabelOptions;
|
|
7975
8100
|
FieldWells?: TreeMapFieldWells;
|
|
7976
8101
|
GroupLabelOptions?: ChartAxisLabelOptions;
|
|
8102
|
+
Interactions?: VisualInteractionOptions;
|
|
7977
8103
|
Legend?: LegendOptions;
|
|
7978
8104
|
SizeLabelOptions?: ChartAxisLabelOptions;
|
|
7979
8105
|
SortConfiguration?: TreeMapSortConfiguration;
|
|
@@ -8184,7 +8310,7 @@ export type VisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
|
|
8184
8310
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualinteractionoptions.html}
|
|
8185
8311
|
*/
|
|
8186
8312
|
export type VisualInteractionOptions = {
|
|
8187
|
-
ContextMenuOption?:
|
|
8313
|
+
ContextMenuOption?: ContextMenuOption;
|
|
8188
8314
|
VisualMenuOption?: VisualMenuOption;
|
|
8189
8315
|
};
|
|
8190
8316
|
/**
|
|
@@ -8263,6 +8389,7 @@ export type WaterfallChartConfiguration = {
|
|
|
8263
8389
|
ColorConfiguration?: WaterfallChartColorConfiguration;
|
|
8264
8390
|
DataLabels?: DataLabelOptions;
|
|
8265
8391
|
FieldWells?: WaterfallChartFieldWells;
|
|
8392
|
+
Interactions?: VisualInteractionOptions;
|
|
8266
8393
|
Legend?: LegendOptions;
|
|
8267
8394
|
PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
|
|
8268
8395
|
PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
@@ -8389,6 +8516,7 @@ export type WordCloudAggregatedFieldWells = {
|
|
|
8389
8516
|
export type WordCloudChartConfiguration = {
|
|
8390
8517
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
8391
8518
|
FieldWells?: WordCloudFieldWells;
|
|
8519
|
+
Interactions?: VisualInteractionOptions;
|
|
8392
8520
|
SortConfiguration?: WordCloudSortConfiguration;
|
|
8393
8521
|
WordCloudOptions?: WordCloudOptions;
|
|
8394
8522
|
};
|