@awboost/cfn-resource-types 0.1.242 → 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.
@@ -38,7 +38,6 @@ export type PCSComputeNodeGroupProperties = {
38
38
  InstanceConfigs: InstanceConfig[];
39
39
  /**
40
40
  * The name that identifies the compute node group.
41
- * @pattern `^(?!pcs_)^(?![A-Za-z0-9]{10}$)[A-Za-z][A-Za-z0-9-]+$`
42
41
  */
43
42
  Name?: string;
44
43
  /**
@@ -15,7 +15,6 @@ export type PCSQueueProperties = {
15
15
  ComputeNodeGroupConfigurations?: ComputeNodeGroupConfiguration[];
16
16
  /**
17
17
  * The name that identifies the queue.
18
- * @pattern `^(?!pcs_)^(?![A-Za-z0-9]{10}$)[A-Za-z][A-Za-z0-9-]+$`
19
18
  */
20
19
  Name?: string;
21
20
  /**
@@ -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}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.242",
3
+ "version": "0.1.244",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },