@awboost/cfn-resource-types 0.1.63 → 0.1.65
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-Bedrock-Agent.d.ts +4 -0
- package/lib/AWS-Bedrock-Guardrail.d.ts +351 -0
- package/lib/AWS-Bedrock-Guardrail.js +12 -0
- package/lib/AWS-CUR-ReportDefinition.d.ts +1 -1
- package/lib/AWS-DataSync-Task.d.ts +5 -1
- package/lib/AWS-GameLift-ContainerGroupDefinition.d.ts +311 -0
- package/lib/AWS-GameLift-ContainerGroupDefinition.js +12 -0
- package/lib/AWS-GameLift-Fleet.d.ts +74 -1
- package/lib/AWS-KMS-Key.d.ts +15 -15
- package/lib/AWS-KMS-Key.js +3 -3
- package/lib/AWS-Lambda-Alias.d.ts +37 -2
- package/lib/AWS-PaymentCryptography-Alias.d.ts +29 -0
- package/lib/AWS-PaymentCryptography-Alias.js +12 -0
- package/lib/AWS-PaymentCryptography-Key.d.ts +119 -0
- package/lib/AWS-PaymentCryptography-Key.js +12 -0
- package/lib/AWS-QuickSight-Analysis.d.ts +301 -88
- package/lib/AWS-QuickSight-Dashboard.d.ts +398 -100
- package/lib/AWS-QuickSight-Template.d.ts +380 -98
- package/lib/AWS-QuickSight-Theme.d.ts +286 -59
- package/lib/AWS-Route53Profiles-Profile.d.ts +65 -0
- package/lib/AWS-Route53Profiles-Profile.js +12 -0
- package/lib/AWS-Route53Profiles-ProfileAssociation.d.ts +65 -0
- package/lib/AWS-Route53Profiles-ProfileAssociation.js +12 -0
- package/lib/AWS-Route53Profiles-ProfileResourceAssociation.d.ts +47 -0
- package/lib/AWS-Route53Profiles-ProfileResourceAssociation.js +12 -0
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ export type QuickSightAnalysisProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* @minLength `1`
|
|
10
10
|
* @maxLength `512`
|
|
11
|
-
* @pattern
|
|
11
|
+
* @pattern `^[\w\-]+$`
|
|
12
12
|
*/
|
|
13
13
|
AnalysisId: string;
|
|
14
14
|
/**
|
|
@@ -19,14 +19,19 @@ export type QuickSightAnalysisProperties = {
|
|
|
19
19
|
AwsAccountId: string;
|
|
20
20
|
Definition?: AnalysisDefinition;
|
|
21
21
|
/**
|
|
22
|
+
* <p>Errors associated with the analysis.</p>
|
|
22
23
|
* @minLength `1`
|
|
23
24
|
*/
|
|
24
25
|
Errors?: AnalysisError[];
|
|
25
26
|
/**
|
|
27
|
+
* <p>The descriptive name of the analysis.</p>
|
|
26
28
|
* @minLength `1`
|
|
27
29
|
* @maxLength `2048`
|
|
28
30
|
*/
|
|
29
31
|
Name: string;
|
|
32
|
+
/**
|
|
33
|
+
* <p>A list of Amazon QuickSight parameters and the list's override values.</p>
|
|
34
|
+
*/
|
|
30
35
|
Parameters?: Parameters;
|
|
31
36
|
/**
|
|
32
37
|
* @minLength `1`
|
|
@@ -34,10 +39,14 @@ export type QuickSightAnalysisProperties = {
|
|
|
34
39
|
*/
|
|
35
40
|
Permissions?: ResourcePermission[];
|
|
36
41
|
/**
|
|
42
|
+
* <p>A list of the associated sheets with the unique identifier and name of each sheet.</p>
|
|
37
43
|
* @minLength `0`
|
|
38
44
|
* @maxLength `20`
|
|
39
45
|
*/
|
|
40
46
|
Sheets?: Sheet[];
|
|
47
|
+
/**
|
|
48
|
+
* <p>The source entity of an analysis.</p>
|
|
49
|
+
*/
|
|
41
50
|
SourceEntity?: AnalysisSourceEntity;
|
|
42
51
|
Status?: ResourceStatus;
|
|
43
52
|
/**
|
|
@@ -45,7 +54,13 @@ export type QuickSightAnalysisProperties = {
|
|
|
45
54
|
* @maxLength `200`
|
|
46
55
|
*/
|
|
47
56
|
Tags?: Tag[];
|
|
57
|
+
/**
|
|
58
|
+
* <p>The ARN of the theme of the analysis.</p>
|
|
59
|
+
*/
|
|
48
60
|
ThemeArn?: string;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The option to relax the validation that is required to create and update analyses, dashboards, and templates with definition objects. When you set this value to <code>LENIENT</code>, validation is skipped for specific errors.</p>
|
|
63
|
+
*/
|
|
49
64
|
ValidationStrategy?: ValidationStrategy;
|
|
50
65
|
};
|
|
51
66
|
/**
|
|
@@ -53,13 +68,23 @@ export type QuickSightAnalysisProperties = {
|
|
|
53
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-analysis.html#aws-resource-quicksight-analysis-return-values}
|
|
54
69
|
*/
|
|
55
70
|
export type QuickSightAnalysisAttributes = {
|
|
71
|
+
/**
|
|
72
|
+
* <p>The Amazon Resource Name (ARN) of the analysis.</p>
|
|
73
|
+
*/
|
|
56
74
|
Arn: string;
|
|
75
|
+
/**
|
|
76
|
+
* <p>The time that the analysis was created.</p>
|
|
77
|
+
*/
|
|
57
78
|
CreatedTime: string;
|
|
58
79
|
/**
|
|
80
|
+
* <p>The ARNs of the datasets of the analysis.</p>
|
|
59
81
|
* @minLength `0`
|
|
60
82
|
* @maxLength `100`
|
|
61
83
|
*/
|
|
62
84
|
DataSetArns: string[];
|
|
85
|
+
/**
|
|
86
|
+
* <p>The time that the analysis was last updated.</p>
|
|
87
|
+
*/
|
|
63
88
|
LastUpdatedTime: string;
|
|
64
89
|
};
|
|
65
90
|
/**
|
|
@@ -106,7 +131,7 @@ export type AnalysisDefinition = {
|
|
|
106
131
|
CalculatedFields?: CalculatedField[];
|
|
107
132
|
/**
|
|
108
133
|
* @minLength `0`
|
|
109
|
-
* @maxLength `
|
|
134
|
+
* @maxLength `2000`
|
|
110
135
|
*/
|
|
111
136
|
ColumnConfigurations?: ColumnConfiguration[];
|
|
112
137
|
/**
|
|
@@ -133,15 +158,18 @@ export type AnalysisDefinition = {
|
|
|
133
158
|
};
|
|
134
159
|
/**
|
|
135
160
|
* Type definition for `AWS::QuickSight::Analysis.AnalysisError`.
|
|
161
|
+
* <p>Analysis error.</p>
|
|
136
162
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-analysiserror.html}
|
|
137
163
|
*/
|
|
138
164
|
export type AnalysisError = {
|
|
139
165
|
/**
|
|
140
|
-
*
|
|
166
|
+
* <p>The message associated with the analysis error.</p>
|
|
167
|
+
* @pattern `\S`
|
|
141
168
|
*/
|
|
142
169
|
Message?: string;
|
|
143
170
|
Type?: AnalysisErrorType;
|
|
144
171
|
/**
|
|
172
|
+
* <p>Lists the violated entities that caused the analysis error</p>
|
|
145
173
|
* @minLength `0`
|
|
146
174
|
* @maxLength `200`
|
|
147
175
|
*/
|
|
@@ -154,18 +182,27 @@ export type AnalysisError = {
|
|
|
154
182
|
export type AnalysisErrorType = "ACCESS_DENIED" | "SOURCE_NOT_FOUND" | "DATA_SET_NOT_FOUND" | "INTERNAL_FAILURE" | "PARAMETER_VALUE_INCOMPATIBLE" | "PARAMETER_TYPE_INVALID" | "PARAMETER_NOT_FOUND" | "COLUMN_TYPE_MISMATCH" | "COLUMN_GEOGRAPHIC_ROLE_MISMATCH" | "COLUMN_REPLACEMENT_MISSING";
|
|
155
183
|
/**
|
|
156
184
|
* Type definition for `AWS::QuickSight::Analysis.AnalysisSourceEntity`.
|
|
185
|
+
* <p>The source entity of an analysis.</p>
|
|
157
186
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-analysissourceentity.html}
|
|
158
187
|
*/
|
|
159
188
|
export type AnalysisSourceEntity = {
|
|
189
|
+
/**
|
|
190
|
+
* <p>The source template of an analysis.</p>
|
|
191
|
+
*/
|
|
160
192
|
SourceTemplate?: AnalysisSourceTemplate;
|
|
161
193
|
};
|
|
162
194
|
/**
|
|
163
195
|
* Type definition for `AWS::QuickSight::Analysis.AnalysisSourceTemplate`.
|
|
196
|
+
* <p>The source template of an analysis.</p>
|
|
164
197
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-analysissourcetemplate.html}
|
|
165
198
|
*/
|
|
166
199
|
export type AnalysisSourceTemplate = {
|
|
200
|
+
/**
|
|
201
|
+
* <p>The Amazon Resource Name (ARN) of the source template of an analysis.</p>
|
|
202
|
+
*/
|
|
167
203
|
Arn: string;
|
|
168
204
|
/**
|
|
205
|
+
* <p>The dataset references of the source template of an analysis.</p>
|
|
169
206
|
* @minLength `1`
|
|
170
207
|
*/
|
|
171
208
|
DataSetReferences: DataSetReference[];
|
|
@@ -459,7 +496,7 @@ export type BarChartVisual = {
|
|
|
459
496
|
/**
|
|
460
497
|
* @minLength `1`
|
|
461
498
|
* @maxLength `512`
|
|
462
|
-
* @pattern
|
|
499
|
+
* @pattern `^[\w\-]+$`
|
|
463
500
|
*/
|
|
464
501
|
VisualId: string;
|
|
465
502
|
};
|
|
@@ -508,7 +545,7 @@ export type BodySectionConfiguration = {
|
|
|
508
545
|
/**
|
|
509
546
|
* @minLength `1`
|
|
510
547
|
* @maxLength `512`
|
|
511
|
-
* @pattern
|
|
548
|
+
* @pattern `^[\w\-]+$`
|
|
512
549
|
*/
|
|
513
550
|
SectionId: string;
|
|
514
551
|
Style?: SectionStyle;
|
|
@@ -618,7 +655,7 @@ export type BoxPlotVisual = {
|
|
|
618
655
|
/**
|
|
619
656
|
* @minLength `1`
|
|
620
657
|
* @maxLength `512`
|
|
621
|
-
* @pattern
|
|
658
|
+
* @pattern `^[\w\-]+$`
|
|
622
659
|
*/
|
|
623
660
|
VisualId: string;
|
|
624
661
|
};
|
|
@@ -734,10 +771,11 @@ export type CategoryDrillDownFilter = {
|
|
|
734
771
|
export type CategoryFilter = {
|
|
735
772
|
Column: ColumnIdentifier;
|
|
736
773
|
Configuration: CategoryFilterConfiguration;
|
|
774
|
+
DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
|
|
737
775
|
/**
|
|
738
776
|
* @minLength `1`
|
|
739
777
|
* @maxLength `512`
|
|
740
|
-
* @pattern
|
|
778
|
+
* @pattern `^[\w\-]+$`
|
|
741
779
|
*/
|
|
742
780
|
FilterId: string;
|
|
743
781
|
};
|
|
@@ -973,7 +1011,7 @@ export type ComboChartVisual = {
|
|
|
973
1011
|
/**
|
|
974
1012
|
* @minLength `1`
|
|
975
1013
|
* @maxLength `512`
|
|
976
|
-
* @pattern
|
|
1014
|
+
* @pattern `^[\w\-]+$`
|
|
977
1015
|
*/
|
|
978
1016
|
VisualId: string;
|
|
979
1017
|
};
|
|
@@ -1156,7 +1194,7 @@ export type CurrencyDisplayFormatConfiguration = {
|
|
|
1156
1194
|
*/
|
|
1157
1195
|
Suffix?: string;
|
|
1158
1196
|
/**
|
|
1159
|
-
* @pattern
|
|
1197
|
+
* @pattern `^[A-Z]{3}$`
|
|
1160
1198
|
*/
|
|
1161
1199
|
Symbol?: string;
|
|
1162
1200
|
};
|
|
@@ -1258,7 +1296,7 @@ export type CustomContentVisual = {
|
|
|
1258
1296
|
/**
|
|
1259
1297
|
* @minLength `1`
|
|
1260
1298
|
* @maxLength `512`
|
|
1261
|
-
* @pattern
|
|
1299
|
+
* @pattern `^[\w\-]+$`
|
|
1262
1300
|
*/
|
|
1263
1301
|
VisualId: string;
|
|
1264
1302
|
};
|
|
@@ -1513,12 +1551,17 @@ export type DataSetIdentifierDeclaration = {
|
|
|
1513
1551
|
};
|
|
1514
1552
|
/**
|
|
1515
1553
|
* Type definition for `AWS::QuickSight::Analysis.DataSetReference`.
|
|
1554
|
+
* <p>Dataset reference.</p>
|
|
1516
1555
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datasetreference.html}
|
|
1517
1556
|
*/
|
|
1518
1557
|
export type DataSetReference = {
|
|
1558
|
+
/**
|
|
1559
|
+
* <p>Dataset Amazon Resource Name (ARN).</p>
|
|
1560
|
+
*/
|
|
1519
1561
|
DataSetArn: string;
|
|
1520
1562
|
/**
|
|
1521
|
-
*
|
|
1563
|
+
* <p>Dataset placeholder.</p>
|
|
1564
|
+
* @pattern `\S`
|
|
1522
1565
|
*/
|
|
1523
1566
|
DataSetPlaceholder: string;
|
|
1524
1567
|
};
|
|
@@ -1611,13 +1654,18 @@ export type DateTimeHierarchy = {
|
|
|
1611
1654
|
};
|
|
1612
1655
|
/**
|
|
1613
1656
|
* Type definition for `AWS::QuickSight::Analysis.DateTimeParameter`.
|
|
1657
|
+
* <p>A date-time parameter.</p>
|
|
1614
1658
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datetimeparameter.html}
|
|
1615
1659
|
*/
|
|
1616
1660
|
export type DateTimeParameter = {
|
|
1617
1661
|
/**
|
|
1618
|
-
*
|
|
1662
|
+
* <p>A display name for the date-time parameter.</p>
|
|
1663
|
+
* @pattern `\S`
|
|
1619
1664
|
*/
|
|
1620
1665
|
Name: string;
|
|
1666
|
+
/**
|
|
1667
|
+
* <p>The values for the date-time parameter.</p>
|
|
1668
|
+
*/
|
|
1621
1669
|
Values: string[];
|
|
1622
1670
|
};
|
|
1623
1671
|
/**
|
|
@@ -1680,13 +1728,18 @@ export type DecimalDefaultValues = {
|
|
|
1680
1728
|
};
|
|
1681
1729
|
/**
|
|
1682
1730
|
* Type definition for `AWS::QuickSight::Analysis.DecimalParameter`.
|
|
1731
|
+
* <p>A decimal parameter.</p>
|
|
1683
1732
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-decimalparameter.html}
|
|
1684
1733
|
*/
|
|
1685
1734
|
export type DecimalParameter = {
|
|
1686
1735
|
/**
|
|
1687
|
-
*
|
|
1736
|
+
* <p>A display name for the decimal parameter.</p>
|
|
1737
|
+
* @pattern `\S`
|
|
1688
1738
|
*/
|
|
1689
1739
|
Name: string;
|
|
1740
|
+
/**
|
|
1741
|
+
* <p>The values for the decimal parameter.</p>
|
|
1742
|
+
*/
|
|
1690
1743
|
Values: number[];
|
|
1691
1744
|
};
|
|
1692
1745
|
/**
|
|
@@ -1728,6 +1781,57 @@ export type DecimalValueWhenUnsetConfiguration = {
|
|
|
1728
1781
|
CustomValue?: number;
|
|
1729
1782
|
ValueWhenUnsetOption?: ValueWhenUnsetOption;
|
|
1730
1783
|
};
|
|
1784
|
+
/**
|
|
1785
|
+
* Type definition for `AWS::QuickSight::Analysis.DefaultDateTimePickerControlOptions`.
|
|
1786
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultdatetimepickercontroloptions.html}
|
|
1787
|
+
*/
|
|
1788
|
+
export type DefaultDateTimePickerControlOptions = {
|
|
1789
|
+
DisplayOptions?: DateTimePickerControlDisplayOptions;
|
|
1790
|
+
Type?: SheetControlDateTimePickerType;
|
|
1791
|
+
};
|
|
1792
|
+
/**
|
|
1793
|
+
* Type definition for `AWS::QuickSight::Analysis.DefaultFilterControlConfiguration`.
|
|
1794
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultfiltercontrolconfiguration.html}
|
|
1795
|
+
*/
|
|
1796
|
+
export type DefaultFilterControlConfiguration = {
|
|
1797
|
+
ControlOptions: DefaultFilterControlOptions;
|
|
1798
|
+
/**
|
|
1799
|
+
* @minLength `1`
|
|
1800
|
+
* @maxLength `2048`
|
|
1801
|
+
*/
|
|
1802
|
+
Title: string;
|
|
1803
|
+
};
|
|
1804
|
+
/**
|
|
1805
|
+
* Type definition for `AWS::QuickSight::Analysis.DefaultFilterControlOptions`.
|
|
1806
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultfiltercontroloptions.html}
|
|
1807
|
+
*/
|
|
1808
|
+
export type DefaultFilterControlOptions = {
|
|
1809
|
+
DefaultDateTimePickerOptions?: DefaultDateTimePickerControlOptions;
|
|
1810
|
+
DefaultDropdownOptions?: DefaultFilterDropDownControlOptions;
|
|
1811
|
+
DefaultListOptions?: DefaultFilterListControlOptions;
|
|
1812
|
+
DefaultRelativeDateTimeOptions?: DefaultRelativeDateTimeControlOptions;
|
|
1813
|
+
DefaultSliderOptions?: DefaultSliderControlOptions;
|
|
1814
|
+
DefaultTextAreaOptions?: DefaultTextAreaControlOptions;
|
|
1815
|
+
DefaultTextFieldOptions?: DefaultTextFieldControlOptions;
|
|
1816
|
+
};
|
|
1817
|
+
/**
|
|
1818
|
+
* Type definition for `AWS::QuickSight::Analysis.DefaultFilterDropDownControlOptions`.
|
|
1819
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultfilterdropdowncontroloptions.html}
|
|
1820
|
+
*/
|
|
1821
|
+
export type DefaultFilterDropDownControlOptions = {
|
|
1822
|
+
DisplayOptions?: DropDownControlDisplayOptions;
|
|
1823
|
+
SelectableValues?: FilterSelectableValues;
|
|
1824
|
+
Type?: SheetControlListType;
|
|
1825
|
+
};
|
|
1826
|
+
/**
|
|
1827
|
+
* Type definition for `AWS::QuickSight::Analysis.DefaultFilterListControlOptions`.
|
|
1828
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultfilterlistcontroloptions.html}
|
|
1829
|
+
*/
|
|
1830
|
+
export type DefaultFilterListControlOptions = {
|
|
1831
|
+
DisplayOptions?: ListControlDisplayOptions;
|
|
1832
|
+
SelectableValues?: FilterSelectableValues;
|
|
1833
|
+
Type?: SheetControlListType;
|
|
1834
|
+
};
|
|
1731
1835
|
/**
|
|
1732
1836
|
* Type definition for `AWS::QuickSight::Analysis.DefaultFreeFormLayoutConfiguration`.
|
|
1733
1837
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultfreeformlayoutconfiguration.html}
|
|
@@ -1766,6 +1870,13 @@ export type DefaultNewSheetConfiguration = {
|
|
|
1766
1870
|
export type DefaultPaginatedLayoutConfiguration = {
|
|
1767
1871
|
SectionBased?: DefaultSectionBasedLayoutConfiguration;
|
|
1768
1872
|
};
|
|
1873
|
+
/**
|
|
1874
|
+
* Type definition for `AWS::QuickSight::Analysis.DefaultRelativeDateTimeControlOptions`.
|
|
1875
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultrelativedatetimecontroloptions.html}
|
|
1876
|
+
*/
|
|
1877
|
+
export type DefaultRelativeDateTimeControlOptions = {
|
|
1878
|
+
DisplayOptions?: RelativeDateTimeControlDisplayOptions;
|
|
1879
|
+
};
|
|
1769
1880
|
/**
|
|
1770
1881
|
* Type definition for `AWS::QuickSight::Analysis.DefaultSectionBasedLayoutConfiguration`.
|
|
1771
1882
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultsectionbasedlayoutconfiguration.html}
|
|
@@ -1773,6 +1884,36 @@ export type DefaultPaginatedLayoutConfiguration = {
|
|
|
1773
1884
|
export type DefaultSectionBasedLayoutConfiguration = {
|
|
1774
1885
|
CanvasSizeOptions: SectionBasedLayoutCanvasSizeOptions;
|
|
1775
1886
|
};
|
|
1887
|
+
/**
|
|
1888
|
+
* Type definition for `AWS::QuickSight::Analysis.DefaultSliderControlOptions`.
|
|
1889
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultslidercontroloptions.html}
|
|
1890
|
+
*/
|
|
1891
|
+
export type DefaultSliderControlOptions = {
|
|
1892
|
+
DisplayOptions?: SliderControlDisplayOptions;
|
|
1893
|
+
MaximumValue: number;
|
|
1894
|
+
MinimumValue: number;
|
|
1895
|
+
StepSize: number;
|
|
1896
|
+
Type?: SheetControlSliderType;
|
|
1897
|
+
};
|
|
1898
|
+
/**
|
|
1899
|
+
* Type definition for `AWS::QuickSight::Analysis.DefaultTextAreaControlOptions`.
|
|
1900
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaulttextareacontroloptions.html}
|
|
1901
|
+
*/
|
|
1902
|
+
export type DefaultTextAreaControlOptions = {
|
|
1903
|
+
/**
|
|
1904
|
+
* @minLength `1`
|
|
1905
|
+
* @maxLength `2048`
|
|
1906
|
+
*/
|
|
1907
|
+
Delimiter?: string;
|
|
1908
|
+
DisplayOptions?: TextAreaControlDisplayOptions;
|
|
1909
|
+
};
|
|
1910
|
+
/**
|
|
1911
|
+
* Type definition for `AWS::QuickSight::Analysis.DefaultTextFieldControlOptions`.
|
|
1912
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaulttextfieldcontroloptions.html}
|
|
1913
|
+
*/
|
|
1914
|
+
export type DefaultTextFieldControlOptions = {
|
|
1915
|
+
DisplayOptions?: TextFieldControlDisplayOptions;
|
|
1916
|
+
};
|
|
1776
1917
|
/**
|
|
1777
1918
|
* Type definition for `AWS::QuickSight::Analysis.DestinationParameterValueConfiguration`.
|
|
1778
1919
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-destinationparametervalueconfiguration.html}
|
|
@@ -1857,7 +1998,7 @@ export type EmptyVisual = {
|
|
|
1857
1998
|
/**
|
|
1858
1999
|
* @minLength `1`
|
|
1859
2000
|
* @maxLength `512`
|
|
1860
|
-
* @pattern
|
|
2001
|
+
* @pattern `^[\w\-]+$`
|
|
1861
2002
|
*/
|
|
1862
2003
|
VisualId: string;
|
|
1863
2004
|
};
|
|
@@ -1867,7 +2008,7 @@ export type EmptyVisual = {
|
|
|
1867
2008
|
*/
|
|
1868
2009
|
export type Entity = {
|
|
1869
2010
|
/**
|
|
1870
|
-
* @pattern
|
|
2011
|
+
* @pattern `\S`
|
|
1871
2012
|
*/
|
|
1872
2013
|
Path?: string;
|
|
1873
2014
|
};
|
|
@@ -2070,7 +2211,7 @@ export type FilledMapVisual = {
|
|
|
2070
2211
|
/**
|
|
2071
2212
|
* @minLength `1`
|
|
2072
2213
|
* @maxLength `512`
|
|
2073
|
-
* @pattern
|
|
2214
|
+
* @pattern `^[\w\-]+$`
|
|
2074
2215
|
*/
|
|
2075
2216
|
VisualId: string;
|
|
2076
2217
|
};
|
|
@@ -2092,6 +2233,7 @@ export type Filter = {
|
|
|
2092
2233
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filtercontrol.html}
|
|
2093
2234
|
*/
|
|
2094
2235
|
export type FilterControl = {
|
|
2236
|
+
CrossSheet?: FilterCrossSheetControl;
|
|
2095
2237
|
DateTimePicker?: FilterDateTimePickerControl;
|
|
2096
2238
|
Dropdown?: FilterDropDownControl;
|
|
2097
2239
|
List?: FilterListControl;
|
|
@@ -2100,6 +2242,25 @@ export type FilterControl = {
|
|
|
2100
2242
|
TextArea?: FilterTextAreaControl;
|
|
2101
2243
|
TextField?: FilterTextFieldControl;
|
|
2102
2244
|
};
|
|
2245
|
+
/**
|
|
2246
|
+
* Type definition for `AWS::QuickSight::Analysis.FilterCrossSheetControl`.
|
|
2247
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filtercrosssheetcontrol.html}
|
|
2248
|
+
*/
|
|
2249
|
+
export type FilterCrossSheetControl = {
|
|
2250
|
+
CascadingControlConfiguration?: CascadingControlConfiguration;
|
|
2251
|
+
/**
|
|
2252
|
+
* @minLength `1`
|
|
2253
|
+
* @maxLength `512`
|
|
2254
|
+
* @pattern `^[\w\-]+$`
|
|
2255
|
+
*/
|
|
2256
|
+
FilterControlId: string;
|
|
2257
|
+
/**
|
|
2258
|
+
* @minLength `1`
|
|
2259
|
+
* @maxLength `512`
|
|
2260
|
+
* @pattern `^[\w\-]+$`
|
|
2261
|
+
*/
|
|
2262
|
+
SourceFilterId: string;
|
|
2263
|
+
};
|
|
2103
2264
|
/**
|
|
2104
2265
|
* Type definition for `AWS::QuickSight::Analysis.FilterDateTimePickerControl`.
|
|
2105
2266
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filterdatetimepickercontrol.html}
|
|
@@ -2109,13 +2270,13 @@ export type FilterDateTimePickerControl = {
|
|
|
2109
2270
|
/**
|
|
2110
2271
|
* @minLength `1`
|
|
2111
2272
|
* @maxLength `512`
|
|
2112
|
-
* @pattern
|
|
2273
|
+
* @pattern `^[\w\-]+$`
|
|
2113
2274
|
*/
|
|
2114
2275
|
FilterControlId: string;
|
|
2115
2276
|
/**
|
|
2116
2277
|
* @minLength `1`
|
|
2117
2278
|
* @maxLength `512`
|
|
2118
|
-
* @pattern
|
|
2279
|
+
* @pattern `^[\w\-]+$`
|
|
2119
2280
|
*/
|
|
2120
2281
|
SourceFilterId: string;
|
|
2121
2282
|
/**
|
|
@@ -2135,14 +2296,14 @@ export type FilterDropDownControl = {
|
|
|
2135
2296
|
/**
|
|
2136
2297
|
* @minLength `1`
|
|
2137
2298
|
* @maxLength `512`
|
|
2138
|
-
* @pattern
|
|
2299
|
+
* @pattern `^[\w\-]+$`
|
|
2139
2300
|
*/
|
|
2140
2301
|
FilterControlId: string;
|
|
2141
2302
|
SelectableValues?: FilterSelectableValues;
|
|
2142
2303
|
/**
|
|
2143
2304
|
* @minLength `1`
|
|
2144
2305
|
* @maxLength `512`
|
|
2145
|
-
* @pattern
|
|
2306
|
+
* @pattern `^[\w\-]+$`
|
|
2146
2307
|
*/
|
|
2147
2308
|
SourceFilterId: string;
|
|
2148
2309
|
/**
|
|
@@ -2161,7 +2322,7 @@ export type FilterGroup = {
|
|
|
2161
2322
|
/**
|
|
2162
2323
|
* @minLength `1`
|
|
2163
2324
|
* @maxLength `512`
|
|
2164
|
-
* @pattern
|
|
2325
|
+
* @pattern `^[\w\-]+$`
|
|
2165
2326
|
*/
|
|
2166
2327
|
FilterGroupId: string;
|
|
2167
2328
|
/**
|
|
@@ -2196,14 +2357,14 @@ export type FilterListControl = {
|
|
|
2196
2357
|
/**
|
|
2197
2358
|
* @minLength `1`
|
|
2198
2359
|
* @maxLength `512`
|
|
2199
|
-
* @pattern
|
|
2360
|
+
* @pattern `^[\w\-]+$`
|
|
2200
2361
|
*/
|
|
2201
2362
|
FilterControlId: string;
|
|
2202
2363
|
SelectableValues?: FilterSelectableValues;
|
|
2203
2364
|
/**
|
|
2204
2365
|
* @minLength `1`
|
|
2205
2366
|
* @maxLength `512`
|
|
2206
|
-
* @pattern
|
|
2367
|
+
* @pattern `^[\w\-]+$`
|
|
2207
2368
|
*/
|
|
2208
2369
|
SourceFilterId: string;
|
|
2209
2370
|
/**
|
|
@@ -2224,6 +2385,7 @@ export type FilterNullOption = "ALL_VALUES" | "NULLS_ONLY" | "NON_NULLS_ONLY";
|
|
|
2224
2385
|
*/
|
|
2225
2386
|
export type FilterOperationSelectedFieldsConfiguration = {
|
|
2226
2387
|
/**
|
|
2388
|
+
* <p>The selected columns of a dataset.</p>
|
|
2227
2389
|
* @minLength `0`
|
|
2228
2390
|
* @maxLength `10`
|
|
2229
2391
|
*/
|
|
@@ -2251,13 +2413,13 @@ export type FilterRelativeDateTimeControl = {
|
|
|
2251
2413
|
/**
|
|
2252
2414
|
* @minLength `1`
|
|
2253
2415
|
* @maxLength `512`
|
|
2254
|
-
* @pattern
|
|
2416
|
+
* @pattern `^[\w\-]+$`
|
|
2255
2417
|
*/
|
|
2256
2418
|
FilterControlId: string;
|
|
2257
2419
|
/**
|
|
2258
2420
|
* @minLength `1`
|
|
2259
2421
|
* @maxLength `512`
|
|
2260
|
-
* @pattern
|
|
2422
|
+
* @pattern `^[\w\-]+$`
|
|
2261
2423
|
*/
|
|
2262
2424
|
SourceFilterId: string;
|
|
2263
2425
|
/**
|
|
@@ -2294,7 +2456,7 @@ export type FilterSliderControl = {
|
|
|
2294
2456
|
/**
|
|
2295
2457
|
* @minLength `1`
|
|
2296
2458
|
* @maxLength `512`
|
|
2297
|
-
* @pattern
|
|
2459
|
+
* @pattern `^[\w\-]+$`
|
|
2298
2460
|
*/
|
|
2299
2461
|
FilterControlId: string;
|
|
2300
2462
|
MaximumValue: number;
|
|
@@ -2302,7 +2464,7 @@ export type FilterSliderControl = {
|
|
|
2302
2464
|
/**
|
|
2303
2465
|
* @minLength `1`
|
|
2304
2466
|
* @maxLength `512`
|
|
2305
|
-
* @pattern
|
|
2467
|
+
* @pattern `^[\w\-]+$`
|
|
2306
2468
|
*/
|
|
2307
2469
|
SourceFilterId: string;
|
|
2308
2470
|
StepSize: number;
|
|
@@ -2327,13 +2489,13 @@ export type FilterTextAreaControl = {
|
|
|
2327
2489
|
/**
|
|
2328
2490
|
* @minLength `1`
|
|
2329
2491
|
* @maxLength `512`
|
|
2330
|
-
* @pattern
|
|
2492
|
+
* @pattern `^[\w\-]+$`
|
|
2331
2493
|
*/
|
|
2332
2494
|
FilterControlId: string;
|
|
2333
2495
|
/**
|
|
2334
2496
|
* @minLength `1`
|
|
2335
2497
|
* @maxLength `512`
|
|
2336
|
-
* @pattern
|
|
2498
|
+
* @pattern `^[\w\-]+$`
|
|
2337
2499
|
*/
|
|
2338
2500
|
SourceFilterId: string;
|
|
2339
2501
|
/**
|
|
@@ -2351,13 +2513,13 @@ export type FilterTextFieldControl = {
|
|
|
2351
2513
|
/**
|
|
2352
2514
|
* @minLength `1`
|
|
2353
2515
|
* @maxLength `512`
|
|
2354
|
-
* @pattern
|
|
2516
|
+
* @pattern `^[\w\-]+$`
|
|
2355
2517
|
*/
|
|
2356
2518
|
FilterControlId: string;
|
|
2357
2519
|
/**
|
|
2358
2520
|
* @minLength `1`
|
|
2359
2521
|
* @maxLength `512`
|
|
2360
|
-
* @pattern
|
|
2522
|
+
* @pattern `^[\w\-]+$`
|
|
2361
2523
|
*/
|
|
2362
2524
|
SourceFilterId: string;
|
|
2363
2525
|
/**
|
|
@@ -2422,7 +2584,7 @@ export type ForecastComputation = {
|
|
|
2422
2584
|
/**
|
|
2423
2585
|
* @minLength `1`
|
|
2424
2586
|
* @maxLength `512`
|
|
2425
|
-
* @pattern
|
|
2587
|
+
* @pattern `^[\w\-]+$`
|
|
2426
2588
|
*/
|
|
2427
2589
|
ComputationId: string;
|
|
2428
2590
|
/**
|
|
@@ -2511,7 +2673,7 @@ export type FreeFormLayoutElement = {
|
|
|
2511
2673
|
/**
|
|
2512
2674
|
* @minLength `1`
|
|
2513
2675
|
* @maxLength `512`
|
|
2514
|
-
* @pattern
|
|
2676
|
+
* @pattern `^[\w\-]+$`
|
|
2515
2677
|
*/
|
|
2516
2678
|
ElementId: string;
|
|
2517
2679
|
ElementType: LayoutElementType;
|
|
@@ -2673,7 +2835,7 @@ export type FunnelChartVisual = {
|
|
|
2673
2835
|
/**
|
|
2674
2836
|
* @minLength `1`
|
|
2675
2837
|
* @maxLength `512`
|
|
2676
|
-
* @pattern
|
|
2838
|
+
* @pattern `^[\w\-]+$`
|
|
2677
2839
|
*/
|
|
2678
2840
|
VisualId: string;
|
|
2679
2841
|
};
|
|
@@ -2766,7 +2928,7 @@ export type GaugeChartVisual = {
|
|
|
2766
2928
|
/**
|
|
2767
2929
|
* @minLength `1`
|
|
2768
2930
|
* @maxLength `512`
|
|
2769
|
-
* @pattern
|
|
2931
|
+
* @pattern `^[\w\-]+$`
|
|
2770
2932
|
*/
|
|
2771
2933
|
VisualId: string;
|
|
2772
2934
|
};
|
|
@@ -2893,7 +3055,7 @@ export type GeospatialMapVisual = {
|
|
|
2893
3055
|
/**
|
|
2894
3056
|
* @minLength `1`
|
|
2895
3057
|
* @maxLength `512`
|
|
2896
|
-
* @pattern
|
|
3058
|
+
* @pattern `^[\w\-]+$`
|
|
2897
3059
|
*/
|
|
2898
3060
|
VisualId: string;
|
|
2899
3061
|
};
|
|
@@ -2987,7 +3149,7 @@ export type GridLayoutElement = {
|
|
|
2987
3149
|
/**
|
|
2988
3150
|
* @minLength `1`
|
|
2989
3151
|
* @maxLength `512`
|
|
2990
|
-
* @pattern
|
|
3152
|
+
* @pattern `^[\w\-]+$`
|
|
2991
3153
|
*/
|
|
2992
3154
|
ElementId: string;
|
|
2993
3155
|
ElementType: LayoutElementType;
|
|
@@ -3021,7 +3183,7 @@ export type GrowthRateComputation = {
|
|
|
3021
3183
|
/**
|
|
3022
3184
|
* @minLength `1`
|
|
3023
3185
|
* @maxLength `512`
|
|
3024
|
-
* @pattern
|
|
3186
|
+
* @pattern `^[\w\-]+$`
|
|
3025
3187
|
*/
|
|
3026
3188
|
ComputationId: string;
|
|
3027
3189
|
Name?: string;
|
|
@@ -3042,7 +3204,7 @@ export type HeaderFooterSectionConfiguration = {
|
|
|
3042
3204
|
/**
|
|
3043
3205
|
* @minLength `1`
|
|
3044
3206
|
* @maxLength `512`
|
|
3045
|
-
* @pattern
|
|
3207
|
+
* @pattern `^[\w\-]+$`
|
|
3046
3208
|
*/
|
|
3047
3209
|
SectionId: string;
|
|
3048
3210
|
Style?: SectionStyle;
|
|
@@ -3128,7 +3290,7 @@ export type HeatMapVisual = {
|
|
|
3128
3290
|
/**
|
|
3129
3291
|
* @minLength `1`
|
|
3130
3292
|
* @maxLength `512`
|
|
3131
|
-
* @pattern
|
|
3293
|
+
* @pattern `^[\w\-]+$`
|
|
3132
3294
|
*/
|
|
3133
3295
|
VisualId: string;
|
|
3134
3296
|
};
|
|
@@ -3195,7 +3357,7 @@ export type HistogramVisual = {
|
|
|
3195
3357
|
/**
|
|
3196
3358
|
* @minLength `1`
|
|
3197
3359
|
* @maxLength `512`
|
|
3198
|
-
* @pattern
|
|
3360
|
+
* @pattern `^[\w\-]+$`
|
|
3199
3361
|
*/
|
|
3200
3362
|
VisualId: string;
|
|
3201
3363
|
};
|
|
@@ -3242,7 +3404,7 @@ export type InsightVisual = {
|
|
|
3242
3404
|
/**
|
|
3243
3405
|
* @minLength `1`
|
|
3244
3406
|
* @maxLength `512`
|
|
3245
|
-
* @pattern
|
|
3407
|
+
* @pattern `^[\w\-]+$`
|
|
3246
3408
|
*/
|
|
3247
3409
|
VisualId: string;
|
|
3248
3410
|
};
|
|
@@ -3260,13 +3422,18 @@ export type IntegerDefaultValues = {
|
|
|
3260
3422
|
};
|
|
3261
3423
|
/**
|
|
3262
3424
|
* Type definition for `AWS::QuickSight::Analysis.IntegerParameter`.
|
|
3425
|
+
* <p>An integer parameter.</p>
|
|
3263
3426
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-integerparameter.html}
|
|
3264
3427
|
*/
|
|
3265
3428
|
export type IntegerParameter = {
|
|
3266
3429
|
/**
|
|
3267
|
-
*
|
|
3430
|
+
* <p>The name of the integer parameter.</p>
|
|
3431
|
+
* @pattern `\S`
|
|
3268
3432
|
*/
|
|
3269
3433
|
Name: string;
|
|
3434
|
+
/**
|
|
3435
|
+
* <p>The values for the integer parameter.</p>
|
|
3436
|
+
*/
|
|
3270
3437
|
Values: number[];
|
|
3271
3438
|
};
|
|
3272
3439
|
/**
|
|
@@ -3453,7 +3620,7 @@ export type KPIVisual = {
|
|
|
3453
3620
|
/**
|
|
3454
3621
|
* @minLength `1`
|
|
3455
3622
|
* @maxLength `512`
|
|
3456
|
-
* @pattern
|
|
3623
|
+
* @pattern `^[\w\-]+$`
|
|
3457
3624
|
*/
|
|
3458
3625
|
VisualId: string;
|
|
3459
3626
|
};
|
|
@@ -3703,7 +3870,7 @@ export type LineChartVisual = {
|
|
|
3703
3870
|
/**
|
|
3704
3871
|
* @minLength `1`
|
|
3705
3872
|
* @maxLength `512`
|
|
3706
|
-
* @pattern
|
|
3873
|
+
* @pattern `^[\w\-]+$`
|
|
3707
3874
|
*/
|
|
3708
3875
|
VisualId: string;
|
|
3709
3876
|
};
|
|
@@ -3763,7 +3930,7 @@ export type LocalNavigationConfiguration = {
|
|
|
3763
3930
|
/**
|
|
3764
3931
|
* @minLength `1`
|
|
3765
3932
|
* @maxLength `512`
|
|
3766
|
-
* @pattern
|
|
3933
|
+
* @pattern `^[\w\-]+$`
|
|
3767
3934
|
*/
|
|
3768
3935
|
TargetSheetId: string;
|
|
3769
3936
|
};
|
|
@@ -3820,7 +3987,7 @@ export type MaximumMinimumComputation = {
|
|
|
3820
3987
|
/**
|
|
3821
3988
|
* @minLength `1`
|
|
3822
3989
|
* @maxLength `512`
|
|
3823
|
-
* @pattern
|
|
3990
|
+
* @pattern `^[\w\-]+$`
|
|
3824
3991
|
*/
|
|
3825
3992
|
ComputationId: string;
|
|
3826
3993
|
Name?: string;
|
|
@@ -3851,7 +4018,7 @@ export type MetricComparisonComputation = {
|
|
|
3851
4018
|
/**
|
|
3852
4019
|
* @minLength `1`
|
|
3853
4020
|
* @maxLength `512`
|
|
3854
|
-
* @pattern
|
|
4021
|
+
* @pattern `^[\w\-]+$`
|
|
3855
4022
|
*/
|
|
3856
4023
|
ComputationId: string;
|
|
3857
4024
|
FromValue?: MeasureField;
|
|
@@ -3997,10 +4164,11 @@ export type NumericEqualityDrillDownFilter = {
|
|
|
3997
4164
|
export type NumericEqualityFilter = {
|
|
3998
4165
|
AggregationFunction?: AggregationFunction;
|
|
3999
4166
|
Column: ColumnIdentifier;
|
|
4167
|
+
DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
|
|
4000
4168
|
/**
|
|
4001
4169
|
* @minLength `1`
|
|
4002
4170
|
* @maxLength `512`
|
|
4003
|
-
* @pattern
|
|
4171
|
+
* @pattern `^[\w\-]+$`
|
|
4004
4172
|
*/
|
|
4005
4173
|
FilterId: string;
|
|
4006
4174
|
MatchOperator: NumericEqualityMatchOperator;
|
|
@@ -4040,10 +4208,11 @@ export type NumericFormatConfiguration = {
|
|
|
4040
4208
|
export type NumericRangeFilter = {
|
|
4041
4209
|
AggregationFunction?: AggregationFunction;
|
|
4042
4210
|
Column: ColumnIdentifier;
|
|
4211
|
+
DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
|
|
4043
4212
|
/**
|
|
4044
4213
|
* @minLength `1`
|
|
4045
4214
|
* @maxLength `512`
|
|
4046
|
-
* @pattern
|
|
4215
|
+
* @pattern `^[\w\-]+$`
|
|
4047
4216
|
*/
|
|
4048
4217
|
FilterId: string;
|
|
4049
4218
|
IncludeMaximum?: boolean;
|
|
@@ -4167,7 +4336,7 @@ export type ParameterDateTimePickerControl = {
|
|
|
4167
4336
|
/**
|
|
4168
4337
|
* @minLength `1`
|
|
4169
4338
|
* @maxLength `512`
|
|
4170
|
-
* @pattern
|
|
4339
|
+
* @pattern `^[\w\-]+$`
|
|
4171
4340
|
*/
|
|
4172
4341
|
ParameterControlId: string;
|
|
4173
4342
|
/**
|
|
@@ -4202,7 +4371,7 @@ export type ParameterDropDownControl = {
|
|
|
4202
4371
|
/**
|
|
4203
4372
|
* @minLength `1`
|
|
4204
4373
|
* @maxLength `512`
|
|
4205
|
-
* @pattern
|
|
4374
|
+
* @pattern `^[\w\-]+$`
|
|
4206
4375
|
*/
|
|
4207
4376
|
ParameterControlId: string;
|
|
4208
4377
|
SelectableValues?: ParameterSelectableValues;
|
|
@@ -4229,7 +4398,7 @@ export type ParameterListControl = {
|
|
|
4229
4398
|
/**
|
|
4230
4399
|
* @minLength `1`
|
|
4231
4400
|
* @maxLength `512`
|
|
4232
|
-
* @pattern
|
|
4401
|
+
* @pattern `^[\w\-]+$`
|
|
4233
4402
|
*/
|
|
4234
4403
|
ParameterControlId: string;
|
|
4235
4404
|
SelectableValues?: ParameterSelectableValues;
|
|
@@ -4248,25 +4417,30 @@ export type ParameterListControl = {
|
|
|
4248
4417
|
};
|
|
4249
4418
|
/**
|
|
4250
4419
|
* Type definition for `AWS::QuickSight::Analysis.Parameters`.
|
|
4420
|
+
* <p>A list of Amazon QuickSight parameters and the list's override values.</p>
|
|
4251
4421
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-parameters.html}
|
|
4252
4422
|
*/
|
|
4253
4423
|
export type Parameters = {
|
|
4254
4424
|
/**
|
|
4425
|
+
* <p>The parameters that have a data type of date-time.</p>
|
|
4255
4426
|
* @minLength `0`
|
|
4256
4427
|
* @maxLength `100`
|
|
4257
4428
|
*/
|
|
4258
4429
|
DateTimeParameters?: DateTimeParameter[];
|
|
4259
4430
|
/**
|
|
4431
|
+
* <p>The parameters that have a data type of decimal.</p>
|
|
4260
4432
|
* @minLength `0`
|
|
4261
4433
|
* @maxLength `100`
|
|
4262
4434
|
*/
|
|
4263
4435
|
DecimalParameters?: DecimalParameter[];
|
|
4264
4436
|
/**
|
|
4437
|
+
* <p>The parameters that have a data type of integer.</p>
|
|
4265
4438
|
* @minLength `0`
|
|
4266
4439
|
* @maxLength `100`
|
|
4267
4440
|
*/
|
|
4268
4441
|
IntegerParameters?: IntegerParameter[];
|
|
4269
4442
|
/**
|
|
4443
|
+
* <p>The parameters that have a data type of string.</p>
|
|
4270
4444
|
* @minLength `0`
|
|
4271
4445
|
* @maxLength `100`
|
|
4272
4446
|
*/
|
|
@@ -4295,7 +4469,7 @@ export type ParameterSliderControl = {
|
|
|
4295
4469
|
/**
|
|
4296
4470
|
* @minLength `1`
|
|
4297
4471
|
* @maxLength `512`
|
|
4298
|
-
* @pattern
|
|
4472
|
+
* @pattern `^[\w\-]+$`
|
|
4299
4473
|
*/
|
|
4300
4474
|
ParameterControlId: string;
|
|
4301
4475
|
/**
|
|
@@ -4325,7 +4499,7 @@ export type ParameterTextAreaControl = {
|
|
|
4325
4499
|
/**
|
|
4326
4500
|
* @minLength `1`
|
|
4327
4501
|
* @maxLength `512`
|
|
4328
|
-
* @pattern
|
|
4502
|
+
* @pattern `^[\w\-]+$`
|
|
4329
4503
|
*/
|
|
4330
4504
|
ParameterControlId: string;
|
|
4331
4505
|
/**
|
|
@@ -4349,7 +4523,7 @@ export type ParameterTextFieldControl = {
|
|
|
4349
4523
|
/**
|
|
4350
4524
|
* @minLength `1`
|
|
4351
4525
|
* @maxLength `512`
|
|
4352
|
-
* @pattern
|
|
4526
|
+
* @pattern `^[\w\-]+$`
|
|
4353
4527
|
*/
|
|
4354
4528
|
ParameterControlId: string;
|
|
4355
4529
|
/**
|
|
@@ -4424,7 +4598,7 @@ export type PeriodOverPeriodComputation = {
|
|
|
4424
4598
|
/**
|
|
4425
4599
|
* @minLength `1`
|
|
4426
4600
|
* @maxLength `512`
|
|
4427
|
-
* @pattern
|
|
4601
|
+
* @pattern `^[\w\-]+$`
|
|
4428
4602
|
*/
|
|
4429
4603
|
ComputationId: string;
|
|
4430
4604
|
Name?: string;
|
|
@@ -4439,7 +4613,7 @@ export type PeriodToDateComputation = {
|
|
|
4439
4613
|
/**
|
|
4440
4614
|
* @minLength `1`
|
|
4441
4615
|
* @maxLength `512`
|
|
4442
|
-
* @pattern
|
|
4616
|
+
* @pattern `^[\w\-]+$`
|
|
4443
4617
|
*/
|
|
4444
4618
|
ComputationId: string;
|
|
4445
4619
|
Name?: string;
|
|
@@ -4535,7 +4709,7 @@ export type PieChartVisual = {
|
|
|
4535
4709
|
/**
|
|
4536
4710
|
* @minLength `1`
|
|
4537
4711
|
* @maxLength `512`
|
|
4538
|
-
* @pattern
|
|
4712
|
+
* @pattern `^[\w\-]+$`
|
|
4539
4713
|
*/
|
|
4540
4714
|
VisualId: string;
|
|
4541
4715
|
};
|
|
@@ -4833,7 +5007,7 @@ export type PivotTableVisual = {
|
|
|
4833
5007
|
/**
|
|
4834
5008
|
* @minLength `1`
|
|
4835
5009
|
* @maxLength `512`
|
|
4836
|
-
* @pattern
|
|
5010
|
+
* @pattern `^[\w\-]+$`
|
|
4837
5011
|
*/
|
|
4838
5012
|
VisualId: string;
|
|
4839
5013
|
};
|
|
@@ -5010,7 +5184,7 @@ export type RadarChartVisual = {
|
|
|
5010
5184
|
/**
|
|
5011
5185
|
* @minLength `1`
|
|
5012
5186
|
* @maxLength `512`
|
|
5013
|
-
* @pattern
|
|
5187
|
+
* @pattern `^[\w\-]+$`
|
|
5014
5188
|
*/
|
|
5015
5189
|
VisualId: string;
|
|
5016
5190
|
};
|
|
@@ -5037,7 +5211,7 @@ export type ReferenceLine = {
|
|
|
5037
5211
|
*/
|
|
5038
5212
|
export type ReferenceLineCustomLabelConfiguration = {
|
|
5039
5213
|
/**
|
|
5040
|
-
* @pattern
|
|
5214
|
+
* @pattern `\S`
|
|
5041
5215
|
*/
|
|
5042
5216
|
CustomLabel: string;
|
|
5043
5217
|
};
|
|
@@ -5133,11 +5307,12 @@ export type ReferenceLineValueLabelRelativePosition = "BEFORE_CUSTOM_LABEL" | "A
|
|
|
5133
5307
|
export type RelativeDatesFilter = {
|
|
5134
5308
|
AnchorDateConfiguration: AnchorDateConfiguration;
|
|
5135
5309
|
Column: ColumnIdentifier;
|
|
5310
|
+
DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
|
|
5136
5311
|
ExcludePeriodConfiguration?: ExcludePeriodConfiguration;
|
|
5137
5312
|
/**
|
|
5138
5313
|
* @minLength `1`
|
|
5139
5314
|
* @maxLength `512`
|
|
5140
|
-
* @pattern
|
|
5315
|
+
* @pattern `^[\w\-]+$`
|
|
5141
5316
|
*/
|
|
5142
5317
|
FilterId: string;
|
|
5143
5318
|
MinimumGranularity?: TimeGranularity;
|
|
@@ -5182,18 +5357,35 @@ export type RelativeFontSize = "EXTRA_SMALL" | "SMALL" | "MEDIUM" | "LARGE" | "E
|
|
|
5182
5357
|
export type ResizeOption = "FIXED" | "RESPONSIVE";
|
|
5183
5358
|
/**
|
|
5184
5359
|
* Type definition for `AWS::QuickSight::Analysis.ResourcePermission`.
|
|
5360
|
+
* <p>Permission for the resource.</p>
|
|
5185
5361
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-resourcepermission.html}
|
|
5186
5362
|
*/
|
|
5187
5363
|
export type ResourcePermission = {
|
|
5188
5364
|
/**
|
|
5365
|
+
* <p>The IAM action to grant or revoke permissions on.</p>
|
|
5189
5366
|
* @minLength `1`
|
|
5190
5367
|
* @maxLength `20`
|
|
5191
5368
|
*/
|
|
5192
5369
|
Actions: string[];
|
|
5193
5370
|
/**
|
|
5194
|
-
|
|
5195
|
-
|
|
5196
|
-
|
|
5371
|
+
* <p>The Amazon Resource Name (ARN) of the principal. This can be one of the
|
|
5372
|
+
following:</p>
|
|
5373
|
+
<ul>
|
|
5374
|
+
<li>
|
|
5375
|
+
<p>The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)</p>
|
|
5376
|
+
</li>
|
|
5377
|
+
<li>
|
|
5378
|
+
<p>The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)</p>
|
|
5379
|
+
</li>
|
|
5380
|
+
<li>
|
|
5381
|
+
<p>The ARN of an Amazon Web Services account root: This is an IAM ARN rather than a QuickSight
|
|
5382
|
+
ARN. Use this option only to share resources (templates) across Amazon Web Services accounts.
|
|
5383
|
+
(This is less common.) </p>
|
|
5384
|
+
</li>
|
|
5385
|
+
</ul>
|
|
5386
|
+
* @minLength `1`
|
|
5387
|
+
* @maxLength `256`
|
|
5388
|
+
*/
|
|
5197
5389
|
Principal: string;
|
|
5198
5390
|
};
|
|
5199
5391
|
/**
|
|
@@ -5308,7 +5500,7 @@ export type SankeyDiagramVisual = {
|
|
|
5308
5500
|
/**
|
|
5309
5501
|
* @minLength `1`
|
|
5310
5502
|
* @maxLength `512`
|
|
5311
|
-
* @pattern
|
|
5503
|
+
* @pattern `^[\w\-]+$`
|
|
5312
5504
|
*/
|
|
5313
5505
|
VisualId: string;
|
|
5314
5506
|
};
|
|
@@ -5418,7 +5610,7 @@ export type ScatterPlotVisual = {
|
|
|
5418
5610
|
/**
|
|
5419
5611
|
* @minLength `1`
|
|
5420
5612
|
* @maxLength `512`
|
|
5421
|
-
* @pattern
|
|
5613
|
+
* @pattern `^[\w\-]+$`
|
|
5422
5614
|
*/
|
|
5423
5615
|
VisualId: string;
|
|
5424
5616
|
};
|
|
@@ -5568,18 +5760,26 @@ export type ShapeConditionalFormat = {
|
|
|
5568
5760
|
};
|
|
5569
5761
|
/**
|
|
5570
5762
|
* Type definition for `AWS::QuickSight::Analysis.Sheet`.
|
|
5763
|
+
* <p>A <i>sheet</i>, which is an object that contains a set of visuals that
|
|
5764
|
+
are viewed together on one page in Amazon QuickSight. Every analysis and dashboard
|
|
5765
|
+
contains at least one sheet. Each sheet contains at least one visualization widget, for
|
|
5766
|
+
example a chart, pivot table, or narrative insight. Sheets can be associated with other
|
|
5767
|
+
components, such as controls, filters, and so on.</p>
|
|
5571
5768
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheet.html}
|
|
5572
5769
|
*/
|
|
5573
5770
|
export type Sheet = {
|
|
5574
5771
|
/**
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5772
|
+
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
5773
|
+
console.</p>
|
|
5774
|
+
* @minLength `1`
|
|
5775
|
+
* @maxLength `2048`
|
|
5776
|
+
*/
|
|
5578
5777
|
Name?: string;
|
|
5579
5778
|
/**
|
|
5779
|
+
* <p>The unique identifier associated with a sheet.</p>
|
|
5580
5780
|
* @minLength `1`
|
|
5581
5781
|
* @maxLength `512`
|
|
5582
|
-
* @pattern
|
|
5782
|
+
* @pattern `^[\w\-]+$`
|
|
5583
5783
|
*/
|
|
5584
5784
|
SheetId?: string;
|
|
5585
5785
|
};
|
|
@@ -5668,7 +5868,7 @@ export type SheetDefinition = {
|
|
|
5668
5868
|
/**
|
|
5669
5869
|
* @minLength `1`
|
|
5670
5870
|
* @maxLength `512`
|
|
5671
|
-
* @pattern
|
|
5871
|
+
* @pattern `^[\w\-]+$`
|
|
5672
5872
|
*/
|
|
5673
5873
|
SheetId: string;
|
|
5674
5874
|
/**
|
|
@@ -5719,7 +5919,7 @@ export type SheetTextBox = {
|
|
|
5719
5919
|
/**
|
|
5720
5920
|
* @minLength `1`
|
|
5721
5921
|
* @maxLength `512`
|
|
5722
|
-
* @pattern
|
|
5922
|
+
* @pattern `^[\w\-]+$`
|
|
5723
5923
|
*/
|
|
5724
5924
|
SheetTextBoxId: string;
|
|
5725
5925
|
};
|
|
@@ -5732,7 +5932,7 @@ export type SheetVisualScopingConfiguration = {
|
|
|
5732
5932
|
/**
|
|
5733
5933
|
* @minLength `1`
|
|
5734
5934
|
* @maxLength `512`
|
|
5735
|
-
* @pattern
|
|
5935
|
+
* @pattern `^[\w\-]+$`
|
|
5736
5936
|
*/
|
|
5737
5937
|
SheetId: string;
|
|
5738
5938
|
/**
|
|
@@ -5881,13 +6081,18 @@ export type StringFormatConfiguration = {
|
|
|
5881
6081
|
};
|
|
5882
6082
|
/**
|
|
5883
6083
|
* Type definition for `AWS::QuickSight::Analysis.StringParameter`.
|
|
6084
|
+
* <p>A string parameter.</p>
|
|
5884
6085
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-stringparameter.html}
|
|
5885
6086
|
*/
|
|
5886
6087
|
export type StringParameter = {
|
|
5887
6088
|
/**
|
|
5888
|
-
*
|
|
6089
|
+
* <p>A display name for a string parameter.</p>
|
|
6090
|
+
* @pattern `\S`
|
|
5889
6091
|
*/
|
|
5890
6092
|
Name: string;
|
|
6093
|
+
/**
|
|
6094
|
+
* <p>The values of a string parameter.</p>
|
|
6095
|
+
*/
|
|
5891
6096
|
Values: string[];
|
|
5892
6097
|
};
|
|
5893
6098
|
/**
|
|
@@ -6279,21 +6484,25 @@ export type TableVisual = {
|
|
|
6279
6484
|
/**
|
|
6280
6485
|
* @minLength `1`
|
|
6281
6486
|
* @maxLength `512`
|
|
6282
|
-
* @pattern
|
|
6487
|
+
* @pattern `^[\w\-]+$`
|
|
6283
6488
|
*/
|
|
6284
6489
|
VisualId: string;
|
|
6285
6490
|
};
|
|
6286
6491
|
/**
|
|
6287
6492
|
* Type definition for `AWS::QuickSight::Analysis.Tag`.
|
|
6493
|
+
* <p>The key or keys of the key-value pairs for the resource tag or tags assigned to the
|
|
6494
|
+
resource.</p>
|
|
6288
6495
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tag.html}
|
|
6289
6496
|
*/
|
|
6290
6497
|
export type Tag = {
|
|
6291
6498
|
/**
|
|
6499
|
+
* <p>Tag key.</p>
|
|
6292
6500
|
* @minLength `1`
|
|
6293
6501
|
* @maxLength `128`
|
|
6294
6502
|
*/
|
|
6295
6503
|
Key: string;
|
|
6296
6504
|
/**
|
|
6505
|
+
* <p>Tag value.</p>
|
|
6297
6506
|
* @minLength `1`
|
|
6298
6507
|
* @maxLength `256`
|
|
6299
6508
|
*/
|
|
@@ -6385,10 +6594,11 @@ export type TimeBasedForecastProperties = {
|
|
|
6385
6594
|
*/
|
|
6386
6595
|
export type TimeEqualityFilter = {
|
|
6387
6596
|
Column: ColumnIdentifier;
|
|
6597
|
+
DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
|
|
6388
6598
|
/**
|
|
6389
6599
|
* @minLength `1`
|
|
6390
6600
|
* @maxLength `512`
|
|
6391
|
-
* @pattern
|
|
6601
|
+
* @pattern `^[\w\-]+$`
|
|
6392
6602
|
*/
|
|
6393
6603
|
FilterId: string;
|
|
6394
6604
|
/**
|
|
@@ -6422,11 +6632,12 @@ export type TimeRangeDrillDownFilter = {
|
|
|
6422
6632
|
*/
|
|
6423
6633
|
export type TimeRangeFilter = {
|
|
6424
6634
|
Column: ColumnIdentifier;
|
|
6635
|
+
DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
|
|
6425
6636
|
ExcludePeriodConfiguration?: ExcludePeriodConfiguration;
|
|
6426
6637
|
/**
|
|
6427
6638
|
* @minLength `1`
|
|
6428
6639
|
* @maxLength `512`
|
|
6429
|
-
* @pattern
|
|
6640
|
+
* @pattern `^[\w\-]+$`
|
|
6430
6641
|
*/
|
|
6431
6642
|
FilterId: string;
|
|
6432
6643
|
IncludeMaximum?: boolean;
|
|
@@ -6488,10 +6699,11 @@ export type TopBottomFilter = {
|
|
|
6488
6699
|
*/
|
|
6489
6700
|
AggregationSortConfigurations: AggregationSortConfiguration[];
|
|
6490
6701
|
Column: ColumnIdentifier;
|
|
6702
|
+
DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
|
|
6491
6703
|
/**
|
|
6492
6704
|
* @minLength `1`
|
|
6493
6705
|
* @maxLength `512`
|
|
6494
|
-
* @pattern
|
|
6706
|
+
* @pattern `^[\w\-]+$`
|
|
6495
6707
|
*/
|
|
6496
6708
|
FilterId: string;
|
|
6497
6709
|
Limit?: number;
|
|
@@ -6512,7 +6724,7 @@ export type TopBottomMoversComputation = {
|
|
|
6512
6724
|
/**
|
|
6513
6725
|
* @minLength `1`
|
|
6514
6726
|
* @maxLength `512`
|
|
6515
|
-
* @pattern
|
|
6727
|
+
* @pattern `^[\w\-]+$`
|
|
6516
6728
|
*/
|
|
6517
6729
|
ComputationId: string;
|
|
6518
6730
|
/**
|
|
@@ -6535,7 +6747,7 @@ export type TopBottomRankedComputation = {
|
|
|
6535
6747
|
/**
|
|
6536
6748
|
* @minLength `1`
|
|
6537
6749
|
* @maxLength `512`
|
|
6538
|
-
* @pattern
|
|
6750
|
+
* @pattern `^[\w\-]+$`
|
|
6539
6751
|
*/
|
|
6540
6752
|
ComputationId: string;
|
|
6541
6753
|
Name?: string;
|
|
@@ -6560,7 +6772,7 @@ export type TotalAggregationComputation = {
|
|
|
6560
6772
|
/**
|
|
6561
6773
|
* @minLength `1`
|
|
6562
6774
|
* @maxLength `512`
|
|
6563
|
-
* @pattern
|
|
6775
|
+
* @pattern `^[\w\-]+$`
|
|
6564
6776
|
*/
|
|
6565
6777
|
ComputationId: string;
|
|
6566
6778
|
Name?: string;
|
|
@@ -6677,7 +6889,7 @@ export type TreeMapVisual = {
|
|
|
6677
6889
|
/**
|
|
6678
6890
|
* @minLength `1`
|
|
6679
6891
|
* @maxLength `512`
|
|
6680
|
-
* @pattern
|
|
6892
|
+
* @pattern `^[\w\-]+$`
|
|
6681
6893
|
*/
|
|
6682
6894
|
VisualId: string;
|
|
6683
6895
|
};
|
|
@@ -6710,7 +6922,7 @@ export type UniqueValuesComputation = {
|
|
|
6710
6922
|
/**
|
|
6711
6923
|
* @minLength `1`
|
|
6712
6924
|
* @maxLength `512`
|
|
6713
|
-
* @pattern
|
|
6925
|
+
* @pattern `^[\w\-]+$`
|
|
6714
6926
|
*/
|
|
6715
6927
|
ComputationId: string;
|
|
6716
6928
|
Name?: string;
|
|
@@ -6722,6 +6934,7 @@ export type UniqueValuesComputation = {
|
|
|
6722
6934
|
export type URLTargetConfiguration = "NEW_TAB" | "NEW_WINDOW" | "SAME_TAB";
|
|
6723
6935
|
/**
|
|
6724
6936
|
* Type definition for `AWS::QuickSight::Analysis.ValidationStrategy`.
|
|
6937
|
+
* <p>The option to relax the validation that is required to create and update analyses, dashboards, and templates with definition objects. When you set this value to <code>LENIENT</code>, validation is skipped for specific errors.</p>
|
|
6725
6938
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-validationstrategy.html}
|
|
6726
6939
|
*/
|
|
6727
6940
|
export type ValidationStrategy = {
|
|
@@ -6796,7 +7009,7 @@ export type VisualCustomAction = {
|
|
|
6796
7009
|
/**
|
|
6797
7010
|
* @minLength `1`
|
|
6798
7011
|
* @maxLength `512`
|
|
6799
|
-
* @pattern
|
|
7012
|
+
* @pattern `^[\w\-]+$`
|
|
6800
7013
|
*/
|
|
6801
7014
|
CustomActionId: string;
|
|
6802
7015
|
/**
|
|
@@ -6937,7 +7150,7 @@ export type WaterfallVisual = {
|
|
|
6937
7150
|
/**
|
|
6938
7151
|
* @minLength `1`
|
|
6939
7152
|
* @maxLength `512`
|
|
6940
|
-
* @pattern
|
|
7153
|
+
* @pattern `^[\w\-]+$`
|
|
6941
7154
|
*/
|
|
6942
7155
|
VisualId: string;
|
|
6943
7156
|
};
|
|
@@ -7050,7 +7263,7 @@ export type WordCloudVisual = {
|
|
|
7050
7263
|
/**
|
|
7051
7264
|
* @minLength `1`
|
|
7052
7265
|
* @maxLength `512`
|
|
7053
|
-
* @pattern
|
|
7266
|
+
* @pattern `^[\w\-]+$`
|
|
7054
7267
|
*/
|
|
7055
7268
|
VisualId: string;
|
|
7056
7269
|
};
|