@awboost/cfn-resource-types 0.1.534 → 0.1.536

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.
@@ -43,7 +43,7 @@ export type ConnectDataTableProperties = {
43
43
  /**
44
44
  * The value lock level of the Data Table
45
45
  */
46
- ValueLockLevel?: "NONE";
46
+ ValueLockLevel?: "NONE" | "DATA_TABLE" | "PRIMARY_VALUE" | "ATTRIBUTE" | "VALUE";
47
47
  };
48
48
  /**
49
49
  * Attribute type definition for `AWS::Connect::DataTable`.
@@ -13,6 +13,10 @@ export type EC2VolumeAttachmentProperties = {
13
13
  * The device name (for example, ``/dev/sdh`` or ``xvdh``).
14
14
  */
15
15
  Device?: string;
16
+ /**
17
+ * The index of the EBS card. Some instance types support multiple EBS cards. The default EBS card index is 0.
18
+ */
19
+ EbsCardIndex?: number;
16
20
  /**
17
21
  * The ID of the instance to which the volume attaches. This value can be a reference to an [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) resource, or it can be the physical ID of an existing EC2 instance.
18
22
  */
@@ -999,7 +999,7 @@ export type InputColumn = {
999
999
  * Type definition for `AWS::QuickSight::DataSet.InputColumnDataType`.
1000
1000
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-inputcolumndatatype.html}
1001
1001
  */
1002
- export type InputColumnDataType = "STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON";
1002
+ export type InputColumnDataType = "STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON" | "SEMISTRUCT";
1003
1003
  /**
1004
1004
  * Type definition for `AWS::QuickSight::DataSet.IntegerDatasetParameter`.
1005
1005
  * <p>An integer parameter for a dataset.</p>
@@ -348,6 +348,10 @@ export type FieldToMatch = {
348
348
  * Includes cookies of a web request.
349
349
  */
350
350
  Cookies?: Cookies;
351
+ /**
352
+ * The string containing the list of a web request's header names, ordered as they appear in the web request, separated by colons.
353
+ */
354
+ HeaderOrder?: HeaderOrder;
351
355
  /**
352
356
  * Includes headers of a web request.
353
357
  */
@@ -430,6 +434,17 @@ export type HeaderMatchPattern = {
430
434
  */
431
435
  IncludedHeaders?: string[];
432
436
  };
437
+ /**
438
+ * Type definition for `AWS::WAFv2::RuleGroup.HeaderOrder`.
439
+ * The string containing the list of a web request's header names, ordered as they appear in the web request, separated by colons.
440
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-headerorder.html}
441
+ */
442
+ export type HeaderOrder = {
443
+ /**
444
+ * Handling of requests containing oversize fields
445
+ */
446
+ OversizeHandling: OversizeHandling;
447
+ };
433
448
  /**
434
449
  * Type definition for `AWS::WAFv2::RuleGroup.Headers`.
435
450
  * Includes headers of a web request.
@@ -547,6 +547,10 @@ export type FieldToMatch = {
547
547
  * Includes cookies of a web request.
548
548
  */
549
549
  Cookies?: Cookies;
550
+ /**
551
+ * The string containing the list of a web request's header names, ordered as they appear in the web request, separated by colons.
552
+ */
553
+ HeaderOrder?: HeaderOrder;
550
554
  /**
551
555
  * Includes headers of a web request.
552
556
  */
@@ -644,6 +648,17 @@ export type HeaderMatchPattern = {
644
648
  */
645
649
  IncludedHeaders?: string[];
646
650
  };
651
+ /**
652
+ * Type definition for `AWS::WAFv2::WebACL.HeaderOrder`.
653
+ * The string containing the list of a web request's header names, ordered as they appear in the web request, separated by colons.
654
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-headerorder.html}
655
+ */
656
+ export type HeaderOrder = {
657
+ /**
658
+ * Handling of requests containing oversize fields
659
+ */
660
+ OversizeHandling: OversizeHandling;
661
+ };
647
662
  /**
648
663
  * Type definition for `AWS::WAFv2::WebACL.Headers`.
649
664
  * Includes headers of a web request.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.534",
3
+ "version": "0.1.536",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },