@awboost/cfn-resource-types 0.1.276 → 0.1.278
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-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-RDS-DBInstance.d.ts +6 -1
- package/lib/AWS-RDS-DBParameterGroup.d.ts +1 -1
- package/lib/AWS-Transfer-Agreement.d.ts +31 -1
- package/package.json +1 -1
|
@@ -436,6 +436,7 @@ export type BarChartConfiguration = {
|
|
|
436
436
|
ContributionAnalysisDefaults?: ContributionAnalysisDefault[];
|
|
437
437
|
DataLabels?: DataLabelOptions;
|
|
438
438
|
FieldWells?: BarChartFieldWells;
|
|
439
|
+
Interactions?: VisualInteractionOptions;
|
|
439
440
|
Legend?: LegendOptions;
|
|
440
441
|
Orientation?: BarChartOrientation;
|
|
441
442
|
/**
|
|
@@ -558,6 +559,7 @@ export type BinWidthOptions = {
|
|
|
558
559
|
export type BodySectionConfiguration = {
|
|
559
560
|
Content: BodySectionContent;
|
|
560
561
|
PageBreakConfiguration?: SectionPageBreakConfiguration;
|
|
562
|
+
RepeatConfiguration?: BodySectionRepeatConfiguration;
|
|
561
563
|
/**
|
|
562
564
|
* @minLength `1`
|
|
563
565
|
* @maxLength `512`
|
|
@@ -573,6 +575,72 @@ export type BodySectionConfiguration = {
|
|
|
573
575
|
export type BodySectionContent = {
|
|
574
576
|
Layout?: SectionLayoutConfiguration;
|
|
575
577
|
};
|
|
578
|
+
/**
|
|
579
|
+
* Type definition for `AWS::QuickSight::Analysis.BodySectionDynamicCategoryDimensionConfiguration`.
|
|
580
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectiondynamiccategorydimensionconfiguration.html}
|
|
581
|
+
*/
|
|
582
|
+
export type BodySectionDynamicCategoryDimensionConfiguration = {
|
|
583
|
+
Column: ColumnIdentifier;
|
|
584
|
+
/**
|
|
585
|
+
* @min `1`
|
|
586
|
+
* @max `1000`
|
|
587
|
+
*/
|
|
588
|
+
Limit?: number;
|
|
589
|
+
/**
|
|
590
|
+
* @minLength `0`
|
|
591
|
+
* @maxLength `100`
|
|
592
|
+
*/
|
|
593
|
+
SortByMetrics?: ColumnSort[];
|
|
594
|
+
};
|
|
595
|
+
/**
|
|
596
|
+
* Type definition for `AWS::QuickSight::Analysis.BodySectionDynamicNumericDimensionConfiguration`.
|
|
597
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectiondynamicnumericdimensionconfiguration.html}
|
|
598
|
+
*/
|
|
599
|
+
export type BodySectionDynamicNumericDimensionConfiguration = {
|
|
600
|
+
Column: ColumnIdentifier;
|
|
601
|
+
/**
|
|
602
|
+
* @min `1`
|
|
603
|
+
* @max `1000`
|
|
604
|
+
*/
|
|
605
|
+
Limit?: number;
|
|
606
|
+
/**
|
|
607
|
+
* @minLength `0`
|
|
608
|
+
* @maxLength `100`
|
|
609
|
+
*/
|
|
610
|
+
SortByMetrics?: ColumnSort[];
|
|
611
|
+
};
|
|
612
|
+
/**
|
|
613
|
+
* Type definition for `AWS::QuickSight::Analysis.BodySectionRepeatConfiguration`.
|
|
614
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectionrepeatconfiguration.html}
|
|
615
|
+
*/
|
|
616
|
+
export type BodySectionRepeatConfiguration = {
|
|
617
|
+
/**
|
|
618
|
+
* @minLength `0`
|
|
619
|
+
* @maxLength `3`
|
|
620
|
+
*/
|
|
621
|
+
DimensionConfigurations?: BodySectionRepeatDimensionConfiguration[];
|
|
622
|
+
/**
|
|
623
|
+
* @minLength `0`
|
|
624
|
+
* @maxLength `20`
|
|
625
|
+
*/
|
|
626
|
+
NonRepeatingVisuals?: string[];
|
|
627
|
+
PageBreakConfiguration?: BodySectionRepeatPageBreakConfiguration;
|
|
628
|
+
};
|
|
629
|
+
/**
|
|
630
|
+
* Type definition for `AWS::QuickSight::Analysis.BodySectionRepeatDimensionConfiguration`.
|
|
631
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectionrepeatdimensionconfiguration.html}
|
|
632
|
+
*/
|
|
633
|
+
export type BodySectionRepeatDimensionConfiguration = {
|
|
634
|
+
DynamicCategoryDimensionConfiguration?: BodySectionDynamicCategoryDimensionConfiguration;
|
|
635
|
+
DynamicNumericDimensionConfiguration?: BodySectionDynamicNumericDimensionConfiguration;
|
|
636
|
+
};
|
|
637
|
+
/**
|
|
638
|
+
* Type definition for `AWS::QuickSight::Analysis.BodySectionRepeatPageBreakConfiguration`.
|
|
639
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-bodysectionrepeatpagebreakconfiguration.html}
|
|
640
|
+
*/
|
|
641
|
+
export type BodySectionRepeatPageBreakConfiguration = {
|
|
642
|
+
After?: SectionAfterPageBreak;
|
|
643
|
+
};
|
|
576
644
|
/**
|
|
577
645
|
* Type definition for `AWS::QuickSight::Analysis.BoxPlotAggregatedFieldWells`.
|
|
578
646
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-boxplotaggregatedfieldwells.html}
|
|
@@ -598,6 +666,7 @@ export type BoxPlotChartConfiguration = {
|
|
|
598
666
|
CategoryAxis?: AxisDisplayOptions;
|
|
599
667
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
600
668
|
FieldWells?: BoxPlotFieldWells;
|
|
669
|
+
Interactions?: VisualInteractionOptions;
|
|
601
670
|
Legend?: LegendOptions;
|
|
602
671
|
PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
|
|
603
672
|
PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
@@ -981,6 +1050,7 @@ export type ComboChartConfiguration = {
|
|
|
981
1050
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
982
1051
|
ColorLabelOptions?: ChartAxisLabelOptions;
|
|
983
1052
|
FieldWells?: ComboChartFieldWells;
|
|
1053
|
+
Interactions?: VisualInteractionOptions;
|
|
984
1054
|
Legend?: LegendOptions;
|
|
985
1055
|
LineDataLabels?: DataLabelOptions;
|
|
986
1056
|
PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
|
|
@@ -1194,6 +1264,13 @@ export type ConditionalFormattingSolidColor = {
|
|
|
1194
1264
|
*/
|
|
1195
1265
|
Expression: string;
|
|
1196
1266
|
};
|
|
1267
|
+
/**
|
|
1268
|
+
* Type definition for `AWS::QuickSight::Analysis.ContextMenuOption`.
|
|
1269
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-contextmenuoption.html}
|
|
1270
|
+
*/
|
|
1271
|
+
export type ContextMenuOption = {
|
|
1272
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
1273
|
+
};
|
|
1197
1274
|
/**
|
|
1198
1275
|
* Type definition for `AWS::QuickSight::Analysis.ContributionAnalysisDefault`.
|
|
1199
1276
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-contributionanalysisdefault.html}
|
|
@@ -1306,6 +1383,7 @@ export type CustomContentConfiguration = {
|
|
|
1306
1383
|
*/
|
|
1307
1384
|
ContentUrl?: string;
|
|
1308
1385
|
ImageScaling?: CustomContentImageScalingConfiguration;
|
|
1386
|
+
Interactions?: VisualInteractionOptions;
|
|
1309
1387
|
};
|
|
1310
1388
|
/**
|
|
1311
1389
|
* Type definition for `AWS::QuickSight::Analysis.CustomContentImageScalingConfiguration`.
|
|
@@ -1745,11 +1823,13 @@ export type DateTimeParameterDeclaration = {
|
|
|
1745
1823
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datetimepickercontroldisplayoptions.html}
|
|
1746
1824
|
*/
|
|
1747
1825
|
export type DateTimePickerControlDisplayOptions = {
|
|
1826
|
+
DateIconVisibility?: Visibility;
|
|
1748
1827
|
/**
|
|
1749
1828
|
* @minLength `1`
|
|
1750
1829
|
* @maxLength `128`
|
|
1751
1830
|
*/
|
|
1752
1831
|
DateTimeFormat?: string;
|
|
1832
|
+
HelperTextVisibility?: Visibility;
|
|
1753
1833
|
InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
|
|
1754
1834
|
TitleOptions?: LabelOptions;
|
|
1755
1835
|
};
|
|
@@ -1984,6 +2064,11 @@ export type DestinationParameterValueConfiguration = {
|
|
|
1984
2064
|
SourceField?: string;
|
|
1985
2065
|
SourceParameterName?: string;
|
|
1986
2066
|
};
|
|
2067
|
+
/**
|
|
2068
|
+
* Type definition for `AWS::QuickSight::Analysis.DigitGroupingStyle`.
|
|
2069
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-digitgroupingstyle.html}
|
|
2070
|
+
*/
|
|
2071
|
+
export type DigitGroupingStyle = "DEFAULT" | "LAKHS";
|
|
1987
2072
|
/**
|
|
1988
2073
|
* Type definition for `AWS::QuickSight::Analysis.DimensionField`.
|
|
1989
2074
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-dimensionfield.html}
|
|
@@ -2209,6 +2294,7 @@ export type FilledMapConditionalFormattingOption = {
|
|
|
2209
2294
|
*/
|
|
2210
2295
|
export type FilledMapConfiguration = {
|
|
2211
2296
|
FieldWells?: FilledMapFieldWells;
|
|
2297
|
+
Interactions?: VisualInteractionOptions;
|
|
2212
2298
|
Legend?: LegendOptions;
|
|
2213
2299
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
2214
2300
|
SortConfiguration?: FilledMapSortConfiguration;
|
|
@@ -2608,6 +2694,7 @@ export type FontConfiguration = {
|
|
|
2608
2694
|
*/
|
|
2609
2695
|
FontColor?: string;
|
|
2610
2696
|
FontDecoration?: FontDecoration;
|
|
2697
|
+
FontFamily?: string;
|
|
2611
2698
|
FontSize?: FontSize;
|
|
2612
2699
|
FontStyle?: FontStyle;
|
|
2613
2700
|
FontWeight?: FontWeight;
|
|
@@ -2838,6 +2925,7 @@ export type FunnelChartConfiguration = {
|
|
|
2838
2925
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
2839
2926
|
DataLabelOptions?: FunnelChartDataLabelOptions;
|
|
2840
2927
|
FieldWells?: FunnelChartFieldWells;
|
|
2928
|
+
Interactions?: VisualInteractionOptions;
|
|
2841
2929
|
SortConfiguration?: FunnelChartSortConfiguration;
|
|
2842
2930
|
Tooltip?: TooltipOptions;
|
|
2843
2931
|
ValueLabelOptions?: ChartAxisLabelOptions;
|
|
@@ -2920,6 +3008,20 @@ export type FunnelChartVisual = {
|
|
|
2920
3008
|
export type GaugeChartArcConditionalFormatting = {
|
|
2921
3009
|
ForegroundColor?: ConditionalFormattingColor;
|
|
2922
3010
|
};
|
|
3011
|
+
/**
|
|
3012
|
+
* Type definition for `AWS::QuickSight::Analysis.GaugeChartColorConfiguration`.
|
|
3013
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-gaugechartcolorconfiguration.html}
|
|
3014
|
+
*/
|
|
3015
|
+
export type GaugeChartColorConfiguration = {
|
|
3016
|
+
/**
|
|
3017
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
3018
|
+
*/
|
|
3019
|
+
BackgroundColor?: string;
|
|
3020
|
+
/**
|
|
3021
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
3022
|
+
*/
|
|
3023
|
+
ForegroundColor?: string;
|
|
3024
|
+
};
|
|
2923
3025
|
/**
|
|
2924
3026
|
* Type definition for `AWS::QuickSight::Analysis.GaugeChartConditionalFormatting`.
|
|
2925
3027
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-gaugechartconditionalformatting.html}
|
|
@@ -2944,9 +3046,11 @@ export type GaugeChartConditionalFormattingOption = {
|
|
|
2944
3046
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-gaugechartconfiguration.html}
|
|
2945
3047
|
*/
|
|
2946
3048
|
export type GaugeChartConfiguration = {
|
|
3049
|
+
ColorConfiguration?: GaugeChartColorConfiguration;
|
|
2947
3050
|
DataLabels?: DataLabelOptions;
|
|
2948
3051
|
FieldWells?: GaugeChartFieldWells;
|
|
2949
3052
|
GaugeChartOptions?: GaugeChartOptions;
|
|
3053
|
+
Interactions?: VisualInteractionOptions;
|
|
2950
3054
|
TooltipOptions?: TooltipOptions;
|
|
2951
3055
|
VisualPalette?: VisualPalette;
|
|
2952
3056
|
};
|
|
@@ -3638,6 +3742,7 @@ export type HeatMapConfiguration = {
|
|
|
3638
3742
|
ColumnLabelOptions?: ChartAxisLabelOptions;
|
|
3639
3743
|
DataLabels?: DataLabelOptions;
|
|
3640
3744
|
FieldWells?: HeatMapFieldWells;
|
|
3745
|
+
Interactions?: VisualInteractionOptions;
|
|
3641
3746
|
Legend?: LegendOptions;
|
|
3642
3747
|
RowLabelOptions?: ChartAxisLabelOptions;
|
|
3643
3748
|
SortConfiguration?: HeatMapSortConfiguration;
|
|
@@ -3732,6 +3837,7 @@ export type HistogramConfiguration = {
|
|
|
3732
3837
|
BinOptions?: HistogramBinOptions;
|
|
3733
3838
|
DataLabels?: DataLabelOptions;
|
|
3734
3839
|
FieldWells?: HistogramFieldWells;
|
|
3840
|
+
Interactions?: VisualInteractionOptions;
|
|
3735
3841
|
Tooltip?: TooltipOptions;
|
|
3736
3842
|
VisualPalette?: VisualPalette;
|
|
3737
3843
|
XAxisDisplayOptions?: AxisDisplayOptions;
|
|
@@ -3863,6 +3969,7 @@ export type InsightConfiguration = {
|
|
|
3863
3969
|
*/
|
|
3864
3970
|
Computations?: Computation[];
|
|
3865
3971
|
CustomNarrative?: CustomNarrativeOptions;
|
|
3972
|
+
Interactions?: VisualInteractionOptions;
|
|
3866
3973
|
};
|
|
3867
3974
|
/**
|
|
3868
3975
|
* Type definition for `AWS::QuickSight::Analysis.InsightVisual`.
|
|
@@ -4001,6 +4108,7 @@ export type KPIConditionalFormattingOption = {
|
|
|
4001
4108
|
*/
|
|
4002
4109
|
export type KPIConfiguration = {
|
|
4003
4110
|
FieldWells?: KPIFieldWells;
|
|
4111
|
+
Interactions?: VisualInteractionOptions;
|
|
4004
4112
|
KPIOptions?: KPIOptions;
|
|
4005
4113
|
SortConfiguration?: KPISortConfiguration;
|
|
4006
4114
|
};
|
|
@@ -4295,6 +4403,7 @@ export type LineChartConfiguration = {
|
|
|
4295
4403
|
* @maxLength `10`
|
|
4296
4404
|
*/
|
|
4297
4405
|
ForecastConfigurations?: ForecastConfiguration[];
|
|
4406
|
+
Interactions?: VisualInteractionOptions;
|
|
4298
4407
|
Legend?: LegendOptions;
|
|
4299
4408
|
PrimaryYAxisDisplayOptions?: LineSeriesAxisDisplayOptions;
|
|
4300
4409
|
PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
@@ -5234,6 +5343,7 @@ export type PieChartConfiguration = {
|
|
|
5234
5343
|
DataLabels?: DataLabelOptions;
|
|
5235
5344
|
DonutOptions?: DonutOptions;
|
|
5236
5345
|
FieldWells?: PieChartFieldWells;
|
|
5346
|
+
Interactions?: VisualInteractionOptions;
|
|
5237
5347
|
Legend?: LegendOptions;
|
|
5238
5348
|
SmallMultiplesOptions?: SmallMultiplesOptions;
|
|
5239
5349
|
SortConfiguration?: PieChartSortConfiguration;
|
|
@@ -5384,6 +5494,7 @@ export type PivotTableConditionalFormattingScopeRole = "FIELD" | "FIELD_TOTAL" |
|
|
|
5384
5494
|
export type PivotTableConfiguration = {
|
|
5385
5495
|
FieldOptions?: PivotTableFieldOptions;
|
|
5386
5496
|
FieldWells?: PivotTableFieldWells;
|
|
5497
|
+
Interactions?: VisualInteractionOptions;
|
|
5387
5498
|
PaginatedReportOptions?: PivotTablePaginatedReportOptions;
|
|
5388
5499
|
SortConfiguration?: PivotTableSortConfiguration;
|
|
5389
5500
|
TableOptions?: PivotTableOptions;
|
|
@@ -5818,6 +5929,7 @@ export type RadarChartConfiguration = {
|
|
|
5818
5929
|
ColorAxis?: AxisDisplayOptions;
|
|
5819
5930
|
ColorLabelOptions?: ChartAxisLabelOptions;
|
|
5820
5931
|
FieldWells?: RadarChartFieldWells;
|
|
5932
|
+
Interactions?: VisualInteractionOptions;
|
|
5821
5933
|
Legend?: LegendOptions;
|
|
5822
5934
|
Shape?: RadarChartShape;
|
|
5823
5935
|
SortConfiguration?: RadarChartSortConfiguration;
|
|
@@ -6169,6 +6281,7 @@ export type SankeyDiagramAggregatedFieldWells = {
|
|
|
6169
6281
|
export type SankeyDiagramChartConfiguration = {
|
|
6170
6282
|
DataLabels?: DataLabelOptions;
|
|
6171
6283
|
FieldWells?: SankeyDiagramFieldWells;
|
|
6284
|
+
Interactions?: VisualInteractionOptions;
|
|
6172
6285
|
SortConfiguration?: SankeyDiagramSortConfiguration;
|
|
6173
6286
|
};
|
|
6174
6287
|
/**
|
|
@@ -6254,7 +6367,9 @@ export type ScatterPlotCategoricallyAggregatedFieldWells = {
|
|
|
6254
6367
|
export type ScatterPlotConfiguration = {
|
|
6255
6368
|
DataLabels?: DataLabelOptions;
|
|
6256
6369
|
FieldWells?: ScatterPlotFieldWells;
|
|
6370
|
+
Interactions?: VisualInteractionOptions;
|
|
6257
6371
|
Legend?: LegendOptions;
|
|
6372
|
+
SortConfiguration?: ScatterPlotSortConfiguration;
|
|
6258
6373
|
Tooltip?: TooltipOptions;
|
|
6259
6374
|
VisualPalette?: VisualPalette;
|
|
6260
6375
|
XAxisDisplayOptions?: AxisDisplayOptions;
|
|
@@ -6270,6 +6385,13 @@ export type ScatterPlotFieldWells = {
|
|
|
6270
6385
|
ScatterPlotCategoricallyAggregatedFieldWells?: ScatterPlotCategoricallyAggregatedFieldWells;
|
|
6271
6386
|
ScatterPlotUnaggregatedFieldWells?: ScatterPlotUnaggregatedFieldWells;
|
|
6272
6387
|
};
|
|
6388
|
+
/**
|
|
6389
|
+
* Type definition for `AWS::QuickSight::Analysis.ScatterPlotSortConfiguration`.
|
|
6390
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-scatterplotsortconfiguration.html}
|
|
6391
|
+
*/
|
|
6392
|
+
export type ScatterPlotSortConfiguration = {
|
|
6393
|
+
ScatterPlotLimitConfiguration?: ItemsLimitConfiguration;
|
|
6394
|
+
};
|
|
6273
6395
|
/**
|
|
6274
6396
|
* Type definition for `AWS::QuickSight::Analysis.ScatterPlotUnaggregatedFieldWells`.
|
|
6275
6397
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-scatterplotunaggregatedfieldwells.html}
|
|
@@ -6714,6 +6836,7 @@ export type SheetTextBox = {
|
|
|
6714
6836
|
* @maxLength `150000`
|
|
6715
6837
|
*/
|
|
6716
6838
|
Content?: string;
|
|
6839
|
+
Interactions?: any;
|
|
6717
6840
|
/**
|
|
6718
6841
|
* @minLength `1`
|
|
6719
6842
|
* @maxLength `512`
|
|
@@ -7113,6 +7236,7 @@ export type TableConditionalFormattingOption = {
|
|
|
7113
7236
|
export type TableConfiguration = {
|
|
7114
7237
|
FieldOptions?: TableFieldOptions;
|
|
7115
7238
|
FieldWells?: TableFieldWells;
|
|
7239
|
+
Interactions?: VisualInteractionOptions;
|
|
7116
7240
|
PaginatedReportOptions?: TablePaginatedReportOptions;
|
|
7117
7241
|
SortConfiguration?: TableSortConfiguration;
|
|
7118
7242
|
/**
|
|
@@ -7417,6 +7541,7 @@ export type TextWrap = "NONE" | "WRAP";
|
|
|
7417
7541
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-thousandseparatoroptions.html}
|
|
7418
7542
|
*/
|
|
7419
7543
|
export type ThousandSeparatorOptions = {
|
|
7544
|
+
GroupingStyle?: DigitGroupingStyle;
|
|
7420
7545
|
Symbol?: NumericSeparatorSymbol;
|
|
7421
7546
|
Visibility?: Visibility;
|
|
7422
7547
|
};
|
|
@@ -7709,6 +7834,7 @@ export type TreeMapConfiguration = {
|
|
|
7709
7834
|
DataLabels?: DataLabelOptions;
|
|
7710
7835
|
FieldWells?: TreeMapFieldWells;
|
|
7711
7836
|
GroupLabelOptions?: ChartAxisLabelOptions;
|
|
7837
|
+
Interactions?: VisualInteractionOptions;
|
|
7712
7838
|
Legend?: LegendOptions;
|
|
7713
7839
|
SizeLabelOptions?: ChartAxisLabelOptions;
|
|
7714
7840
|
SortConfiguration?: TreeMapSortConfiguration;
|
|
@@ -7912,8 +8038,15 @@ export type VisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
|
|
7912
8038
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualinteractionoptions.html}
|
|
7913
8039
|
*/
|
|
7914
8040
|
export type VisualInteractionOptions = {
|
|
7915
|
-
ContextMenuOption?:
|
|
7916
|
-
VisualMenuOption?:
|
|
8041
|
+
ContextMenuOption?: ContextMenuOption;
|
|
8042
|
+
VisualMenuOption?: VisualMenuOption;
|
|
8043
|
+
};
|
|
8044
|
+
/**
|
|
8045
|
+
* Type definition for `AWS::QuickSight::Analysis.VisualMenuOption`.
|
|
8046
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualmenuoption.html}
|
|
8047
|
+
*/
|
|
8048
|
+
export type VisualMenuOption = {
|
|
8049
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
7917
8050
|
};
|
|
7918
8051
|
/**
|
|
7919
8052
|
* Type definition for `AWS::QuickSight::Analysis.VisualPalette`.
|
|
@@ -7984,6 +8117,7 @@ export type WaterfallChartConfiguration = {
|
|
|
7984
8117
|
ColorConfiguration?: WaterfallChartColorConfiguration;
|
|
7985
8118
|
DataLabels?: DataLabelOptions;
|
|
7986
8119
|
FieldWells?: WaterfallChartFieldWells;
|
|
8120
|
+
Interactions?: VisualInteractionOptions;
|
|
7987
8121
|
Legend?: LegendOptions;
|
|
7988
8122
|
PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
|
|
7989
8123
|
PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
@@ -8110,6 +8244,7 @@ export type WordCloudAggregatedFieldWells = {
|
|
|
8110
8244
|
export type WordCloudChartConfiguration = {
|
|
8111
8245
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
8112
8246
|
FieldWells?: WordCloudFieldWells;
|
|
8247
|
+
Interactions?: VisualInteractionOptions;
|
|
8113
8248
|
SortConfiguration?: WordCloudSortConfiguration;
|
|
8114
8249
|
WordCloudOptions?: WordCloudOptions;
|
|
8115
8250
|
};
|