@awboost/cfn-resource-types 0.1.63 → 0.1.64
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-EC2-TransitGatewayRouteTableAssociation.d.ts +8 -7
- 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/package.json +1 -1
|
@@ -14,9 +14,13 @@ export type QuickSightThemeProperties = {
|
|
|
14
14
|
/**
|
|
15
15
|
* @minLength `1`
|
|
16
16
|
* @maxLength `512`
|
|
17
|
-
* @pattern
|
|
17
|
+
* @pattern `^[\w\-]+$`
|
|
18
18
|
*/
|
|
19
19
|
BaseThemeId: string;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The theme configuration. This configuration contains all of the display properties for
|
|
22
|
+
a theme.</p>
|
|
23
|
+
*/
|
|
20
24
|
Configuration: ThemeConfiguration;
|
|
21
25
|
/**
|
|
22
26
|
* @minLength `1`
|
|
@@ -36,7 +40,7 @@ export type QuickSightThemeProperties = {
|
|
|
36
40
|
/**
|
|
37
41
|
* @minLength `1`
|
|
38
42
|
* @maxLength `512`
|
|
39
|
-
* @pattern
|
|
43
|
+
* @pattern `^[\w\-]+$`
|
|
40
44
|
*/
|
|
41
45
|
ThemeId: string;
|
|
42
46
|
/**
|
|
@@ -50,46 +54,104 @@ export type QuickSightThemeProperties = {
|
|
|
50
54
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-theme.html#aws-resource-quicksight-theme-return-values}
|
|
51
55
|
*/
|
|
52
56
|
export type QuickSightThemeAttributes = {
|
|
57
|
+
/**
|
|
58
|
+
* <p>The Amazon Resource Name (ARN) of the theme.</p>
|
|
59
|
+
*/
|
|
53
60
|
Arn: string;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The date and time that the theme was created.</p>
|
|
63
|
+
*/
|
|
54
64
|
CreatedTime: string;
|
|
65
|
+
/**
|
|
66
|
+
* <p>The date and time that the theme was last updated.</p>
|
|
67
|
+
*/
|
|
55
68
|
LastUpdatedTime: string;
|
|
56
69
|
Type: ThemeType;
|
|
70
|
+
/**
|
|
71
|
+
* <p>A version of a theme.</p>
|
|
72
|
+
*/
|
|
57
73
|
Version: {
|
|
58
|
-
Arn: string;
|
|
59
74
|
/**
|
|
60
|
-
*
|
|
61
|
-
* @maxLength `512`
|
|
62
|
-
* @pattern `[\w\-]+`
|
|
75
|
+
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
63
76
|
*/
|
|
77
|
+
Arn: string;
|
|
78
|
+
/**
|
|
79
|
+
* <p>The Amazon QuickSight-defined ID of the theme that a custom theme inherits from. All
|
|
80
|
+
themes initially inherit from a default Amazon QuickSight theme.</p>
|
|
81
|
+
* @minLength `1`
|
|
82
|
+
* @maxLength `512`
|
|
83
|
+
* @pattern `^[\w\-]+$`
|
|
84
|
+
*/
|
|
64
85
|
BaseThemeId: string;
|
|
86
|
+
/**
|
|
87
|
+
* <p>The theme configuration. This configuration contains all of the display properties for
|
|
88
|
+
a theme.</p>
|
|
89
|
+
*/
|
|
65
90
|
Configuration: {
|
|
91
|
+
/**
|
|
92
|
+
* <p>The theme colors that are used for data colors in charts. The colors description is a
|
|
93
|
+
hexadecimal color code that consists of six alphanumerical characters, prefixed with
|
|
94
|
+
<code>#</code>, for example #37BFF5. </p>
|
|
95
|
+
*/
|
|
66
96
|
DataColorPalette: {
|
|
67
97
|
/**
|
|
98
|
+
* <p>The hexadecimal codes for the colors.</p>
|
|
68
99
|
* @minLength `0`
|
|
69
100
|
* @maxLength `100`
|
|
70
101
|
*/
|
|
71
102
|
Colors: string[];
|
|
72
103
|
/**
|
|
73
|
-
|
|
74
|
-
|
|
104
|
+
* <p>The hexadecimal code of a color that applies to charts where a lack of data is
|
|
105
|
+
highlighted.</p>
|
|
106
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
107
|
+
*/
|
|
75
108
|
EmptyFillColor: string;
|
|
76
109
|
/**
|
|
110
|
+
* <p>The minimum and maximum hexadecimal codes that describe a color gradient. </p>
|
|
77
111
|
* @minLength `0`
|
|
78
112
|
* @maxLength `100`
|
|
79
113
|
*/
|
|
80
114
|
MinMaxGradient: string[];
|
|
81
115
|
};
|
|
116
|
+
/**
|
|
117
|
+
* <p>The theme display options for sheets. </p>
|
|
118
|
+
*/
|
|
82
119
|
Sheet: {
|
|
120
|
+
/**
|
|
121
|
+
* <p>Display options related to tiles on a sheet.</p>
|
|
122
|
+
*/
|
|
83
123
|
Tile: {
|
|
124
|
+
/**
|
|
125
|
+
* <p>The display options for tile borders for visuals.</p>
|
|
126
|
+
*/
|
|
84
127
|
Border: {
|
|
128
|
+
/**
|
|
129
|
+
* <p>The option to enable display of borders for visuals.</p>
|
|
130
|
+
*/
|
|
85
131
|
Show: boolean;
|
|
86
132
|
};
|
|
87
133
|
};
|
|
134
|
+
/**
|
|
135
|
+
* <p>The display options for the layout of tiles on a sheet.</p>
|
|
136
|
+
*/
|
|
88
137
|
TileLayout: {
|
|
138
|
+
/**
|
|
139
|
+
* <p>The display options for gutter spacing between tiles on a sheet.</p>
|
|
140
|
+
*/
|
|
89
141
|
Gutter: {
|
|
142
|
+
/**
|
|
143
|
+
* <p>This Boolean value controls whether to display a gutter space between sheet tiles.
|
|
144
|
+
</p>
|
|
145
|
+
*/
|
|
90
146
|
Show: boolean;
|
|
91
147
|
};
|
|
148
|
+
/**
|
|
149
|
+
* <p>The display options for margins around the outside edge of sheets.</p>
|
|
150
|
+
*/
|
|
92
151
|
Margin: {
|
|
152
|
+
/**
|
|
153
|
+
* <p>This Boolean value controls whether to display sheet margins.</p>
|
|
154
|
+
*/
|
|
93
155
|
Show: boolean;
|
|
94
156
|
};
|
|
95
157
|
};
|
|
@@ -103,91 +165,131 @@ export type QuickSightThemeAttributes = {
|
|
|
103
165
|
FontFamily: string;
|
|
104
166
|
}[];
|
|
105
167
|
};
|
|
168
|
+
/**
|
|
169
|
+
* <p>The theme colors that apply to UI and to charts, excluding data colors. The colors
|
|
170
|
+
description is a hexadecimal color code that consists of six alphanumerical characters,
|
|
171
|
+
prefixed with <code>#</code>, for example #37BFF5. For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/themes-in-quicksight.html">Using Themes in Amazon QuickSight</a> in the <i>Amazon QuickSight User
|
|
172
|
+
Guide.</i>
|
|
173
|
+
</p>
|
|
174
|
+
*/
|
|
106
175
|
UIColorPalette: {
|
|
107
176
|
/**
|
|
177
|
+
* <p>This color is that applies to selected states and buttons.</p>
|
|
108
178
|
* @pattern `^#[A-F0-9]{6}$`
|
|
109
179
|
*/
|
|
110
180
|
Accent: string;
|
|
111
181
|
/**
|
|
112
|
-
|
|
113
|
-
|
|
182
|
+
* <p>The foreground color that applies to any text or other elements that appear over the
|
|
183
|
+
accent color.</p>
|
|
184
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
185
|
+
*/
|
|
114
186
|
AccentForeground: string;
|
|
115
187
|
/**
|
|
188
|
+
* <p>The color that applies to error messages.</p>
|
|
116
189
|
* @pattern `^#[A-F0-9]{6}$`
|
|
117
190
|
*/
|
|
118
191
|
Danger: string;
|
|
119
192
|
/**
|
|
120
|
-
|
|
121
|
-
|
|
193
|
+
* <p>The foreground color that applies to any text or other elements that appear over the
|
|
194
|
+
error color.</p>
|
|
195
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
196
|
+
*/
|
|
122
197
|
DangerForeground: string;
|
|
123
198
|
/**
|
|
124
|
-
|
|
125
|
-
|
|
199
|
+
* <p>The color that applies to the names of fields that are identified as
|
|
200
|
+
dimensions.</p>
|
|
201
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
202
|
+
*/
|
|
126
203
|
Dimension: string;
|
|
127
204
|
/**
|
|
128
|
-
|
|
129
|
-
|
|
205
|
+
* <p>The foreground color that applies to any text or other elements that appear over the
|
|
206
|
+
dimension color.</p>
|
|
207
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
208
|
+
*/
|
|
130
209
|
DimensionForeground: string;
|
|
131
210
|
/**
|
|
211
|
+
* <p>The color that applies to the names of fields that are identified as measures.</p>
|
|
132
212
|
* @pattern `^#[A-F0-9]{6}$`
|
|
133
213
|
*/
|
|
134
214
|
Measure: string;
|
|
135
215
|
/**
|
|
136
|
-
|
|
137
|
-
|
|
216
|
+
* <p>The foreground color that applies to any text or other elements that appear over the
|
|
217
|
+
measure color.</p>
|
|
218
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
219
|
+
*/
|
|
138
220
|
MeasureForeground: string;
|
|
139
221
|
/**
|
|
222
|
+
* <p>The background color that applies to visuals and other high emphasis UI.</p>
|
|
140
223
|
* @pattern `^#[A-F0-9]{6}$`
|
|
141
224
|
*/
|
|
142
225
|
PrimaryBackground: string;
|
|
143
226
|
/**
|
|
144
|
-
|
|
145
|
-
|
|
227
|
+
* <p>The color of text and other foreground elements that appear over the primary
|
|
228
|
+
background regions, such as grid lines, borders, table banding, icons, and so on.</p>
|
|
229
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
230
|
+
*/
|
|
146
231
|
PrimaryForeground: string;
|
|
147
232
|
/**
|
|
233
|
+
* <p>The background color that applies to the sheet background and sheet controls.</p>
|
|
148
234
|
* @pattern `^#[A-F0-9]{6}$`
|
|
149
235
|
*/
|
|
150
236
|
SecondaryBackground: string;
|
|
151
237
|
/**
|
|
152
|
-
|
|
153
|
-
|
|
238
|
+
* <p>The foreground color that applies to any sheet title, sheet control text, or UI that
|
|
239
|
+
appears over the secondary background.</p>
|
|
240
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
241
|
+
*/
|
|
154
242
|
SecondaryForeground: string;
|
|
155
243
|
/**
|
|
156
|
-
|
|
157
|
-
|
|
244
|
+
* <p>The color that applies to success messages, for example the check mark for a
|
|
245
|
+
successful download.</p>
|
|
246
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
247
|
+
*/
|
|
158
248
|
Success: string;
|
|
159
249
|
/**
|
|
160
|
-
|
|
161
|
-
|
|
250
|
+
* <p>The foreground color that applies to any text or other elements that appear over the
|
|
251
|
+
success color.</p>
|
|
252
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
253
|
+
*/
|
|
162
254
|
SuccessForeground: string;
|
|
163
255
|
/**
|
|
256
|
+
* <p>This color that applies to warning and informational messages.</p>
|
|
164
257
|
* @pattern `^#[A-F0-9]{6}$`
|
|
165
258
|
*/
|
|
166
259
|
Warning: string;
|
|
167
260
|
/**
|
|
168
|
-
|
|
169
|
-
|
|
261
|
+
* <p>The foreground color that applies to any text or other elements that appear over the
|
|
262
|
+
warning color.</p>
|
|
263
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
264
|
+
*/
|
|
170
265
|
WarningForeground: string;
|
|
171
266
|
};
|
|
172
267
|
};
|
|
268
|
+
/**
|
|
269
|
+
* <p>The date and time that this theme version was created.</p>
|
|
270
|
+
*/
|
|
173
271
|
CreatedTime: string;
|
|
174
272
|
/**
|
|
273
|
+
* <p>The description of the theme.</p>
|
|
175
274
|
* @minLength `1`
|
|
176
275
|
* @maxLength `512`
|
|
177
276
|
*/
|
|
178
277
|
Description: string;
|
|
179
278
|
/**
|
|
279
|
+
* <p>Errors associated with the theme.</p>
|
|
180
280
|
* @minLength `1`
|
|
181
281
|
*/
|
|
182
282
|
Errors: {
|
|
183
283
|
/**
|
|
184
|
-
*
|
|
284
|
+
* <p>The error message.</p>
|
|
285
|
+
* @pattern `\S`
|
|
185
286
|
*/
|
|
186
287
|
Message: string;
|
|
187
288
|
Type: ThemeErrorType;
|
|
188
289
|
}[];
|
|
189
290
|
Status: ResourceStatus;
|
|
190
291
|
/**
|
|
292
|
+
* <p>The version number of the theme.</p>
|
|
191
293
|
* @min `1`
|
|
192
294
|
*/
|
|
193
295
|
VersionNumber: number;
|
|
@@ -195,26 +297,37 @@ export type QuickSightThemeAttributes = {
|
|
|
195
297
|
};
|
|
196
298
|
/**
|
|
197
299
|
* Type definition for `AWS::QuickSight::Theme.BorderStyle`.
|
|
300
|
+
* <p>The display options for tile borders for visuals.</p>
|
|
198
301
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-borderstyle.html}
|
|
199
302
|
*/
|
|
200
303
|
export type BorderStyle = {
|
|
304
|
+
/**
|
|
305
|
+
* <p>The option to enable display of borders for visuals.</p>
|
|
306
|
+
*/
|
|
201
307
|
Show?: boolean;
|
|
202
308
|
};
|
|
203
309
|
/**
|
|
204
310
|
* Type definition for `AWS::QuickSight::Theme.DataColorPalette`.
|
|
311
|
+
* <p>The theme colors that are used for data colors in charts. The colors description is a
|
|
312
|
+
hexadecimal color code that consists of six alphanumerical characters, prefixed with
|
|
313
|
+
<code>#</code>, for example #37BFF5. </p>
|
|
205
314
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-datacolorpalette.html}
|
|
206
315
|
*/
|
|
207
316
|
export type DataColorPalette = {
|
|
208
317
|
/**
|
|
318
|
+
* <p>The hexadecimal codes for the colors.</p>
|
|
209
319
|
* @minLength `0`
|
|
210
320
|
* @maxLength `100`
|
|
211
321
|
*/
|
|
212
322
|
Colors?: string[];
|
|
213
323
|
/**
|
|
214
|
-
|
|
215
|
-
|
|
324
|
+
* <p>The hexadecimal code of a color that applies to charts where a lack of data is
|
|
325
|
+
highlighted.</p>
|
|
326
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
327
|
+
*/
|
|
216
328
|
EmptyFillColor?: string;
|
|
217
329
|
/**
|
|
330
|
+
* <p>The minimum and maximum hexadecimal codes that describe a color gradient. </p>
|
|
218
331
|
* @minLength `0`
|
|
219
332
|
* @maxLength `100`
|
|
220
333
|
*/
|
|
@@ -229,32 +342,58 @@ export type Font = {
|
|
|
229
342
|
};
|
|
230
343
|
/**
|
|
231
344
|
* Type definition for `AWS::QuickSight::Theme.GutterStyle`.
|
|
345
|
+
* <p>The display options for gutter spacing between tiles on a sheet.</p>
|
|
232
346
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-gutterstyle.html}
|
|
233
347
|
*/
|
|
234
348
|
export type GutterStyle = {
|
|
349
|
+
/**
|
|
350
|
+
* <p>This Boolean value controls whether to display a gutter space between sheet tiles.
|
|
351
|
+
</p>
|
|
352
|
+
*/
|
|
235
353
|
Show?: boolean;
|
|
236
354
|
};
|
|
237
355
|
/**
|
|
238
356
|
* Type definition for `AWS::QuickSight::Theme.MarginStyle`.
|
|
357
|
+
* <p>The display options for margins around the outside edge of sheets.</p>
|
|
239
358
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-marginstyle.html}
|
|
240
359
|
*/
|
|
241
360
|
export type MarginStyle = {
|
|
361
|
+
/**
|
|
362
|
+
* <p>This Boolean value controls whether to display sheet margins.</p>
|
|
363
|
+
*/
|
|
242
364
|
Show?: boolean;
|
|
243
365
|
};
|
|
244
366
|
/**
|
|
245
367
|
* Type definition for `AWS::QuickSight::Theme.ResourcePermission`.
|
|
368
|
+
* <p>Permission for the resource.</p>
|
|
246
369
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-resourcepermission.html}
|
|
247
370
|
*/
|
|
248
371
|
export type ResourcePermission = {
|
|
249
372
|
/**
|
|
373
|
+
* <p>The IAM action to grant or revoke permissions on.</p>
|
|
250
374
|
* @minLength `1`
|
|
251
375
|
* @maxLength `20`
|
|
252
376
|
*/
|
|
253
377
|
Actions: string[];
|
|
254
378
|
/**
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
379
|
+
* <p>The Amazon Resource Name (ARN) of the principal. This can be one of the
|
|
380
|
+
following:</p>
|
|
381
|
+
<ul>
|
|
382
|
+
<li>
|
|
383
|
+
<p>The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)</p>
|
|
384
|
+
</li>
|
|
385
|
+
<li>
|
|
386
|
+
<p>The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)</p>
|
|
387
|
+
</li>
|
|
388
|
+
<li>
|
|
389
|
+
<p>The ARN of an Amazon Web Services account root: This is an IAM ARN rather than a QuickSight
|
|
390
|
+
ARN. Use this option only to share resources (templates) across Amazon Web Services accounts.
|
|
391
|
+
(This is less common.) </p>
|
|
392
|
+
</li>
|
|
393
|
+
</ul>
|
|
394
|
+
* @minLength `1`
|
|
395
|
+
* @maxLength `256`
|
|
396
|
+
*/
|
|
258
397
|
Principal: string;
|
|
259
398
|
};
|
|
260
399
|
/**
|
|
@@ -264,23 +403,34 @@ export type ResourcePermission = {
|
|
|
264
403
|
export type ResourceStatus = "CREATION_IN_PROGRESS" | "CREATION_SUCCESSFUL" | "CREATION_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_SUCCESSFUL" | "UPDATE_FAILED" | "DELETED";
|
|
265
404
|
/**
|
|
266
405
|
* Type definition for `AWS::QuickSight::Theme.SheetStyle`.
|
|
406
|
+
* <p>The theme display options for sheets. </p>
|
|
267
407
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-sheetstyle.html}
|
|
268
408
|
*/
|
|
269
409
|
export type SheetStyle = {
|
|
410
|
+
/**
|
|
411
|
+
* <p>Display options related to tiles on a sheet.</p>
|
|
412
|
+
*/
|
|
270
413
|
Tile?: TileStyle;
|
|
414
|
+
/**
|
|
415
|
+
* <p>The display options for the layout of tiles on a sheet.</p>
|
|
416
|
+
*/
|
|
271
417
|
TileLayout?: TileLayoutStyle;
|
|
272
418
|
};
|
|
273
419
|
/**
|
|
274
420
|
* Type definition for `AWS::QuickSight::Theme.Tag`.
|
|
421
|
+
* <p>The key or keys of the key-value pairs for the resource tag or tags assigned to the
|
|
422
|
+
resource.</p>
|
|
275
423
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-tag.html}
|
|
276
424
|
*/
|
|
277
425
|
export type Tag = {
|
|
278
426
|
/**
|
|
427
|
+
* <p>Tag key.</p>
|
|
279
428
|
* @minLength `1`
|
|
280
429
|
* @maxLength `128`
|
|
281
430
|
*/
|
|
282
431
|
Key: string;
|
|
283
432
|
/**
|
|
433
|
+
* <p>Tag value.</p>
|
|
284
434
|
* @minLength `1`
|
|
285
435
|
* @maxLength `256`
|
|
286
436
|
*/
|
|
@@ -288,21 +438,40 @@ export type Tag = {
|
|
|
288
438
|
};
|
|
289
439
|
/**
|
|
290
440
|
* Type definition for `AWS::QuickSight::Theme.ThemeConfiguration`.
|
|
441
|
+
* <p>The theme configuration. This configuration contains all of the display properties for
|
|
442
|
+
a theme.</p>
|
|
291
443
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-themeconfiguration.html}
|
|
292
444
|
*/
|
|
293
445
|
export type ThemeConfiguration = {
|
|
446
|
+
/**
|
|
447
|
+
* <p>The theme colors that are used for data colors in charts. The colors description is a
|
|
448
|
+
hexadecimal color code that consists of six alphanumerical characters, prefixed with
|
|
449
|
+
<code>#</code>, for example #37BFF5. </p>
|
|
450
|
+
*/
|
|
294
451
|
DataColorPalette?: DataColorPalette;
|
|
452
|
+
/**
|
|
453
|
+
* <p>The theme display options for sheets. </p>
|
|
454
|
+
*/
|
|
295
455
|
Sheet?: SheetStyle;
|
|
296
456
|
Typography?: Typography;
|
|
457
|
+
/**
|
|
458
|
+
* <p>The theme colors that apply to UI and to charts, excluding data colors. The colors
|
|
459
|
+
description is a hexadecimal color code that consists of six alphanumerical characters,
|
|
460
|
+
prefixed with <code>#</code>, for example #37BFF5. For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/themes-in-quicksight.html">Using Themes in Amazon QuickSight</a> in the <i>Amazon QuickSight User
|
|
461
|
+
Guide.</i>
|
|
462
|
+
</p>
|
|
463
|
+
*/
|
|
297
464
|
UIColorPalette?: UIColorPalette;
|
|
298
465
|
};
|
|
299
466
|
/**
|
|
300
467
|
* Type definition for `AWS::QuickSight::Theme.ThemeError`.
|
|
468
|
+
* <p>Theme error.</p>
|
|
301
469
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-themeerror.html}
|
|
302
470
|
*/
|
|
303
471
|
export type ThemeError = {
|
|
304
472
|
/**
|
|
305
|
-
*
|
|
473
|
+
* <p>The error message.</p>
|
|
474
|
+
* @pattern `\S`
|
|
306
475
|
*/
|
|
307
476
|
Message?: string;
|
|
308
477
|
Type?: ThemeErrorType;
|
|
@@ -319,46 +488,73 @@ export type ThemeErrorType = "INTERNAL_FAILURE";
|
|
|
319
488
|
export type ThemeType = "QUICKSIGHT" | "CUSTOM" | "ALL";
|
|
320
489
|
/**
|
|
321
490
|
* Type definition for `AWS::QuickSight::Theme.ThemeVersion`.
|
|
491
|
+
* <p>A version of a theme.</p>
|
|
322
492
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-themeversion.html}
|
|
323
493
|
*/
|
|
324
494
|
export type ThemeVersion = {
|
|
325
|
-
Arn?: string;
|
|
326
495
|
/**
|
|
327
|
-
*
|
|
328
|
-
* @maxLength `512`
|
|
329
|
-
* @pattern `[\w\-]+`
|
|
496
|
+
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
330
497
|
*/
|
|
498
|
+
Arn?: string;
|
|
499
|
+
/**
|
|
500
|
+
* <p>The Amazon QuickSight-defined ID of the theme that a custom theme inherits from. All
|
|
501
|
+
themes initially inherit from a default Amazon QuickSight theme.</p>
|
|
502
|
+
* @minLength `1`
|
|
503
|
+
* @maxLength `512`
|
|
504
|
+
* @pattern `^[\w\-]+$`
|
|
505
|
+
*/
|
|
331
506
|
BaseThemeId?: string;
|
|
507
|
+
/**
|
|
508
|
+
* <p>The theme configuration. This configuration contains all of the display properties for
|
|
509
|
+
a theme.</p>
|
|
510
|
+
*/
|
|
332
511
|
Configuration?: ThemeConfiguration;
|
|
512
|
+
/**
|
|
513
|
+
* <p>The date and time that this theme version was created.</p>
|
|
514
|
+
*/
|
|
333
515
|
CreatedTime?: string;
|
|
334
516
|
/**
|
|
517
|
+
* <p>The description of the theme.</p>
|
|
335
518
|
* @minLength `1`
|
|
336
519
|
* @maxLength `512`
|
|
337
520
|
*/
|
|
338
521
|
Description?: string;
|
|
339
522
|
/**
|
|
523
|
+
* <p>Errors associated with the theme.</p>
|
|
340
524
|
* @minLength `1`
|
|
341
525
|
*/
|
|
342
526
|
Errors?: ThemeError[];
|
|
343
527
|
Status?: ResourceStatus;
|
|
344
528
|
/**
|
|
529
|
+
* <p>The version number of the theme.</p>
|
|
345
530
|
* @min `1`
|
|
346
531
|
*/
|
|
347
532
|
VersionNumber?: number;
|
|
348
533
|
};
|
|
349
534
|
/**
|
|
350
535
|
* Type definition for `AWS::QuickSight::Theme.TileLayoutStyle`.
|
|
536
|
+
* <p>The display options for the layout of tiles on a sheet.</p>
|
|
351
537
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-tilelayoutstyle.html}
|
|
352
538
|
*/
|
|
353
539
|
export type TileLayoutStyle = {
|
|
540
|
+
/**
|
|
541
|
+
* <p>The display options for gutter spacing between tiles on a sheet.</p>
|
|
542
|
+
*/
|
|
354
543
|
Gutter?: GutterStyle;
|
|
544
|
+
/**
|
|
545
|
+
* <p>The display options for margins around the outside edge of sheets.</p>
|
|
546
|
+
*/
|
|
355
547
|
Margin?: MarginStyle;
|
|
356
548
|
};
|
|
357
549
|
/**
|
|
358
550
|
* Type definition for `AWS::QuickSight::Theme.TileStyle`.
|
|
551
|
+
* <p>Display options related to tiles on a sheet.</p>
|
|
359
552
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-tilestyle.html}
|
|
360
553
|
*/
|
|
361
554
|
export type TileStyle = {
|
|
555
|
+
/**
|
|
556
|
+
* <p>The display options for tile borders for visuals.</p>
|
|
557
|
+
*/
|
|
362
558
|
Border?: BorderStyle;
|
|
363
559
|
};
|
|
364
560
|
/**
|
|
@@ -374,72 +570,103 @@ export type Typography = {
|
|
|
374
570
|
};
|
|
375
571
|
/**
|
|
376
572
|
* Type definition for `AWS::QuickSight::Theme.UIColorPalette`.
|
|
573
|
+
* <p>The theme colors that apply to UI and to charts, excluding data colors. The colors
|
|
574
|
+
description is a hexadecimal color code that consists of six alphanumerical characters,
|
|
575
|
+
prefixed with <code>#</code>, for example #37BFF5. For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/themes-in-quicksight.html">Using Themes in Amazon QuickSight</a> in the <i>Amazon QuickSight User
|
|
576
|
+
Guide.</i>
|
|
577
|
+
</p>
|
|
377
578
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-uicolorpalette.html}
|
|
378
579
|
*/
|
|
379
580
|
export type UIColorPalette = {
|
|
380
581
|
/**
|
|
582
|
+
* <p>This color is that applies to selected states and buttons.</p>
|
|
381
583
|
* @pattern `^#[A-F0-9]{6}$`
|
|
382
584
|
*/
|
|
383
585
|
Accent?: string;
|
|
384
586
|
/**
|
|
385
|
-
|
|
386
|
-
|
|
587
|
+
* <p>The foreground color that applies to any text or other elements that appear over the
|
|
588
|
+
accent color.</p>
|
|
589
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
590
|
+
*/
|
|
387
591
|
AccentForeground?: string;
|
|
388
592
|
/**
|
|
593
|
+
* <p>The color that applies to error messages.</p>
|
|
389
594
|
* @pattern `^#[A-F0-9]{6}$`
|
|
390
595
|
*/
|
|
391
596
|
Danger?: string;
|
|
392
597
|
/**
|
|
393
|
-
|
|
394
|
-
|
|
598
|
+
* <p>The foreground color that applies to any text or other elements that appear over the
|
|
599
|
+
error color.</p>
|
|
600
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
601
|
+
*/
|
|
395
602
|
DangerForeground?: string;
|
|
396
603
|
/**
|
|
397
|
-
|
|
398
|
-
|
|
604
|
+
* <p>The color that applies to the names of fields that are identified as
|
|
605
|
+
dimensions.</p>
|
|
606
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
607
|
+
*/
|
|
399
608
|
Dimension?: string;
|
|
400
609
|
/**
|
|
401
|
-
|
|
402
|
-
|
|
610
|
+
* <p>The foreground color that applies to any text or other elements that appear over the
|
|
611
|
+
dimension color.</p>
|
|
612
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
613
|
+
*/
|
|
403
614
|
DimensionForeground?: string;
|
|
404
615
|
/**
|
|
616
|
+
* <p>The color that applies to the names of fields that are identified as measures.</p>
|
|
405
617
|
* @pattern `^#[A-F0-9]{6}$`
|
|
406
618
|
*/
|
|
407
619
|
Measure?: string;
|
|
408
620
|
/**
|
|
409
|
-
|
|
410
|
-
|
|
621
|
+
* <p>The foreground color that applies to any text or other elements that appear over the
|
|
622
|
+
measure color.</p>
|
|
623
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
624
|
+
*/
|
|
411
625
|
MeasureForeground?: string;
|
|
412
626
|
/**
|
|
627
|
+
* <p>The background color that applies to visuals and other high emphasis UI.</p>
|
|
413
628
|
* @pattern `^#[A-F0-9]{6}$`
|
|
414
629
|
*/
|
|
415
630
|
PrimaryBackground?: string;
|
|
416
631
|
/**
|
|
417
|
-
|
|
418
|
-
|
|
632
|
+
* <p>The color of text and other foreground elements that appear over the primary
|
|
633
|
+
background regions, such as grid lines, borders, table banding, icons, and so on.</p>
|
|
634
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
635
|
+
*/
|
|
419
636
|
PrimaryForeground?: string;
|
|
420
637
|
/**
|
|
638
|
+
* <p>The background color that applies to the sheet background and sheet controls.</p>
|
|
421
639
|
* @pattern `^#[A-F0-9]{6}$`
|
|
422
640
|
*/
|
|
423
641
|
SecondaryBackground?: string;
|
|
424
642
|
/**
|
|
425
|
-
|
|
426
|
-
|
|
643
|
+
* <p>The foreground color that applies to any sheet title, sheet control text, or UI that
|
|
644
|
+
appears over the secondary background.</p>
|
|
645
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
646
|
+
*/
|
|
427
647
|
SecondaryForeground?: string;
|
|
428
648
|
/**
|
|
429
|
-
|
|
430
|
-
|
|
649
|
+
* <p>The color that applies to success messages, for example the check mark for a
|
|
650
|
+
successful download.</p>
|
|
651
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
652
|
+
*/
|
|
431
653
|
Success?: string;
|
|
432
654
|
/**
|
|
433
|
-
|
|
434
|
-
|
|
655
|
+
* <p>The foreground color that applies to any text or other elements that appear over the
|
|
656
|
+
success color.</p>
|
|
657
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
658
|
+
*/
|
|
435
659
|
SuccessForeground?: string;
|
|
436
660
|
/**
|
|
661
|
+
* <p>This color that applies to warning and informational messages.</p>
|
|
437
662
|
* @pattern `^#[A-F0-9]{6}$`
|
|
438
663
|
*/
|
|
439
664
|
Warning?: string;
|
|
440
665
|
/**
|
|
441
|
-
|
|
442
|
-
|
|
666
|
+
* <p>The foreground color that applies to any text or other elements that appear over the
|
|
667
|
+
warning color.</p>
|
|
668
|
+
* @pattern `^#[A-F0-9]{6}$`
|
|
669
|
+
*/
|
|
443
670
|
WarningForeground?: string;
|
|
444
671
|
};
|
|
445
672
|
/**
|