@awboost/cfn-resource-types 0.1.243 → 0.1.244
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-PCS-Queue.d.ts
CHANGED
|
@@ -11,12 +11,21 @@ export type QuickSightTopicProperties = {
|
|
|
11
11
|
* @pattern `^[0-9]{12}$`
|
|
12
12
|
*/
|
|
13
13
|
AwsAccountId?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Model for configuration of a Topic
|
|
16
|
+
*/
|
|
17
|
+
ConfigOptions?: TopicConfigOptions;
|
|
14
18
|
DataSets?: DatasetMetadata[];
|
|
15
19
|
/**
|
|
16
20
|
* @minLength `0`
|
|
17
21
|
* @maxLength `256`
|
|
18
22
|
*/
|
|
19
23
|
Description?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @minLength `0`
|
|
26
|
+
* @maxLength `20`
|
|
27
|
+
*/
|
|
28
|
+
FolderArns?: string[];
|
|
20
29
|
/**
|
|
21
30
|
* @minLength `1`
|
|
22
31
|
* @maxLength `128`
|
|
@@ -261,7 +270,7 @@ export type NegativeFormat = {
|
|
|
261
270
|
* Type definition for `AWS::QuickSight::Topic.NumberScale`.
|
|
262
271
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-numberscale.html}
|
|
263
272
|
*/
|
|
264
|
-
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
|
273
|
+
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
|
265
274
|
/**
|
|
266
275
|
* Type definition for `AWS::QuickSight::Topic.PropertyRole`.
|
|
267
276
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-propertyrole.html}
|
|
@@ -419,6 +428,14 @@ export type TopicColumn = {
|
|
|
419
428
|
SemanticType?: SemanticType;
|
|
420
429
|
TimeGranularity?: TopicTimeGranularity;
|
|
421
430
|
};
|
|
431
|
+
/**
|
|
432
|
+
* Type definition for `AWS::QuickSight::Topic.TopicConfigOptions`.
|
|
433
|
+
* Model for configuration of a Topic
|
|
434
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-topicconfigoptions.html}
|
|
435
|
+
*/
|
|
436
|
+
export type TopicConfigOptions = {
|
|
437
|
+
QBusinessInsightsEnabled?: boolean;
|
|
438
|
+
};
|
|
422
439
|
/**
|
|
423
440
|
* Type definition for `AWS::QuickSight::Topic.TopicDateRangeFilter`.
|
|
424
441
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topic-topicdaterangefilter.html}
|