@awboost/cfn-resource-types 0.1.35 → 0.1.36

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.
@@ -317,6 +317,11 @@ export type CustomResponseBody = {
317
317
  */
318
318
  ContentType: ResponseContentType;
319
319
  };
320
+ /**
321
+ * Type definition for `AWS::WAFv2::RuleGroup.EvaluationWindowSec`.
322
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-evaluationwindowsec.html}
323
+ */
324
+ export type EvaluationWindowSec = 60 | 120 | 300 | 600;
320
325
  /**
321
326
  * Type definition for `AWS::WAFv2::RuleGroup.FieldToMatch`.
322
327
  * Field of the request to match.
@@ -586,6 +591,7 @@ export type RateBasedStatement = {
586
591
  * @maxLength `5`
587
592
  */
588
593
  CustomKeys?: RateBasedStatementCustomKey[];
594
+ EvaluationWindowSec?: EvaluationWindowSec;
589
595
  ForwardedIPConfig?: ForwardedIPConfiguration;
590
596
  /**
591
597
  * @min `100`
@@ -386,6 +386,11 @@ export type DefaultAction = {
386
386
  */
387
387
  Block?: BlockAction;
388
388
  };
389
+ /**
390
+ * Type definition for `AWS::WAFv2::WebACL.EvaluationWindowSec`.
391
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-evaluationwindowsec.html}
392
+ */
393
+ export type EvaluationWindowSec = 60 | 120 | 300 | 600;
389
394
  /**
390
395
  * Type definition for `AWS::WAFv2::WebACL.ExcludedRule`.
391
396
  * Excluded Rule in the RuleGroup or ManagedRuleGroup will not be evaluated.
@@ -759,6 +764,7 @@ export type RateBasedStatement = {
759
764
  * @maxLength `5`
760
765
  */
761
766
  CustomKeys?: RateBasedStatementCustomKey[];
767
+ EvaluationWindowSec?: EvaluationWindowSec;
762
768
  ForwardedIPConfig?: ForwardedIPConfiguration;
763
769
  /**
764
770
  * @min `100`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.35",
3
+ "version": "0.1.36",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },