@awboost/cfn-resource-types 0.1.277 → 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-Transfer-Agreement.d.ts +31 -1
- package/package.json +1 -1
|
@@ -447,6 +447,7 @@ export type BarChartConfiguration = {
|
|
|
447
447
|
ContributionAnalysisDefaults?: ContributionAnalysisDefault[];
|
|
448
448
|
DataLabels?: DataLabelOptions;
|
|
449
449
|
FieldWells?: BarChartFieldWells;
|
|
450
|
+
Interactions?: VisualInteractionOptions;
|
|
450
451
|
Legend?: LegendOptions;
|
|
451
452
|
Orientation?: BarChartOrientation;
|
|
452
453
|
/**
|
|
@@ -569,6 +570,7 @@ export type BinWidthOptions = {
|
|
|
569
570
|
export type BodySectionConfiguration = {
|
|
570
571
|
Content: BodySectionContent;
|
|
571
572
|
PageBreakConfiguration?: SectionPageBreakConfiguration;
|
|
573
|
+
RepeatConfiguration?: BodySectionRepeatConfiguration;
|
|
572
574
|
/**
|
|
573
575
|
* @minLength `1`
|
|
574
576
|
* @maxLength `512`
|
|
@@ -584,6 +586,72 @@ export type BodySectionConfiguration = {
|
|
|
584
586
|
export type BodySectionContent = {
|
|
585
587
|
Layout?: SectionLayoutConfiguration;
|
|
586
588
|
};
|
|
589
|
+
/**
|
|
590
|
+
* Type definition for `AWS::QuickSight::Template.BodySectionDynamicCategoryDimensionConfiguration`.
|
|
591
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectiondynamiccategorydimensionconfiguration.html}
|
|
592
|
+
*/
|
|
593
|
+
export type BodySectionDynamicCategoryDimensionConfiguration = {
|
|
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::Template.BodySectionDynamicNumericDimensionConfiguration`.
|
|
608
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectiondynamicnumericdimensionconfiguration.html}
|
|
609
|
+
*/
|
|
610
|
+
export type BodySectionDynamicNumericDimensionConfiguration = {
|
|
611
|
+
Column: ColumnIdentifier;
|
|
612
|
+
/**
|
|
613
|
+
* @min `1`
|
|
614
|
+
* @max `1000`
|
|
615
|
+
*/
|
|
616
|
+
Limit?: number;
|
|
617
|
+
/**
|
|
618
|
+
* @minLength `0`
|
|
619
|
+
* @maxLength `100`
|
|
620
|
+
*/
|
|
621
|
+
SortByMetrics?: ColumnSort[];
|
|
622
|
+
};
|
|
623
|
+
/**
|
|
624
|
+
* Type definition for `AWS::QuickSight::Template.BodySectionRepeatConfiguration`.
|
|
625
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectionrepeatconfiguration.html}
|
|
626
|
+
*/
|
|
627
|
+
export type BodySectionRepeatConfiguration = {
|
|
628
|
+
/**
|
|
629
|
+
* @minLength `0`
|
|
630
|
+
* @maxLength `3`
|
|
631
|
+
*/
|
|
632
|
+
DimensionConfigurations?: BodySectionRepeatDimensionConfiguration[];
|
|
633
|
+
/**
|
|
634
|
+
* @minLength `0`
|
|
635
|
+
* @maxLength `20`
|
|
636
|
+
*/
|
|
637
|
+
NonRepeatingVisuals?: string[];
|
|
638
|
+
PageBreakConfiguration?: BodySectionRepeatPageBreakConfiguration;
|
|
639
|
+
};
|
|
640
|
+
/**
|
|
641
|
+
* Type definition for `AWS::QuickSight::Template.BodySectionRepeatDimensionConfiguration`.
|
|
642
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectionrepeatdimensionconfiguration.html}
|
|
643
|
+
*/
|
|
644
|
+
export type BodySectionRepeatDimensionConfiguration = {
|
|
645
|
+
DynamicCategoryDimensionConfiguration?: BodySectionDynamicCategoryDimensionConfiguration;
|
|
646
|
+
DynamicNumericDimensionConfiguration?: BodySectionDynamicNumericDimensionConfiguration;
|
|
647
|
+
};
|
|
648
|
+
/**
|
|
649
|
+
* Type definition for `AWS::QuickSight::Template.BodySectionRepeatPageBreakConfiguration`.
|
|
650
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-bodysectionrepeatpagebreakconfiguration.html}
|
|
651
|
+
*/
|
|
652
|
+
export type BodySectionRepeatPageBreakConfiguration = {
|
|
653
|
+
After?: SectionAfterPageBreak;
|
|
654
|
+
};
|
|
587
655
|
/**
|
|
588
656
|
* Type definition for `AWS::QuickSight::Template.BoxPlotAggregatedFieldWells`.
|
|
589
657
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotaggregatedfieldwells.html}
|
|
@@ -609,6 +677,7 @@ export type BoxPlotChartConfiguration = {
|
|
|
609
677
|
CategoryAxis?: AxisDisplayOptions;
|
|
610
678
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
611
679
|
FieldWells?: BoxPlotFieldWells;
|
|
680
|
+
Interactions?: VisualInteractionOptions;
|
|
612
681
|
Legend?: LegendOptions;
|
|
613
682
|
PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
|
|
614
683
|
PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
@@ -1039,6 +1108,7 @@ export type ComboChartConfiguration = {
|
|
|
1039
1108
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
1040
1109
|
ColorLabelOptions?: ChartAxisLabelOptions;
|
|
1041
1110
|
FieldWells?: ComboChartFieldWells;
|
|
1111
|
+
Interactions?: VisualInteractionOptions;
|
|
1042
1112
|
Legend?: LegendOptions;
|
|
1043
1113
|
LineDataLabels?: DataLabelOptions;
|
|
1044
1114
|
PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
|
|
@@ -1252,6 +1322,13 @@ export type ConditionalFormattingSolidColor = {
|
|
|
1252
1322
|
*/
|
|
1253
1323
|
Expression: string;
|
|
1254
1324
|
};
|
|
1325
|
+
/**
|
|
1326
|
+
* Type definition for `AWS::QuickSight::Template.ContextMenuOption`.
|
|
1327
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-contextmenuoption.html}
|
|
1328
|
+
*/
|
|
1329
|
+
export type ContextMenuOption = {
|
|
1330
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
1331
|
+
};
|
|
1255
1332
|
/**
|
|
1256
1333
|
* Type definition for `AWS::QuickSight::Template.ContributionAnalysisDefault`.
|
|
1257
1334
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-contributionanalysisdefault.html}
|
|
@@ -1364,6 +1441,7 @@ export type CustomContentConfiguration = {
|
|
|
1364
1441
|
*/
|
|
1365
1442
|
ContentUrl?: string;
|
|
1366
1443
|
ImageScaling?: CustomContentImageScalingConfiguration;
|
|
1444
|
+
Interactions?: VisualInteractionOptions;
|
|
1367
1445
|
};
|
|
1368
1446
|
/**
|
|
1369
1447
|
* Type definition for `AWS::QuickSight::Template.CustomContentImageScalingConfiguration`.
|
|
@@ -1809,11 +1887,13 @@ export type DateTimeParameterDeclaration = {
|
|
|
1809
1887
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datetimepickercontroldisplayoptions.html}
|
|
1810
1888
|
*/
|
|
1811
1889
|
export type DateTimePickerControlDisplayOptions = {
|
|
1890
|
+
DateIconVisibility?: any;
|
|
1812
1891
|
/**
|
|
1813
1892
|
* @minLength `1`
|
|
1814
1893
|
* @maxLength `128`
|
|
1815
1894
|
*/
|
|
1816
1895
|
DateTimeFormat?: string;
|
|
1896
|
+
HelperTextVisibility?: any;
|
|
1817
1897
|
InfoIconLabelOptions?: SheetControlInfoIconLabelOptions;
|
|
1818
1898
|
TitleOptions?: LabelOptions;
|
|
1819
1899
|
};
|
|
@@ -2032,6 +2112,11 @@ export type DestinationParameterValueConfiguration = {
|
|
|
2032
2112
|
SourceField?: string;
|
|
2033
2113
|
SourceParameterName?: string;
|
|
2034
2114
|
};
|
|
2115
|
+
/**
|
|
2116
|
+
* Type definition for `AWS::QuickSight::Template.DigitGroupingStyle`.
|
|
2117
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-digitgroupingstyle.html}
|
|
2118
|
+
*/
|
|
2119
|
+
export type DigitGroupingStyle = "DEFAULT" | "LAKHS";
|
|
2035
2120
|
/**
|
|
2036
2121
|
* Type definition for `AWS::QuickSight::Template.DimensionField`.
|
|
2037
2122
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-dimensionfield.html}
|
|
@@ -2257,6 +2342,7 @@ export type FilledMapConditionalFormattingOption = {
|
|
|
2257
2342
|
*/
|
|
2258
2343
|
export type FilledMapConfiguration = {
|
|
2259
2344
|
FieldWells?: FilledMapFieldWells;
|
|
2345
|
+
Interactions?: VisualInteractionOptions;
|
|
2260
2346
|
Legend?: LegendOptions;
|
|
2261
2347
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
2262
2348
|
SortConfiguration?: FilledMapSortConfiguration;
|
|
@@ -2656,6 +2742,7 @@ export type FontConfiguration = {
|
|
|
2656
2742
|
*/
|
|
2657
2743
|
FontColor?: string;
|
|
2658
2744
|
FontDecoration?: FontDecoration;
|
|
2745
|
+
FontFamily?: string;
|
|
2659
2746
|
FontSize?: FontSize;
|
|
2660
2747
|
FontStyle?: FontStyle;
|
|
2661
2748
|
FontWeight?: FontWeight;
|
|
@@ -2670,6 +2757,10 @@ export type FontDecoration = "UNDERLINE" | "NONE";
|
|
|
2670
2757
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-fontsize.html}
|
|
2671
2758
|
*/
|
|
2672
2759
|
export type FontSize = {
|
|
2760
|
+
/**
|
|
2761
|
+
* String based length that is composed of value and unit in px
|
|
2762
|
+
*/
|
|
2763
|
+
Absolute?: string;
|
|
2673
2764
|
Relative?: RelativeFontSize;
|
|
2674
2765
|
};
|
|
2675
2766
|
/**
|
|
@@ -2882,6 +2973,7 @@ export type FunnelChartConfiguration = {
|
|
|
2882
2973
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
2883
2974
|
DataLabelOptions?: FunnelChartDataLabelOptions;
|
|
2884
2975
|
FieldWells?: FunnelChartFieldWells;
|
|
2976
|
+
Interactions?: VisualInteractionOptions;
|
|
2885
2977
|
SortConfiguration?: FunnelChartSortConfiguration;
|
|
2886
2978
|
Tooltip?: TooltipOptions;
|
|
2887
2979
|
ValueLabelOptions?: ChartAxisLabelOptions;
|
|
@@ -2964,6 +3056,20 @@ export type FunnelChartVisual = {
|
|
|
2964
3056
|
export type GaugeChartArcConditionalFormatting = {
|
|
2965
3057
|
ForegroundColor?: ConditionalFormattingColor;
|
|
2966
3058
|
};
|
|
3059
|
+
/**
|
|
3060
|
+
* Type definition for `AWS::QuickSight::Template.GaugeChartColorConfiguration`.
|
|
3061
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gaugechartcolorconfiguration.html}
|
|
3062
|
+
*/
|
|
3063
|
+
export type GaugeChartColorConfiguration = {
|
|
3064
|
+
/**
|
|
3065
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
3066
|
+
*/
|
|
3067
|
+
BackgroundColor?: string;
|
|
3068
|
+
/**
|
|
3069
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
3070
|
+
*/
|
|
3071
|
+
ForegroundColor?: string;
|
|
3072
|
+
};
|
|
2967
3073
|
/**
|
|
2968
3074
|
* Type definition for `AWS::QuickSight::Template.GaugeChartConditionalFormatting`.
|
|
2969
3075
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gaugechartconditionalformatting.html}
|
|
@@ -2988,9 +3094,11 @@ export type GaugeChartConditionalFormattingOption = {
|
|
|
2988
3094
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gaugechartconfiguration.html}
|
|
2989
3095
|
*/
|
|
2990
3096
|
export type GaugeChartConfiguration = {
|
|
3097
|
+
ColorConfiguration?: GaugeChartColorConfiguration;
|
|
2991
3098
|
DataLabels?: DataLabelOptions;
|
|
2992
3099
|
FieldWells?: GaugeChartFieldWells;
|
|
2993
3100
|
GaugeChartOptions?: GaugeChartOptions;
|
|
3101
|
+
Interactions?: VisualInteractionOptions;
|
|
2994
3102
|
TooltipOptions?: TooltipOptions;
|
|
2995
3103
|
VisualPalette?: VisualPalette;
|
|
2996
3104
|
};
|
|
@@ -3367,6 +3475,7 @@ export type HeatMapConfiguration = {
|
|
|
3367
3475
|
ColumnLabelOptions?: ChartAxisLabelOptions;
|
|
3368
3476
|
DataLabels?: DataLabelOptions;
|
|
3369
3477
|
FieldWells?: HeatMapFieldWells;
|
|
3478
|
+
Interactions?: VisualInteractionOptions;
|
|
3370
3479
|
Legend?: LegendOptions;
|
|
3371
3480
|
RowLabelOptions?: ChartAxisLabelOptions;
|
|
3372
3481
|
SortConfiguration?: HeatMapSortConfiguration;
|
|
@@ -3461,6 +3570,7 @@ export type HistogramConfiguration = {
|
|
|
3461
3570
|
BinOptions?: HistogramBinOptions;
|
|
3462
3571
|
DataLabels?: DataLabelOptions;
|
|
3463
3572
|
FieldWells?: HistogramFieldWells;
|
|
3573
|
+
Interactions?: VisualInteractionOptions;
|
|
3464
3574
|
Tooltip?: TooltipOptions;
|
|
3465
3575
|
VisualPalette?: VisualPalette;
|
|
3466
3576
|
XAxisDisplayOptions?: AxisDisplayOptions;
|
|
@@ -3579,6 +3689,7 @@ export type InsightConfiguration = {
|
|
|
3579
3689
|
*/
|
|
3580
3690
|
Computations?: Computation[];
|
|
3581
3691
|
CustomNarrative?: CustomNarrativeOptions;
|
|
3692
|
+
Interactions?: VisualInteractionOptions;
|
|
3582
3693
|
};
|
|
3583
3694
|
/**
|
|
3584
3695
|
* Type definition for `AWS::QuickSight::Template.InsightVisual`.
|
|
@@ -3701,6 +3812,7 @@ export type KPIConditionalFormattingOption = {
|
|
|
3701
3812
|
*/
|
|
3702
3813
|
export type KPIConfiguration = {
|
|
3703
3814
|
FieldWells?: KPIFieldWells;
|
|
3815
|
+
Interactions?: VisualInteractionOptions;
|
|
3704
3816
|
KPIOptions?: KPIOptions;
|
|
3705
3817
|
SortConfiguration?: KPISortConfiguration;
|
|
3706
3818
|
};
|
|
@@ -3931,6 +4043,7 @@ export type LineChartConfiguration = {
|
|
|
3931
4043
|
* @maxLength `10`
|
|
3932
4044
|
*/
|
|
3933
4045
|
ForecastConfigurations?: ForecastConfiguration[];
|
|
4046
|
+
Interactions?: VisualInteractionOptions;
|
|
3934
4047
|
Legend?: LegendOptions;
|
|
3935
4048
|
PrimaryYAxisDisplayOptions?: LineSeriesAxisDisplayOptions;
|
|
3936
4049
|
PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
@@ -4839,6 +4952,7 @@ export type PieChartConfiguration = {
|
|
|
4839
4952
|
DataLabels?: DataLabelOptions;
|
|
4840
4953
|
DonutOptions?: DonutOptions;
|
|
4841
4954
|
FieldWells?: PieChartFieldWells;
|
|
4955
|
+
Interactions?: VisualInteractionOptions;
|
|
4842
4956
|
Legend?: LegendOptions;
|
|
4843
4957
|
SmallMultiplesOptions?: SmallMultiplesOptions;
|
|
4844
4958
|
SortConfiguration?: PieChartSortConfiguration;
|
|
@@ -4989,6 +5103,7 @@ export type PivotTableConditionalFormattingScopeRole = "FIELD" | "FIELD_TOTAL" |
|
|
|
4989
5103
|
export type PivotTableConfiguration = {
|
|
4990
5104
|
FieldOptions?: PivotTableFieldOptions;
|
|
4991
5105
|
FieldWells?: PivotTableFieldWells;
|
|
5106
|
+
Interactions?: VisualInteractionOptions;
|
|
4992
5107
|
PaginatedReportOptions?: PivotTablePaginatedReportOptions;
|
|
4993
5108
|
SortConfiguration?: PivotTableSortConfiguration;
|
|
4994
5109
|
TableOptions?: PivotTableOptions;
|
|
@@ -5423,6 +5538,7 @@ export type RadarChartConfiguration = {
|
|
|
5423
5538
|
ColorAxis?: AxisDisplayOptions;
|
|
5424
5539
|
ColorLabelOptions?: ChartAxisLabelOptions;
|
|
5425
5540
|
FieldWells?: RadarChartFieldWells;
|
|
5541
|
+
Interactions?: VisualInteractionOptions;
|
|
5426
5542
|
Legend?: LegendOptions;
|
|
5427
5543
|
Shape?: RadarChartShape;
|
|
5428
5544
|
SortConfiguration?: RadarChartSortConfiguration;
|
|
@@ -5774,6 +5890,7 @@ export type SankeyDiagramAggregatedFieldWells = {
|
|
|
5774
5890
|
export type SankeyDiagramChartConfiguration = {
|
|
5775
5891
|
DataLabels?: DataLabelOptions;
|
|
5776
5892
|
FieldWells?: SankeyDiagramFieldWells;
|
|
5893
|
+
Interactions?: VisualInteractionOptions;
|
|
5777
5894
|
SortConfiguration?: SankeyDiagramSortConfiguration;
|
|
5778
5895
|
};
|
|
5779
5896
|
/**
|
|
@@ -5859,7 +5976,9 @@ export type ScatterPlotCategoricallyAggregatedFieldWells = {
|
|
|
5859
5976
|
export type ScatterPlotConfiguration = {
|
|
5860
5977
|
DataLabels?: DataLabelOptions;
|
|
5861
5978
|
FieldWells?: ScatterPlotFieldWells;
|
|
5979
|
+
Interactions?: VisualInteractionOptions;
|
|
5862
5980
|
Legend?: LegendOptions;
|
|
5981
|
+
SortConfiguration?: ScatterPlotSortConfiguration;
|
|
5863
5982
|
Tooltip?: TooltipOptions;
|
|
5864
5983
|
VisualPalette?: VisualPalette;
|
|
5865
5984
|
XAxisDisplayOptions?: AxisDisplayOptions;
|
|
@@ -5875,6 +5994,13 @@ export type ScatterPlotFieldWells = {
|
|
|
5875
5994
|
ScatterPlotCategoricallyAggregatedFieldWells?: ScatterPlotCategoricallyAggregatedFieldWells;
|
|
5876
5995
|
ScatterPlotUnaggregatedFieldWells?: ScatterPlotUnaggregatedFieldWells;
|
|
5877
5996
|
};
|
|
5997
|
+
/**
|
|
5998
|
+
* Type definition for `AWS::QuickSight::Template.ScatterPlotSortConfiguration`.
|
|
5999
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-scatterplotsortconfiguration.html}
|
|
6000
|
+
*/
|
|
6001
|
+
export type ScatterPlotSortConfiguration = {
|
|
6002
|
+
ScatterPlotLimitConfiguration?: ItemsLimitConfiguration;
|
|
6003
|
+
};
|
|
5878
6004
|
/**
|
|
5879
6005
|
* Type definition for `AWS::QuickSight::Template.ScatterPlotUnaggregatedFieldWells`.
|
|
5880
6006
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-scatterplotunaggregatedfieldwells.html}
|
|
@@ -6319,6 +6445,7 @@ export type SheetTextBox = {
|
|
|
6319
6445
|
* @maxLength `150000`
|
|
6320
6446
|
*/
|
|
6321
6447
|
Content?: string;
|
|
6448
|
+
Interactions?: any;
|
|
6322
6449
|
/**
|
|
6323
6450
|
* @minLength `1`
|
|
6324
6451
|
* @maxLength `512`
|
|
@@ -6657,6 +6784,7 @@ export type TableConditionalFormattingOption = {
|
|
|
6657
6784
|
export type TableConfiguration = {
|
|
6658
6785
|
FieldOptions?: TableFieldOptions;
|
|
6659
6786
|
FieldWells?: TableFieldWells;
|
|
6787
|
+
Interactions?: VisualInteractionOptions;
|
|
6660
6788
|
PaginatedReportOptions?: TablePaginatedReportOptions;
|
|
6661
6789
|
SortConfiguration?: TableSortConfiguration;
|
|
6662
6790
|
/**
|
|
@@ -7118,6 +7246,7 @@ export type TextWrap = "NONE" | "WRAP";
|
|
|
7118
7246
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-thousandseparatoroptions.html}
|
|
7119
7247
|
*/
|
|
7120
7248
|
export type ThousandSeparatorOptions = {
|
|
7249
|
+
GroupingStyle?: DigitGroupingStyle;
|
|
7121
7250
|
Symbol?: NumericSeparatorSymbol;
|
|
7122
7251
|
Visibility?: any;
|
|
7123
7252
|
};
|
|
@@ -7410,6 +7539,7 @@ export type TreeMapConfiguration = {
|
|
|
7410
7539
|
DataLabels?: DataLabelOptions;
|
|
7411
7540
|
FieldWells?: TreeMapFieldWells;
|
|
7412
7541
|
GroupLabelOptions?: ChartAxisLabelOptions;
|
|
7542
|
+
Interactions?: VisualInteractionOptions;
|
|
7413
7543
|
Legend?: LegendOptions;
|
|
7414
7544
|
SizeLabelOptions?: ChartAxisLabelOptions;
|
|
7415
7545
|
SortConfiguration?: TreeMapSortConfiguration;
|
|
@@ -7602,6 +7732,21 @@ export type VisualCustomActionOperation = {
|
|
|
7602
7732
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visualcustomactiontrigger.html}
|
|
7603
7733
|
*/
|
|
7604
7734
|
export type VisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
|
7735
|
+
/**
|
|
7736
|
+
* Type definition for `AWS::QuickSight::Template.VisualInteractionOptions`.
|
|
7737
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visualinteractionoptions.html}
|
|
7738
|
+
*/
|
|
7739
|
+
export type VisualInteractionOptions = {
|
|
7740
|
+
ContextMenuOption?: ContextMenuOption;
|
|
7741
|
+
VisualMenuOption?: VisualMenuOption;
|
|
7742
|
+
};
|
|
7743
|
+
/**
|
|
7744
|
+
* Type definition for `AWS::QuickSight::Template.VisualMenuOption`.
|
|
7745
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visualmenuoption.html}
|
|
7746
|
+
*/
|
|
7747
|
+
export type VisualMenuOption = {
|
|
7748
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
7749
|
+
};
|
|
7605
7750
|
/**
|
|
7606
7751
|
* Type definition for `AWS::QuickSight::Template.VisualPalette`.
|
|
7607
7752
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visualpalette.html}
|
|
@@ -7671,6 +7816,7 @@ export type WaterfallChartConfiguration = {
|
|
|
7671
7816
|
ColorConfiguration?: WaterfallChartColorConfiguration;
|
|
7672
7817
|
DataLabels?: DataLabelOptions;
|
|
7673
7818
|
FieldWells?: WaterfallChartFieldWells;
|
|
7819
|
+
Interactions?: VisualInteractionOptions;
|
|
7674
7820
|
Legend?: LegendOptions;
|
|
7675
7821
|
PrimaryYAxisDisplayOptions?: AxisDisplayOptions;
|
|
7676
7822
|
PrimaryYAxisLabelOptions?: ChartAxisLabelOptions;
|
|
@@ -7797,6 +7943,7 @@ export type WordCloudAggregatedFieldWells = {
|
|
|
7797
7943
|
export type WordCloudChartConfiguration = {
|
|
7798
7944
|
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
7799
7945
|
FieldWells?: WordCloudFieldWells;
|
|
7946
|
+
Interactions?: VisualInteractionOptions;
|
|
7800
7947
|
SortConfiguration?: WordCloudSortConfiguration;
|
|
7801
7948
|
WordCloudOptions?: WordCloudOptions;
|
|
7802
7949
|
};
|
|
@@ -17,7 +17,37 @@ export type TransferAgreementProperties = {
|
|
|
17
17
|
* @maxLength `1024`
|
|
18
18
|
* @pattern `^(|/.*)$`
|
|
19
19
|
*/
|
|
20
|
-
BaseDirectory
|
|
20
|
+
BaseDirectory?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Specifies a separate directory for each type of file to store for an AS2 message.
|
|
23
|
+
*/
|
|
24
|
+
CustomDirectories?: {
|
|
25
|
+
/**
|
|
26
|
+
* Specifies a location to store the failed files for an AS2 message.
|
|
27
|
+
* @pattern `(|/.*)`
|
|
28
|
+
*/
|
|
29
|
+
FailedFilesDirectory: string;
|
|
30
|
+
/**
|
|
31
|
+
* Specifies a location to store the MDN file for an AS2 message.
|
|
32
|
+
* @pattern `(|/.*)`
|
|
33
|
+
*/
|
|
34
|
+
MdnFilesDirectory: string;
|
|
35
|
+
/**
|
|
36
|
+
* Specifies a location to store the payload file for an AS2 message.
|
|
37
|
+
* @pattern `(|/.*)`
|
|
38
|
+
*/
|
|
39
|
+
PayloadFilesDirectory: string;
|
|
40
|
+
/**
|
|
41
|
+
* Specifies a location to store the status file for an AS2 message.
|
|
42
|
+
* @pattern `(|/.*)`
|
|
43
|
+
*/
|
|
44
|
+
StatusFilesDirectory: string;
|
|
45
|
+
/**
|
|
46
|
+
* Specifies a location to store the temporary processing file for an AS2 message.
|
|
47
|
+
* @pattern `(|/.*)`
|
|
48
|
+
*/
|
|
49
|
+
TemporaryFilesDirectory: string;
|
|
50
|
+
};
|
|
21
51
|
/**
|
|
22
52
|
* A textual description for the agreement.
|
|
23
53
|
* @minLength `1`
|