@aws-sdk/client-waf 3.687.0 → 3.692.0

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.
@@ -175,7 +175,7 @@ export interface ActivatedRule {
175
175
  * <code>ActivatedRule|OverrideAction</code>.</p>
176
176
  * @public
177
177
  */
178
- Action?: WafAction;
178
+ Action?: WafAction | undefined;
179
179
  /**
180
180
  * <p>Use the <code>OverrideAction</code> to test your <code>RuleGroup</code>.</p>
181
181
  * <p>Any rule in a <code>RuleGroup</code> can potentially block a request. If you set the <code>OverrideAction</code> to <code>None</code>, the <code>RuleGroup</code> will block a request if any individual rule in the <code>RuleGroup</code> matches the request and is configured to block that request. However if you first want to test the <code>RuleGroup</code>, set the <code>OverrideAction</code> to <code>Count</code>. The <code>RuleGroup</code> will then override any block action specified by individual rules contained within the group. Instead of blocking matching requests, those requests will be counted. You can view a record of counted requests using <a>GetSampledRequests</a>. </p>
@@ -183,13 +183,13 @@ export interface ActivatedRule {
183
183
  * <code>ActivatedRule|OverrideAction</code> applies only when updating or adding a <code>RuleGroup</code> to a <code>WebACL</code>. In this case you do not use <code>ActivatedRule|Action</code>. For all other update requests, <code>ActivatedRule|Action</code> is used instead of <code>ActivatedRule|OverrideAction</code>.</p>
184
184
  * @public
185
185
  */
186
- OverrideAction?: WafOverrideAction;
186
+ OverrideAction?: WafOverrideAction | undefined;
187
187
  /**
188
188
  * <p>The rule type, either <code>REGULAR</code>, as defined by <a>Rule</a>, <code>RATE_BASED</code>, as defined by <a>RateBasedRule</a>, or <code>GROUP</code>, as defined by <a>RuleGroup</a>. The default is REGULAR. Although this field is optional, be aware that if you try to add a RATE_BASED rule to a web ACL without setting the type, the <a>UpdateWebACL</a> request will fail because the request tries to add a REGULAR rule with the specified ID, which does not exist.
189
189
  * </p>
190
190
  * @public
191
191
  */
192
- Type?: WafRuleType;
192
+ Type?: WafRuleType | undefined;
193
193
  /**
194
194
  * <p>An array of rules to exclude from a rule group. This is applicable only when the <code>ActivatedRule</code> refers to a <code>RuleGroup</code>.</p>
195
195
  * <p>Sometimes it is necessary to troubleshoot rule groups that are blocking traffic
@@ -234,7 +234,7 @@ export interface ActivatedRule {
234
234
  * </ol>
235
235
  * @public
236
236
  */
237
- ExcludedRules?: ExcludedRule[];
237
+ ExcludedRules?: ExcludedRule[] | undefined;
238
238
  }
239
239
  /**
240
240
  * @public
@@ -333,7 +333,7 @@ export interface FieldToMatch {
333
333
  * <p>If the value of <code>Type</code> is any other value, omit <code>Data</code>.</p>
334
334
  * @public
335
335
  */
336
- Data?: string;
336
+ Data?: string | undefined;
337
337
  }
338
338
  /**
339
339
  * @public
@@ -631,7 +631,7 @@ export interface ByteMatchSet {
631
631
  * <p>A friendly name or description of the <a>ByteMatchSet</a>. You can't change <code>Name</code> after you create a <code>ByteMatchSet</code>.</p>
632
632
  * @public
633
633
  */
634
- Name?: string;
634
+ Name?: string | undefined;
635
635
  /**
636
636
  * <p>Specifies the bytes (typically a string that corresponds with ASCII characters) that you want AWS WAF to search for in web requests, the location in requests that you want AWS WAF to search, and other settings.</p>
637
637
  * @public
@@ -646,13 +646,13 @@ export interface CreateByteMatchSetResponse {
646
646
  * <p>A <a>ByteMatchSet</a> that contains no <code>ByteMatchTuple</code> objects.</p>
647
647
  * @public
648
648
  */
649
- ByteMatchSet?: ByteMatchSet;
649
+ ByteMatchSet?: ByteMatchSet | undefined;
650
650
  /**
651
651
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateByteMatchSet</code> request. You can also use this value
652
652
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
653
653
  * @public
654
654
  */
655
- ChangeToken?: string;
655
+ ChangeToken?: string | undefined;
656
656
  }
657
657
  /**
658
658
  * <p>The name specified is invalid.</p>
@@ -776,9 +776,9 @@ export type ParameterExceptionReason = (typeof ParameterExceptionReason)[keyof t
776
776
  export declare class WAFInvalidParameterException extends __BaseException {
777
777
  readonly name: "WAFInvalidParameterException";
778
778
  readonly $fault: "client";
779
- field?: ParameterExceptionField;
780
- parameter?: string;
781
- reason?: ParameterExceptionReason;
779
+ field?: ParameterExceptionField | undefined;
780
+ parameter?: string | undefined;
781
+ reason?: ParameterExceptionReason | undefined;
782
782
  /**
783
783
  * @internal
784
784
  */
@@ -1144,7 +1144,7 @@ export interface GeoMatchSet {
1144
1144
  * <p>A friendly name or description of the <a>GeoMatchSet</a>. You can't change the name of an <code>GeoMatchSet</code> after you create it.</p>
1145
1145
  * @public
1146
1146
  */
1147
- Name?: string;
1147
+ Name?: string | undefined;
1148
1148
  /**
1149
1149
  * <p>An array of <a>GeoMatchConstraint</a> objects, which contain the country that you want AWS WAF to search for.</p>
1150
1150
  * @public
@@ -1159,13 +1159,13 @@ export interface CreateGeoMatchSetResponse {
1159
1159
  * <p>The <a>GeoMatchSet</a> returned in the <code>CreateGeoMatchSet</code> response. The <code>GeoMatchSet</code> contains no <code>GeoMatchConstraints</code>.</p>
1160
1160
  * @public
1161
1161
  */
1162
- GeoMatchSet?: GeoMatchSet;
1162
+ GeoMatchSet?: GeoMatchSet | undefined;
1163
1163
  /**
1164
1164
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateGeoMatchSet</code> request. You can also use this value
1165
1165
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
1166
1166
  * @public
1167
1167
  */
1168
- ChangeToken?: string;
1168
+ ChangeToken?: string | undefined;
1169
1169
  }
1170
1170
  /**
1171
1171
  * @public
@@ -1271,7 +1271,7 @@ export interface IPSet {
1271
1271
  * <p>A friendly name or description of the <a>IPSet</a>. You can't change the name of an <code>IPSet</code> after you create it.</p>
1272
1272
  * @public
1273
1273
  */
1274
- Name?: string;
1274
+ Name?: string | undefined;
1275
1275
  /**
1276
1276
  * <p>The IP address type (<code>IPV4</code> or <code>IPV6</code>) and the IP address range (in CIDR notation) that web requests originate from.
1277
1277
  * If the <code>WebACL</code> is associated with a CloudFront distribution and the viewer did not use an HTTP proxy or a load balancer to send the request, this is the value of the c-ip field in the CloudFront access logs.</p>
@@ -1287,13 +1287,13 @@ export interface CreateIPSetResponse {
1287
1287
  * <p>The <a>IPSet</a> returned in the <code>CreateIPSet</code> response.</p>
1288
1288
  * @public
1289
1289
  */
1290
- IPSet?: IPSet;
1290
+ IPSet?: IPSet | undefined;
1291
1291
  /**
1292
1292
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateIPSet</code> request. You can also use this value
1293
1293
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
1294
1294
  * @public
1295
1295
  */
1296
- ChangeToken?: string;
1296
+ ChangeToken?: string | undefined;
1297
1297
  }
1298
1298
  /**
1299
1299
  * @public
@@ -1377,7 +1377,7 @@ export interface CreateRateBasedRuleRequest {
1377
1377
  * <p></p>
1378
1378
  * @public
1379
1379
  */
1380
- Tags?: Tag[];
1380
+ Tags?: Tag[] | undefined;
1381
1381
  }
1382
1382
  /**
1383
1383
  * @public
@@ -1477,14 +1477,14 @@ export interface RateBasedRule {
1477
1477
  * name of a <code>RateBasedRule</code> after you create it.</p>
1478
1478
  * @public
1479
1479
  */
1480
- Name?: string;
1480
+ Name?: string | undefined;
1481
1481
  /**
1482
1482
  * <p>A friendly name or description for the metrics for a <code>RateBasedRule</code>. The name can contain only alphanumeric characters (A-Z, a-z, 0-9), with maximum length 128 and minimum length one. It can't contain
1483
1483
  * whitespace or metric names reserved for AWS WAF, including "All" and "Default_Action." You can't change the name of the metric after you create the
1484
1484
  * <code>RateBasedRule</code>.</p>
1485
1485
  * @public
1486
1486
  */
1487
- MetricName?: string;
1487
+ MetricName?: string | undefined;
1488
1488
  /**
1489
1489
  * <p>The <code>Predicates</code> object contains one <code>Predicate</code> element for
1490
1490
  * each <a>ByteMatchSet</a>, <a>IPSet</a>, or <a>SqlInjectionMatchSet</a> object that you want to include in a
@@ -1519,14 +1519,14 @@ export interface CreateRateBasedRuleResponse {
1519
1519
  * that is returned in the <code>CreateRateBasedRule</code> response.</p>
1520
1520
  * @public
1521
1521
  */
1522
- Rule?: RateBasedRule;
1522
+ Rule?: RateBasedRule | undefined;
1523
1523
  /**
1524
1524
  * <p>The <code>ChangeToken</code> that you used to submit the
1525
1525
  * <code>CreateRateBasedRule</code> request. You can also use this value to query the
1526
1526
  * status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
1527
1527
  * @public
1528
1528
  */
1529
- ChangeToken?: string;
1529
+ ChangeToken?: string | undefined;
1530
1530
  }
1531
1531
  /**
1532
1532
  * <p></p>
@@ -1742,13 +1742,13 @@ export interface RegexMatchSet {
1742
1742
  * <code>RegexMatchSetId</code> is returned by <a>CreateRegexMatchSet</a> and by <a>ListRegexMatchSets</a>.</p>
1743
1743
  * @public
1744
1744
  */
1745
- RegexMatchSetId?: string;
1745
+ RegexMatchSetId?: string | undefined;
1746
1746
  /**
1747
1747
  * <p>A friendly name or description of the <a>RegexMatchSet</a>. You can't change <code>Name</code> after you create a
1748
1748
  * <code>RegexMatchSet</code>.</p>
1749
1749
  * @public
1750
1750
  */
1751
- Name?: string;
1751
+ Name?: string | undefined;
1752
1752
  /**
1753
1753
  * <p>Contains an array of <a>RegexMatchTuple</a> objects. Each <code>RegexMatchTuple</code>
1754
1754
  * object contains: </p>
@@ -1765,7 +1765,7 @@ export interface RegexMatchSet {
1765
1765
  * </ul>
1766
1766
  * @public
1767
1767
  */
1768
- RegexMatchTuples?: RegexMatchTuple[];
1768
+ RegexMatchTuples?: RegexMatchTuple[] | undefined;
1769
1769
  }
1770
1770
  /**
1771
1771
  * @public
@@ -1775,13 +1775,13 @@ export interface CreateRegexMatchSetResponse {
1775
1775
  * <p>A <a>RegexMatchSet</a> that contains no <code>RegexMatchTuple</code> objects.</p>
1776
1776
  * @public
1777
1777
  */
1778
- RegexMatchSet?: RegexMatchSet;
1778
+ RegexMatchSet?: RegexMatchSet | undefined;
1779
1779
  /**
1780
1780
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateRegexMatchSet</code> request. You can also use this value
1781
1781
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
1782
1782
  * @public
1783
1783
  */
1784
- ChangeToken?: string;
1784
+ ChangeToken?: string | undefined;
1785
1785
  }
1786
1786
  /**
1787
1787
  * @public
@@ -1824,7 +1824,7 @@ export interface RegexPatternSet {
1824
1824
  * <p>A friendly name or description of the <a>RegexPatternSet</a>. You can't change <code>Name</code> after you create a <code>RegexPatternSet</code>.</p>
1825
1825
  * @public
1826
1826
  */
1827
- Name?: string;
1827
+ Name?: string | undefined;
1828
1828
  /**
1829
1829
  * <p>Specifies the regular expression (regex) patterns that you want AWS WAF to search for, such as <code>B[a@]dB[o0]t</code>.</p>
1830
1830
  * @public
@@ -1839,13 +1839,13 @@ export interface CreateRegexPatternSetResponse {
1839
1839
  * <p>A <a>RegexPatternSet</a> that contains no objects.</p>
1840
1840
  * @public
1841
1841
  */
1842
- RegexPatternSet?: RegexPatternSet;
1842
+ RegexPatternSet?: RegexPatternSet | undefined;
1843
1843
  /**
1844
1844
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateRegexPatternSet</code> request. You can also use this value
1845
1845
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
1846
1846
  * @public
1847
1847
  */
1848
- ChangeToken?: string;
1848
+ ChangeToken?: string | undefined;
1849
1849
  }
1850
1850
  /**
1851
1851
  * @public
@@ -1872,7 +1872,7 @@ export interface CreateRuleRequest {
1872
1872
  * <p></p>
1873
1873
  * @public
1874
1874
  */
1875
- Tags?: Tag[];
1875
+ Tags?: Tag[] | undefined;
1876
1876
  }
1877
1877
  /**
1878
1878
  * <note>
@@ -1913,13 +1913,13 @@ export interface Rule {
1913
1913
  * <p>The friendly name or description for the <code>Rule</code>. You can't change the name of a <code>Rule</code> after you create it.</p>
1914
1914
  * @public
1915
1915
  */
1916
- Name?: string;
1916
+ Name?: string | undefined;
1917
1917
  /**
1918
1918
  * <p>A friendly name or description for the metrics for this <code>Rule</code>. The name can contain only alphanumeric characters (A-Z, a-z, 0-9), with maximum length 128 and minimum length one. It can't contain
1919
1919
  * whitespace or metric names reserved for AWS WAF, including "All" and "Default_Action." You can't change <code>MetricName</code> after you create the <code>Rule</code>.</p>
1920
1920
  * @public
1921
1921
  */
1922
- MetricName?: string;
1922
+ MetricName?: string | undefined;
1923
1923
  /**
1924
1924
  * <p>The <code>Predicates</code> object contains one <code>Predicate</code> element for each <a>ByteMatchSet</a>, <a>IPSet</a>, or
1925
1925
  * <a>SqlInjectionMatchSet</a> object that you want to include in a <code>Rule</code>.</p>
@@ -1935,13 +1935,13 @@ export interface CreateRuleResponse {
1935
1935
  * <p>The <a>Rule</a> returned in the <code>CreateRule</code> response.</p>
1936
1936
  * @public
1937
1937
  */
1938
- Rule?: Rule;
1938
+ Rule?: Rule | undefined;
1939
1939
  /**
1940
1940
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateRule</code> request. You can also use this value
1941
1941
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
1942
1942
  * @public
1943
1943
  */
1944
- ChangeToken?: string;
1944
+ ChangeToken?: string | undefined;
1945
1945
  }
1946
1946
  /**
1947
1947
  * @public
@@ -1968,7 +1968,7 @@ export interface CreateRuleGroupRequest {
1968
1968
  * <p></p>
1969
1969
  * @public
1970
1970
  */
1971
- Tags?: Tag[];
1971
+ Tags?: Tag[] | undefined;
1972
1972
  }
1973
1973
  /**
1974
1974
  * <note>
@@ -2008,13 +2008,13 @@ export interface RuleGroup {
2008
2008
  * <p>The friendly name or description for the <code>RuleGroup</code>. You can't change the name of a <code>RuleGroup</code> after you create it.</p>
2009
2009
  * @public
2010
2010
  */
2011
- Name?: string;
2011
+ Name?: string | undefined;
2012
2012
  /**
2013
2013
  * <p>A friendly name or description for the metrics for this <code>RuleGroup</code>. The name can contain only alphanumeric characters (A-Z, a-z, 0-9), with maximum length 128 and minimum length one. It can't contain
2014
2014
  * whitespace or metric names reserved for AWS WAF, including "All" and "Default_Action." You can't change the name of the metric after you create the <code>RuleGroup</code>.</p>
2015
2015
  * @public
2016
2016
  */
2017
- MetricName?: string;
2017
+ MetricName?: string | undefined;
2018
2018
  }
2019
2019
  /**
2020
2020
  * @public
@@ -2024,13 +2024,13 @@ export interface CreateRuleGroupResponse {
2024
2024
  * <p>An empty <a>RuleGroup</a>.</p>
2025
2025
  * @public
2026
2026
  */
2027
- RuleGroup?: RuleGroup;
2027
+ RuleGroup?: RuleGroup | undefined;
2028
2028
  /**
2029
2029
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateRuleGroup</code> request. You can also use this value
2030
2030
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2031
2031
  * @public
2032
2032
  */
2033
- ChangeToken?: string;
2033
+ ChangeToken?: string | undefined;
2034
2034
  }
2035
2035
  /**
2036
2036
  * @public
@@ -2250,7 +2250,7 @@ export interface SizeConstraintSet {
2250
2250
  * <p>The name, if any, of the <code>SizeConstraintSet</code>.</p>
2251
2251
  * @public
2252
2252
  */
2253
- Name?: string;
2253
+ Name?: string | undefined;
2254
2254
  /**
2255
2255
  * <p>Specifies the parts of web requests that you want to inspect the size of.</p>
2256
2256
  * @public
@@ -2265,13 +2265,13 @@ export interface CreateSizeConstraintSetResponse {
2265
2265
  * <p>A <a>SizeConstraintSet</a> that contains no <code>SizeConstraint</code> objects.</p>
2266
2266
  * @public
2267
2267
  */
2268
- SizeConstraintSet?: SizeConstraintSet;
2268
+ SizeConstraintSet?: SizeConstraintSet | undefined;
2269
2269
  /**
2270
2270
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateSizeConstraintSet</code> request. You can also use this value
2271
2271
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2272
2272
  * @public
2273
2273
  */
2274
- ChangeToken?: string;
2274
+ ChangeToken?: string | undefined;
2275
2275
  }
2276
2276
  /**
2277
2277
  * <p>A request to create a <a>SqlInjectionMatchSet</a>.</p>
@@ -2437,7 +2437,7 @@ export interface SqlInjectionMatchSet {
2437
2437
  * <p>The name, if any, of the <code>SqlInjectionMatchSet</code>.</p>
2438
2438
  * @public
2439
2439
  */
2440
- Name?: string;
2440
+ Name?: string | undefined;
2441
2441
  /**
2442
2442
  * <p>Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.</p>
2443
2443
  * @public
@@ -2453,13 +2453,13 @@ export interface CreateSqlInjectionMatchSetResponse {
2453
2453
  * <p>A <a>SqlInjectionMatchSet</a>.</p>
2454
2454
  * @public
2455
2455
  */
2456
- SqlInjectionMatchSet?: SqlInjectionMatchSet;
2456
+ SqlInjectionMatchSet?: SqlInjectionMatchSet | undefined;
2457
2457
  /**
2458
2458
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateSqlInjectionMatchSet</code> request. You can also use this value
2459
2459
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2460
2460
  * @public
2461
2461
  */
2462
- ChangeToken?: string;
2462
+ ChangeToken?: string | undefined;
2463
2463
  }
2464
2464
  /**
2465
2465
  * @public
@@ -2492,7 +2492,7 @@ export interface CreateWebACLRequest {
2492
2492
  * <p></p>
2493
2493
  * @public
2494
2494
  */
2495
- Tags?: Tag[];
2495
+ Tags?: Tag[] | undefined;
2496
2496
  }
2497
2497
  /**
2498
2498
  * <note>
@@ -2525,13 +2525,13 @@ export interface WebACL {
2525
2525
  * <p>A friendly name or description of the <code>WebACL</code>. You can't change the name of a <code>WebACL</code> after you create it.</p>
2526
2526
  * @public
2527
2527
  */
2528
- Name?: string;
2528
+ Name?: string | undefined;
2529
2529
  /**
2530
2530
  * <p>A friendly name or description for the metrics for this <code>WebACL</code>. The name can contain only alphanumeric characters (A-Z, a-z, 0-9), with maximum length 128 and minimum length one. It can't contain
2531
2531
  * whitespace or metric names reserved for AWS WAF, including "All" and "Default_Action." You can't change <code>MetricName</code> after you create the <code>WebACL</code>.</p>
2532
2532
  * @public
2533
2533
  */
2534
- MetricName?: string;
2534
+ MetricName?: string | undefined;
2535
2535
  /**
2536
2536
  * <p>The action to perform if none of the <code>Rules</code> contained in the <code>WebACL</code> match. The action is specified by the
2537
2537
  * <a>WafAction</a> object.</p>
@@ -2548,7 +2548,7 @@ export interface WebACL {
2548
2548
  * <p>Tha Amazon Resource Name (ARN) of the web ACL.</p>
2549
2549
  * @public
2550
2550
  */
2551
- WebACLArn?: string;
2551
+ WebACLArn?: string | undefined;
2552
2552
  }
2553
2553
  /**
2554
2554
  * @public
@@ -2558,13 +2558,13 @@ export interface CreateWebACLResponse {
2558
2558
  * <p>The <a>WebACL</a> returned in the <code>CreateWebACL</code> response.</p>
2559
2559
  * @public
2560
2560
  */
2561
- WebACL?: WebACL;
2561
+ WebACL?: WebACL | undefined;
2562
2562
  /**
2563
2563
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateWebACL</code> request. You can also use this value
2564
2564
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2565
2565
  * @public
2566
2566
  */
2567
- ChangeToken?: string;
2567
+ ChangeToken?: string | undefined;
2568
2568
  }
2569
2569
  /**
2570
2570
  * @public
@@ -2665,8 +2665,8 @@ export type MigrationErrorType = (typeof MigrationErrorType)[keyof typeof Migrat
2665
2665
  export declare class WAFEntityMigrationException extends __BaseException {
2666
2666
  readonly name: "WAFEntityMigrationException";
2667
2667
  readonly $fault: "client";
2668
- MigrationErrorType?: MigrationErrorType;
2669
- MigrationErrorReason?: string;
2668
+ MigrationErrorType?: MigrationErrorType | undefined;
2669
+ MigrationErrorReason?: string | undefined;
2670
2670
  /**
2671
2671
  * @internal
2672
2672
  */
@@ -2880,7 +2880,7 @@ export interface XssMatchSet {
2880
2880
  * <p>The name, if any, of the <code>XssMatchSet</code>.</p>
2881
2881
  * @public
2882
2882
  */
2883
- Name?: string;
2883
+ Name?: string | undefined;
2884
2884
  /**
2885
2885
  * <p>Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.</p>
2886
2886
  * @public
@@ -2896,13 +2896,13 @@ export interface CreateXssMatchSetResponse {
2896
2896
  * <p>An <a>XssMatchSet</a>.</p>
2897
2897
  * @public
2898
2898
  */
2899
- XssMatchSet?: XssMatchSet;
2899
+ XssMatchSet?: XssMatchSet | undefined;
2900
2900
  /**
2901
2901
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateXssMatchSet</code> request. You can also use this value
2902
2902
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2903
2903
  * @public
2904
2904
  */
2905
- ChangeToken?: string;
2905
+ ChangeToken?: string | undefined;
2906
2906
  }
2907
2907
  /**
2908
2908
  * @public
@@ -2929,7 +2929,7 @@ export interface DeleteByteMatchSetResponse {
2929
2929
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2930
2930
  * @public
2931
2931
  */
2932
- ChangeToken?: string;
2932
+ ChangeToken?: string | undefined;
2933
2933
  }
2934
2934
  /**
2935
2935
  * <p>The operation failed because you tried to delete an object that isn't empty. For example:</p>
@@ -3003,7 +3003,7 @@ export interface DeleteGeoMatchSetResponse {
3003
3003
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3004
3004
  * @public
3005
3005
  */
3006
- ChangeToken?: string;
3006
+ ChangeToken?: string | undefined;
3007
3007
  }
3008
3008
  /**
3009
3009
  * @public
@@ -3030,7 +3030,7 @@ export interface DeleteIPSetResponse {
3030
3030
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3031
3031
  * @public
3032
3032
  */
3033
- ChangeToken?: string;
3033
+ ChangeToken?: string | undefined;
3034
3034
  }
3035
3035
  /**
3036
3036
  * @public
@@ -3090,7 +3090,7 @@ export interface DeleteRateBasedRuleResponse {
3090
3090
  * status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3091
3091
  * @public
3092
3092
  */
3093
- ChangeToken?: string;
3093
+ ChangeToken?: string | undefined;
3094
3094
  }
3095
3095
  /**
3096
3096
  * @public
@@ -3117,7 +3117,7 @@ export interface DeleteRegexMatchSetResponse {
3117
3117
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3118
3118
  * @public
3119
3119
  */
3120
- ChangeToken?: string;
3120
+ ChangeToken?: string | undefined;
3121
3121
  }
3122
3122
  /**
3123
3123
  * @public
@@ -3144,7 +3144,7 @@ export interface DeleteRegexPatternSetResponse {
3144
3144
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3145
3145
  * @public
3146
3146
  */
3147
- ChangeToken?: string;
3147
+ ChangeToken?: string | undefined;
3148
3148
  }
3149
3149
  /**
3150
3150
  * @public
@@ -3171,7 +3171,7 @@ export interface DeleteRuleResponse {
3171
3171
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3172
3172
  * @public
3173
3173
  */
3174
- ChangeToken?: string;
3174
+ ChangeToken?: string | undefined;
3175
3175
  }
3176
3176
  /**
3177
3177
  * @public
@@ -3198,7 +3198,7 @@ export interface DeleteRuleGroupResponse {
3198
3198
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3199
3199
  * @public
3200
3200
  */
3201
- ChangeToken?: string;
3201
+ ChangeToken?: string | undefined;
3202
3202
  }
3203
3203
  /**
3204
3204
  * @public
@@ -3225,7 +3225,7 @@ export interface DeleteSizeConstraintSetResponse {
3225
3225
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3226
3226
  * @public
3227
3227
  */
3228
- ChangeToken?: string;
3228
+ ChangeToken?: string | undefined;
3229
3229
  }
3230
3230
  /**
3231
3231
  * <p>A request to delete a <a>SqlInjectionMatchSet</a> from AWS WAF.</p>
@@ -3254,7 +3254,7 @@ export interface DeleteSqlInjectionMatchSetResponse {
3254
3254
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3255
3255
  * @public
3256
3256
  */
3257
- ChangeToken?: string;
3257
+ ChangeToken?: string | undefined;
3258
3258
  }
3259
3259
  /**
3260
3260
  * @public
@@ -3281,7 +3281,7 @@ export interface DeleteWebACLResponse {
3281
3281
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3282
3282
  * @public
3283
3283
  */
3284
- ChangeToken?: string;
3284
+ ChangeToken?: string | undefined;
3285
3285
  }
3286
3286
  /**
3287
3287
  * <p>A request to delete an <a>XssMatchSet</a> from AWS WAF.</p>
@@ -3310,7 +3310,7 @@ export interface DeleteXssMatchSetResponse {
3310
3310
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3311
3311
  * @public
3312
3312
  */
3313
- ChangeToken?: string;
3313
+ ChangeToken?: string | undefined;
3314
3314
  }
3315
3315
  /**
3316
3316
  * @public
@@ -3351,7 +3351,7 @@ export interface GetByteMatchSetResponse {
3351
3351
  * </ul>
3352
3352
  * @public
3353
3353
  */
3354
- ByteMatchSet?: ByteMatchSet;
3354
+ ByteMatchSet?: ByteMatchSet | undefined;
3355
3355
  }
3356
3356
  /**
3357
3357
  * @public
@@ -3367,7 +3367,7 @@ export interface GetChangeTokenResponse {
3367
3367
  * to get the current status of the request. </p>
3368
3368
  * @public
3369
3369
  */
3370
- ChangeToken?: string;
3370
+ ChangeToken?: string | undefined;
3371
3371
  }
3372
3372
  /**
3373
3373
  * @public
@@ -3400,7 +3400,7 @@ export interface GetChangeTokenStatusResponse {
3400
3400
  * <p>The status of the change token.</p>
3401
3401
  * @public
3402
3402
  */
3403
- ChangeTokenStatus?: ChangeTokenStatus;
3403
+ ChangeTokenStatus?: ChangeTokenStatus | undefined;
3404
3404
  }
3405
3405
  /**
3406
3406
  * @public
@@ -3421,7 +3421,7 @@ export interface GetGeoMatchSetResponse {
3421
3421
  * <p>Information about the <a>GeoMatchSet</a> that you specified in the <code>GetGeoMatchSet</code> request. This includes the <code>Type</code>, which for a <code>GeoMatchContraint</code> is always <code>Country</code>, as well as the <code>Value</code>, which is the identifier for a specific country.</p>
3422
3422
  * @public
3423
3423
  */
3424
- GeoMatchSet?: GeoMatchSet;
3424
+ GeoMatchSet?: GeoMatchSet | undefined;
3425
3425
  }
3426
3426
  /**
3427
3427
  * @public
@@ -3456,7 +3456,7 @@ export interface GetIPSetResponse {
3456
3456
  * </ul>
3457
3457
  * @public
3458
3458
  */
3459
- IPSet?: IPSet;
3459
+ IPSet?: IPSet | undefined;
3460
3460
  }
3461
3461
  /**
3462
3462
  * @public
@@ -3500,7 +3500,7 @@ export interface LoggingConfiguration {
3500
3500
  * <code>xxx</code>. </p>
3501
3501
  * @public
3502
3502
  */
3503
- RedactedFields?: FieldToMatch[];
3503
+ RedactedFields?: FieldToMatch[] | undefined;
3504
3504
  }
3505
3505
  /**
3506
3506
  * @public
@@ -3510,7 +3510,7 @@ export interface GetLoggingConfigurationResponse {
3510
3510
  * <p>The <a>LoggingConfiguration</a> for the specified web ACL.</p>
3511
3511
  * @public
3512
3512
  */
3513
- LoggingConfiguration?: LoggingConfiguration;
3513
+ LoggingConfiguration?: LoggingConfiguration | undefined;
3514
3514
  }
3515
3515
  /**
3516
3516
  * @public
@@ -3530,7 +3530,7 @@ export interface GetPermissionPolicyResponse {
3530
3530
  * <p>The IAM policy attached to the specified RuleGroup.</p>
3531
3531
  * @public
3532
3532
  */
3533
- Policy?: string;
3533
+ Policy?: string | undefined;
3534
3534
  }
3535
3535
  /**
3536
3536
  * @public
@@ -3552,7 +3552,7 @@ export interface GetRateBasedRuleResponse {
3552
3552
  * <code>GetRateBasedRule</code> request.</p>
3553
3553
  * @public
3554
3554
  */
3555
- Rule?: RateBasedRule;
3555
+ Rule?: RateBasedRule | undefined;
3556
3556
  }
3557
3557
  /**
3558
3558
  * @public
@@ -3568,7 +3568,7 @@ export interface GetRateBasedRuleManagedKeysRequest {
3568
3568
  * <p>A null value and not currently used. Do not include this in your request.</p>
3569
3569
  * @public
3570
3570
  */
3571
- NextMarker?: string;
3571
+ NextMarker?: string | undefined;
3572
3572
  }
3573
3573
  /**
3574
3574
  * @public
@@ -3578,12 +3578,12 @@ export interface GetRateBasedRuleManagedKeysResponse {
3578
3578
  * <p>An array of IP addresses that currently are blocked by the specified <a>RateBasedRule</a>. </p>
3579
3579
  * @public
3580
3580
  */
3581
- ManagedKeys?: string[];
3581
+ ManagedKeys?: string[] | undefined;
3582
3582
  /**
3583
3583
  * <p>A null value and not currently used.</p>
3584
3584
  * @public
3585
3585
  */
3586
- NextMarker?: string;
3586
+ NextMarker?: string | undefined;
3587
3587
  }
3588
3588
  /**
3589
3589
  * @public
@@ -3604,7 +3604,7 @@ export interface GetRegexMatchSetResponse {
3604
3604
  * <p>Information about the <a>RegexMatchSet</a> that you specified in the <code>GetRegexMatchSet</code> request. For more information, see <a>RegexMatchTuple</a>.</p>
3605
3605
  * @public
3606
3606
  */
3607
- RegexMatchSet?: RegexMatchSet;
3607
+ RegexMatchSet?: RegexMatchSet | undefined;
3608
3608
  }
3609
3609
  /**
3610
3610
  * @public
@@ -3625,7 +3625,7 @@ export interface GetRegexPatternSetResponse {
3625
3625
  * <p>Information about the <a>RegexPatternSet</a> that you specified in the <code>GetRegexPatternSet</code> request, including the identifier of the pattern set and the regular expression patterns you want AWS WAF to search for. </p>
3626
3626
  * @public
3627
3627
  */
3628
- RegexPatternSet?: RegexPatternSet;
3628
+ RegexPatternSet?: RegexPatternSet | undefined;
3629
3629
  }
3630
3630
  /**
3631
3631
  * @public
@@ -3661,7 +3661,7 @@ export interface GetRuleResponse {
3661
3661
  * </ul>
3662
3662
  * @public
3663
3663
  */
3664
- Rule?: Rule;
3664
+ Rule?: Rule | undefined;
3665
3665
  }
3666
3666
  /**
3667
3667
  * @public
@@ -3682,7 +3682,7 @@ export interface GetRuleGroupResponse {
3682
3682
  * <p>Information about the <a>RuleGroup</a> that you specified in the <code>GetRuleGroup</code> request. </p>
3683
3683
  * @public
3684
3684
  */
3685
- RuleGroup?: RuleGroup;
3685
+ RuleGroup?: RuleGroup | undefined;
3686
3686
  }
3687
3687
  /**
3688
3688
  * <note>
@@ -3781,12 +3781,12 @@ export interface HTTPHeader {
3781
3781
  * <p>The name of one of the headers in the sampled web request.</p>
3782
3782
  * @public
3783
3783
  */
3784
- Name?: string;
3784
+ Name?: string | undefined;
3785
3785
  /**
3786
3786
  * <p>The value of one of the headers in the sampled web request.</p>
3787
3787
  * @public
3788
3788
  */
3789
- Value?: string;
3789
+ Value?: string | undefined;
3790
3790
  }
3791
3791
  /**
3792
3792
  * <note>
@@ -3818,34 +3818,34 @@ export interface HTTPRequest {
3818
3818
  * </ul>
3819
3819
  * @public
3820
3820
  */
3821
- ClientIP?: string;
3821
+ ClientIP?: string | undefined;
3822
3822
  /**
3823
3823
  * <p>The two-letter country code for the country that the request originated from. For a current list of country codes,
3824
3824
  * see the Wikipedia entry <a href="https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2">ISO 3166-1 alpha-2</a>.</p>
3825
3825
  * @public
3826
3826
  */
3827
- Country?: string;
3827
+ Country?: string | undefined;
3828
3828
  /**
3829
3829
  * <p>The part of a web request that identifies the resource, for example, <code>/images/daily-ad.jpg</code>.</p>
3830
3830
  * @public
3831
3831
  */
3832
- URI?: string;
3832
+ URI?: string | undefined;
3833
3833
  /**
3834
3834
  * <p>The HTTP method specified in the sampled web request. CloudFront supports the following methods: <code>DELETE</code>,
3835
3835
  * <code>GET</code>, <code>HEAD</code>, <code>OPTIONS</code>, <code>PATCH</code>, <code>POST</code>, and <code>PUT</code>. </p>
3836
3836
  * @public
3837
3837
  */
3838
- Method?: string;
3838
+ Method?: string | undefined;
3839
3839
  /**
3840
3840
  * <p>The HTTP version specified in the sampled web request, for example, <code>HTTP/1.1</code>.</p>
3841
3841
  * @public
3842
3842
  */
3843
- HTTPVersion?: string;
3843
+ HTTPVersion?: string | undefined;
3844
3844
  /**
3845
3845
  * <p>A complex type that contains two values for each header in the sampled web request: the name of the header and the value of the header.</p>
3846
3846
  * @public
3847
3847
  */
3848
- Headers?: HTTPHeader[];
3848
+ Headers?: HTTPHeader[] | undefined;
3849
3849
  }
3850
3850
  /**
3851
3851
  * <note>
@@ -3878,17 +3878,17 @@ export interface SampledHTTPRequest {
3878
3878
  * <p>The time at which AWS WAF received the request from your AWS resource, in Unix time format (in seconds).</p>
3879
3879
  * @public
3880
3880
  */
3881
- Timestamp?: Date;
3881
+ Timestamp?: Date | undefined;
3882
3882
  /**
3883
3883
  * <p>The action for the <code>Rule</code> that the request matched: <code>ALLOW</code>, <code>BLOCK</code>, or <code>COUNT</code>.</p>
3884
3884
  * @public
3885
3885
  */
3886
- Action?: string;
3886
+ Action?: string | undefined;
3887
3887
  /**
3888
3888
  * <p>This value is returned if the <code>GetSampledRequests</code> request specifies the ID of a <code>RuleGroup</code> rather than the ID of an individual rule. <code>RuleWithinRuleGroup</code> is the rule within the specified <code>RuleGroup</code> that matched the request listed in the response.</p>
3889
3889
  * @public
3890
3890
  */
3891
- RuleWithinRuleGroup?: string;
3891
+ RuleWithinRuleGroup?: string | undefined;
3892
3892
  }
3893
3893
  /**
3894
3894
  * @public
@@ -3898,21 +3898,21 @@ export interface GetSampledRequestsResponse {
3898
3898
  * <p>A complex type that contains detailed information about each of the requests in the sample.</p>
3899
3899
  * @public
3900
3900
  */
3901
- SampledRequests?: SampledHTTPRequest[];
3901
+ SampledRequests?: SampledHTTPRequest[] | undefined;
3902
3902
  /**
3903
3903
  * <p>The total number of requests from which <code>GetSampledRequests</code> got a sample of <code>MaxItems</code> requests.
3904
3904
  * If <code>PopulationSize</code> is less than <code>MaxItems</code>, the sample includes every request that your AWS resource
3905
3905
  * received during the specified time range.</p>
3906
3906
  * @public
3907
3907
  */
3908
- PopulationSize?: number;
3908
+ PopulationSize?: number | undefined;
3909
3909
  /**
3910
3910
  * <p>Usually, <code>TimeWindow</code> is the time range that you specified in the <code>GetSampledRequests</code> request. However,
3911
3911
  * if your AWS resource received more than 5,000 requests during the time range that you specified in the request,
3912
3912
  * <code>GetSampledRequests</code> returns the time range for the first 5,000 requests. Times are in Coordinated Universal Time (UTC) format.</p>
3913
3913
  * @public
3914
3914
  */
3915
- TimeWindow?: TimeWindow;
3915
+ TimeWindow?: TimeWindow | undefined;
3916
3916
  }
3917
3917
  /**
3918
3918
  * @public
@@ -3953,7 +3953,7 @@ export interface GetSizeConstraintSetResponse {
3953
3953
  * </ul>
3954
3954
  * @public
3955
3955
  */
3956
- SizeConstraintSet?: SizeConstraintSet;
3956
+ SizeConstraintSet?: SizeConstraintSet | undefined;
3957
3957
  }
3958
3958
  /**
3959
3959
  * <p>A request to get a <a>SqlInjectionMatchSet</a>.</p>
@@ -3995,7 +3995,7 @@ export interface GetSqlInjectionMatchSetResponse {
3995
3995
  * </ul>
3996
3996
  * @public
3997
3997
  */
3998
- SqlInjectionMatchSet?: SqlInjectionMatchSet;
3998
+ SqlInjectionMatchSet?: SqlInjectionMatchSet | undefined;
3999
3999
  }
4000
4000
  /**
4001
4001
  * @public
@@ -4041,7 +4041,7 @@ export interface GetWebACLResponse {
4041
4041
  * </ul>
4042
4042
  * @public
4043
4043
  */
4044
- WebACL?: WebACL;
4044
+ WebACL?: WebACL | undefined;
4045
4045
  }
4046
4046
  /**
4047
4047
  * <p>A request to get an <a>XssMatchSet</a>.</p>
@@ -4083,7 +4083,7 @@ export interface GetXssMatchSetResponse {
4083
4083
  * </ul>
4084
4084
  * @public
4085
4085
  */
4086
- XssMatchSet?: XssMatchSet;
4086
+ XssMatchSet?: XssMatchSet | undefined;
4087
4087
  }
4088
4088
  /**
4089
4089
  * @public
@@ -4093,7 +4093,7 @@ export interface ListActivatedRulesInRuleGroupRequest {
4093
4093
  * <p>The <code>RuleGroupId</code> of the <a>RuleGroup</a> for which you want to get a list of <a>ActivatedRule</a> objects.</p>
4094
4094
  * @public
4095
4095
  */
4096
- RuleGroupId?: string;
4096
+ RuleGroupId?: string | undefined;
4097
4097
  /**
4098
4098
  * <p>If you specify a value for <code>Limit</code> and you have more <code>ActivatedRules</code> than the value of <code>Limit</code>,
4099
4099
  * AWS WAF returns a <code>NextMarker</code> value in the response that allows you to list another group of <code>ActivatedRules</code>.
@@ -4101,13 +4101,13 @@ export interface ListActivatedRulesInRuleGroupRequest {
4101
4101
  * from the previous response to get information about another batch of <code>ActivatedRules</code>.</p>
4102
4102
  * @public
4103
4103
  */
4104
- NextMarker?: string;
4104
+ NextMarker?: string | undefined;
4105
4105
  /**
4106
4106
  * <p>Specifies the number of <code>ActivatedRules</code> that you want AWS WAF to return for this request. If you have more <code>ActivatedRules</code> than the number that you specify for <code>Limit</code>, the response includes a
4107
4107
  * <code>NextMarker</code> value that you can use to get another batch of <code>ActivatedRules</code>.</p>
4108
4108
  * @public
4109
4109
  */
4110
- Limit?: number;
4110
+ Limit?: number | undefined;
4111
4111
  }
4112
4112
  /**
4113
4113
  * @public
@@ -4117,12 +4117,12 @@ export interface ListActivatedRulesInRuleGroupResponse {
4117
4117
  * <p>If you have more <code>ActivatedRules</code> than the number that you specified for <code>Limit</code> in the request, the response includes a <code>NextMarker</code> value. To list more <code>ActivatedRules</code>, submit another <code>ListActivatedRulesInRuleGroup</code> request, and specify the <code>NextMarker</code> value from the response in the <code>NextMarker</code> value in the next request.</p>
4118
4118
  * @public
4119
4119
  */
4120
- NextMarker?: string;
4120
+ NextMarker?: string | undefined;
4121
4121
  /**
4122
4122
  * <p>An array of <code>ActivatedRules</code> objects.</p>
4123
4123
  * @public
4124
4124
  */
4125
- ActivatedRules?: ActivatedRule[];
4125
+ ActivatedRules?: ActivatedRule[] | undefined;
4126
4126
  }
4127
4127
  /**
4128
4128
  * @public
@@ -4135,14 +4135,14 @@ export interface ListByteMatchSetsRequest {
4135
4135
  * from the previous response to get information about another batch of <code>ByteMatchSets</code>.</p>
4136
4136
  * @public
4137
4137
  */
4138
- NextMarker?: string;
4138
+ NextMarker?: string | undefined;
4139
4139
  /**
4140
4140
  * <p>Specifies the number of <code>ByteMatchSet</code> objects that you want AWS WAF to return for this request. If you have more
4141
4141
  * <code>ByteMatchSets</code> objects than the number you specify for <code>Limit</code>, the response includes a
4142
4142
  * <code>NextMarker</code> value that you can use to get another batch of <code>ByteMatchSet</code> objects.</p>
4143
4143
  * @public
4144
4144
  */
4145
- Limit?: number;
4145
+ Limit?: number | undefined;
4146
4146
  }
4147
4147
  /**
4148
4148
  * <note>
@@ -4183,12 +4183,12 @@ export interface ListByteMatchSetsResponse {
4183
4183
  * <code>NextMarker</code> value in the next request.</p>
4184
4184
  * @public
4185
4185
  */
4186
- NextMarker?: string;
4186
+ NextMarker?: string | undefined;
4187
4187
  /**
4188
4188
  * <p>An array of <a>ByteMatchSetSummary</a> objects.</p>
4189
4189
  * @public
4190
4190
  */
4191
- ByteMatchSets?: ByteMatchSetSummary[];
4191
+ ByteMatchSets?: ByteMatchSetSummary[] | undefined;
4192
4192
  }
4193
4193
  /**
4194
4194
  * @public
@@ -4201,14 +4201,14 @@ export interface ListGeoMatchSetsRequest {
4201
4201
  * from the previous response to get information about another batch of <code>GeoMatchSet</code> objects.</p>
4202
4202
  * @public
4203
4203
  */
4204
- NextMarker?: string;
4204
+ NextMarker?: string | undefined;
4205
4205
  /**
4206
4206
  * <p>Specifies the number of <code>GeoMatchSet</code> objects that you want AWS WAF to return for this request. If you have more
4207
4207
  * <code>GeoMatchSet</code> objects than the number you specify for <code>Limit</code>, the response includes a
4208
4208
  * <code>NextMarker</code> value that you can use to get another batch of <code>GeoMatchSet</code> objects.</p>
4209
4209
  * @public
4210
4210
  */
4211
- Limit?: number;
4211
+ Limit?: number | undefined;
4212
4212
  }
4213
4213
  /**
4214
4214
  * <note>
@@ -4245,12 +4245,12 @@ export interface ListGeoMatchSetsResponse {
4245
4245
  * <code>NextMarker</code> value in the next request.</p>
4246
4246
  * @public
4247
4247
  */
4248
- NextMarker?: string;
4248
+ NextMarker?: string | undefined;
4249
4249
  /**
4250
4250
  * <p>An array of <a>GeoMatchSetSummary</a> objects.</p>
4251
4251
  * @public
4252
4252
  */
4253
- GeoMatchSets?: GeoMatchSetSummary[];
4253
+ GeoMatchSets?: GeoMatchSetSummary[] | undefined;
4254
4254
  }
4255
4255
  /**
4256
4256
  * @public
@@ -4263,14 +4263,14 @@ export interface ListIPSetsRequest {
4263
4263
  * previous response to get information about another batch of <code>IPSets</code>.</p>
4264
4264
  * @public
4265
4265
  */
4266
- NextMarker?: string;
4266
+ NextMarker?: string | undefined;
4267
4267
  /**
4268
4268
  * <p>Specifies the number of <code>IPSet</code> objects that you want AWS WAF to return for this request. If you have more
4269
4269
  * <code>IPSet</code> objects than the number you specify for <code>Limit</code>, the response includes a
4270
4270
  * <code>NextMarker</code> value that you can use to get another batch of <code>IPSet</code> objects.</p>
4271
4271
  * @public
4272
4272
  */
4273
- Limit?: number;
4273
+ Limit?: number | undefined;
4274
4274
  }
4275
4275
  /**
4276
4276
  * <note>
@@ -4307,12 +4307,12 @@ export interface ListIPSetsResponse {
4307
4307
  * <code>NextMarker</code> value.</p>
4308
4308
  * @public
4309
4309
  */
4310
- NextMarker?: string;
4310
+ NextMarker?: string | undefined;
4311
4311
  /**
4312
4312
  * <p>An array of <a>IPSetSummary</a> objects.</p>
4313
4313
  * @public
4314
4314
  */
4315
- IPSets?: IPSetSummary[];
4315
+ IPSets?: IPSetSummary[] | undefined;
4316
4316
  }
4317
4317
  /**
4318
4318
  * @public
@@ -4325,12 +4325,12 @@ export interface ListLoggingConfigurationsRequest {
4325
4325
  * from the previous response to get information about another batch of <code>ListLoggingConfigurations</code>.</p>
4326
4326
  * @public
4327
4327
  */
4328
- NextMarker?: string;
4328
+ NextMarker?: string | undefined;
4329
4329
  /**
4330
4330
  * <p>Specifies the number of <code>LoggingConfigurations</code> that you want AWS WAF to return for this request. If you have more <code>LoggingConfigurations</code> than the number that you specify for <code>Limit</code>, the response includes a <code>NextMarker</code> value that you can use to get another batch of <code>LoggingConfigurations</code>.</p>
4331
4331
  * @public
4332
4332
  */
4333
- Limit?: number;
4333
+ Limit?: number | undefined;
4334
4334
  }
4335
4335
  /**
4336
4336
  * @public
@@ -4340,12 +4340,12 @@ export interface ListLoggingConfigurationsResponse {
4340
4340
  * <p>An array of <a>LoggingConfiguration</a> objects.</p>
4341
4341
  * @public
4342
4342
  */
4343
- LoggingConfigurations?: LoggingConfiguration[];
4343
+ LoggingConfigurations?: LoggingConfiguration[] | undefined;
4344
4344
  /**
4345
4345
  * <p>If you have more <code>LoggingConfigurations</code> than the number that you specified for <code>Limit</code> in the request, the response includes a <code>NextMarker</code> value. To list more <code>LoggingConfigurations</code>, submit another <code>ListLoggingConfigurations</code> request, and specify the <code>NextMarker</code> value from the response in the <code>NextMarker</code> value in the next request.</p>
4346
4346
  * @public
4347
4347
  */
4348
- NextMarker?: string;
4348
+ NextMarker?: string | undefined;
4349
4349
  }
4350
4350
  /**
4351
4351
  * @public
@@ -4360,7 +4360,7 @@ export interface ListRateBasedRulesRequest {
4360
4360
  * batch of <code>Rules</code>.</p>
4361
4361
  * @public
4362
4362
  */
4363
- NextMarker?: string;
4363
+ NextMarker?: string | undefined;
4364
4364
  /**
4365
4365
  * <p>Specifies the number of <code>Rules</code> that you want AWS WAF to return for this
4366
4366
  * request. If you have more <code>Rules</code> than the number that you specify for
@@ -4368,7 +4368,7 @@ export interface ListRateBasedRulesRequest {
4368
4368
  * use to get another batch of <code>Rules</code>.</p>
4369
4369
  * @public
4370
4370
  */
4371
- Limit?: number;
4371
+ Limit?: number | undefined;
4372
4372
  }
4373
4373
  /**
4374
4374
  * <note>
@@ -4410,12 +4410,12 @@ export interface ListRateBasedRulesResponse {
4410
4410
  * <code>NextMarker</code> value in the next request.</p>
4411
4411
  * @public
4412
4412
  */
4413
- NextMarker?: string;
4413
+ NextMarker?: string | undefined;
4414
4414
  /**
4415
4415
  * <p>An array of <a>RuleSummary</a> objects.</p>
4416
4416
  * @public
4417
4417
  */
4418
- Rules?: RuleSummary[];
4418
+ Rules?: RuleSummary[] | undefined;
4419
4419
  }
4420
4420
  /**
4421
4421
  * @public
@@ -4428,14 +4428,14 @@ export interface ListRegexMatchSetsRequest {
4428
4428
  * from the previous response to get information about another batch of <code>RegexMatchSet</code> objects.</p>
4429
4429
  * @public
4430
4430
  */
4431
- NextMarker?: string;
4431
+ NextMarker?: string | undefined;
4432
4432
  /**
4433
4433
  * <p>Specifies the number of <code>RegexMatchSet</code> objects that you want AWS WAF to return for this request. If you have more
4434
4434
  * <code>RegexMatchSet</code> objects than the number you specify for <code>Limit</code>, the response includes a
4435
4435
  * <code>NextMarker</code> value that you can use to get another batch of <code>RegexMatchSet</code> objects.</p>
4436
4436
  * @public
4437
4437
  */
4438
- Limit?: number;
4438
+ Limit?: number | undefined;
4439
4439
  }
4440
4440
  /**
4441
4441
  * <note>
@@ -4476,12 +4476,12 @@ export interface ListRegexMatchSetsResponse {
4476
4476
  * <code>NextMarker</code> value in the next request.</p>
4477
4477
  * @public
4478
4478
  */
4479
- NextMarker?: string;
4479
+ NextMarker?: string | undefined;
4480
4480
  /**
4481
4481
  * <p>An array of <a>RegexMatchSetSummary</a> objects.</p>
4482
4482
  * @public
4483
4483
  */
4484
- RegexMatchSets?: RegexMatchSetSummary[];
4484
+ RegexMatchSets?: RegexMatchSetSummary[] | undefined;
4485
4485
  }
4486
4486
  /**
4487
4487
  * @public
@@ -4494,14 +4494,14 @@ export interface ListRegexPatternSetsRequest {
4494
4494
  * from the previous response to get information about another batch of <code>RegexPatternSet</code> objects.</p>
4495
4495
  * @public
4496
4496
  */
4497
- NextMarker?: string;
4497
+ NextMarker?: string | undefined;
4498
4498
  /**
4499
4499
  * <p>Specifies the number of <code>RegexPatternSet</code> objects that you want AWS WAF to return for this request. If you have more
4500
4500
  * <code>RegexPatternSet</code> objects than the number you specify for <code>Limit</code>, the response includes a
4501
4501
  * <code>NextMarker</code> value that you can use to get another batch of <code>RegexPatternSet</code> objects.</p>
4502
4502
  * @public
4503
4503
  */
4504
- Limit?: number;
4504
+ Limit?: number | undefined;
4505
4505
  }
4506
4506
  /**
4507
4507
  * <note>
@@ -4542,12 +4542,12 @@ export interface ListRegexPatternSetsResponse {
4542
4542
  * <code>NextMarker</code> value in the next request.</p>
4543
4543
  * @public
4544
4544
  */
4545
- NextMarker?: string;
4545
+ NextMarker?: string | undefined;
4546
4546
  /**
4547
4547
  * <p>An array of <a>RegexPatternSetSummary</a> objects.</p>
4548
4548
  * @public
4549
4549
  */
4550
- RegexPatternSets?: RegexPatternSetSummary[];
4550
+ RegexPatternSets?: RegexPatternSetSummary[] | undefined;
4551
4551
  }
4552
4552
  /**
4553
4553
  * @public
@@ -4560,12 +4560,12 @@ export interface ListRuleGroupsRequest {
4560
4560
  * from the previous response to get information about another batch of <code>RuleGroups</code>.</p>
4561
4561
  * @public
4562
4562
  */
4563
- NextMarker?: string;
4563
+ NextMarker?: string | undefined;
4564
4564
  /**
4565
4565
  * <p>Specifies the number of <code>RuleGroups</code> that you want AWS WAF to return for this request. If you have more <code>RuleGroups</code> than the number that you specify for <code>Limit</code>, the response includes a <code>NextMarker</code> value that you can use to get another batch of <code>RuleGroups</code>.</p>
4566
4566
  * @public
4567
4567
  */
4568
- Limit?: number;
4568
+ Limit?: number | undefined;
4569
4569
  }
4570
4570
  /**
4571
4571
  * <note>
@@ -4603,12 +4603,12 @@ export interface ListRuleGroupsResponse {
4603
4603
  * <p>If you have more <code>RuleGroups</code> than the number that you specified for <code>Limit</code> in the request, the response includes a <code>NextMarker</code> value. To list more <code>RuleGroups</code>, submit another <code>ListRuleGroups</code> request, and specify the <code>NextMarker</code> value from the response in the <code>NextMarker</code> value in the next request.</p>
4604
4604
  * @public
4605
4605
  */
4606
- NextMarker?: string;
4606
+ NextMarker?: string | undefined;
4607
4607
  /**
4608
4608
  * <p>An array of <a>RuleGroup</a> objects.</p>
4609
4609
  * @public
4610
4610
  */
4611
- RuleGroups?: RuleGroupSummary[];
4611
+ RuleGroups?: RuleGroupSummary[] | undefined;
4612
4612
  }
4613
4613
  /**
4614
4614
  * @public
@@ -4621,13 +4621,13 @@ export interface ListRulesRequest {
4621
4621
  * from the previous response to get information about another batch of <code>Rules</code>.</p>
4622
4622
  * @public
4623
4623
  */
4624
- NextMarker?: string;
4624
+ NextMarker?: string | undefined;
4625
4625
  /**
4626
4626
  * <p>Specifies the number of <code>Rules</code> that you want AWS WAF to return for this request. If you have more <code>Rules</code> than the number that you specify for <code>Limit</code>, the response includes a
4627
4627
  * <code>NextMarker</code> value that you can use to get another batch of <code>Rules</code>.</p>
4628
4628
  * @public
4629
4629
  */
4630
- Limit?: number;
4630
+ Limit?: number | undefined;
4631
4631
  }
4632
4632
  /**
4633
4633
  * @public
@@ -4639,12 +4639,12 @@ export interface ListRulesResponse {
4639
4639
  * <code>NextMarker</code> value in the next request.</p>
4640
4640
  * @public
4641
4641
  */
4642
- NextMarker?: string;
4642
+ NextMarker?: string | undefined;
4643
4643
  /**
4644
4644
  * <p>An array of <a>RuleSummary</a> objects.</p>
4645
4645
  * @public
4646
4646
  */
4647
- Rules?: RuleSummary[];
4647
+ Rules?: RuleSummary[] | undefined;
4648
4648
  }
4649
4649
  /**
4650
4650
  * @public
@@ -4656,14 +4656,14 @@ export interface ListSizeConstraintSetsRequest {
4656
4656
  * For the second and subsequent <code>ListSizeConstraintSets</code> requests, specify the value of <code>NextMarker</code> from the previous response to get information about another batch of <code>SizeConstraintSets</code>.</p>
4657
4657
  * @public
4658
4658
  */
4659
- NextMarker?: string;
4659
+ NextMarker?: string | undefined;
4660
4660
  /**
4661
4661
  * <p>Specifies the number of <code>SizeConstraintSet</code> objects that you want AWS WAF to return for this request. If you have more
4662
4662
  * <code>SizeConstraintSets</code> objects than the number you specify for <code>Limit</code>, the response includes a
4663
4663
  * <code>NextMarker</code> value that you can use to get another batch of <code>SizeConstraintSet</code> objects.</p>
4664
4664
  * @public
4665
4665
  */
4666
- Limit?: number;
4666
+ Limit?: number | undefined;
4667
4667
  }
4668
4668
  /**
4669
4669
  * <note>
@@ -4706,12 +4706,12 @@ export interface ListSizeConstraintSetsResponse {
4706
4706
  * <code>NextMarker</code> value in the next request.</p>
4707
4707
  * @public
4708
4708
  */
4709
- NextMarker?: string;
4709
+ NextMarker?: string | undefined;
4710
4710
  /**
4711
4711
  * <p>An array of <a>SizeConstraintSetSummary</a> objects.</p>
4712
4712
  * @public
4713
4713
  */
4714
- SizeConstraintSets?: SizeConstraintSetSummary[];
4714
+ SizeConstraintSets?: SizeConstraintSetSummary[] | undefined;
4715
4715
  }
4716
4716
  /**
4717
4717
  * <p>A request to list the <a>SqlInjectionMatchSet</a> objects created by the current AWS account.</p>
@@ -4725,14 +4725,14 @@ export interface ListSqlInjectionMatchSetsRequest {
4725
4725
  * value of <code>NextMarker</code> from the previous response to get information about another batch of <code>SqlInjectionMatchSets</code>.</p>
4726
4726
  * @public
4727
4727
  */
4728
- NextMarker?: string;
4728
+ NextMarker?: string | undefined;
4729
4729
  /**
4730
4730
  * <p>Specifies the number of <a>SqlInjectionMatchSet</a> objects that you want AWS WAF to return for this request. If you have more
4731
4731
  * <code>SqlInjectionMatchSet</code> objects than the number you specify for <code>Limit</code>, the response includes a
4732
4732
  * <code>NextMarker</code> value that you can use to get another batch of <code>Rules</code>.</p>
4733
4733
  * @public
4734
4734
  */
4735
- Limit?: number;
4735
+ Limit?: number | undefined;
4736
4736
  }
4737
4737
  /**
4738
4738
  * <note>
@@ -4776,12 +4776,12 @@ export interface ListSqlInjectionMatchSetsResponse {
4776
4776
  * <code>NextMarker</code> value in the next request.</p>
4777
4777
  * @public
4778
4778
  */
4779
- NextMarker?: string;
4779
+ NextMarker?: string | undefined;
4780
4780
  /**
4781
4781
  * <p>An array of <a>SqlInjectionMatchSetSummary</a> objects.</p>
4782
4782
  * @public
4783
4783
  */
4784
- SqlInjectionMatchSets?: SqlInjectionMatchSetSummary[];
4784
+ SqlInjectionMatchSets?: SqlInjectionMatchSetSummary[] | undefined;
4785
4785
  }
4786
4786
  /**
4787
4787
  * @public
@@ -4794,14 +4794,14 @@ export interface ListSubscribedRuleGroupsRequest {
4794
4794
  * from the previous response to get information about another batch of subscribed rule groups.</p>
4795
4795
  * @public
4796
4796
  */
4797
- NextMarker?: string;
4797
+ NextMarker?: string | undefined;
4798
4798
  /**
4799
4799
  * <p>Specifies the number of subscribed rule groups that you want AWS WAF to return for this request. If you have more
4800
4800
  * objects than the number you specify for <code>Limit</code>, the response includes a
4801
4801
  * <code>NextMarker</code> value that you can use to get another batch of objects.</p>
4802
4802
  * @public
4803
4803
  */
4804
- Limit?: number;
4804
+ Limit?: number | undefined;
4805
4805
  }
4806
4806
  /**
4807
4807
  * <note>
@@ -4844,12 +4844,12 @@ export interface ListSubscribedRuleGroupsResponse {
4844
4844
  * <code>NextMarker</code> value in the next request.</p>
4845
4845
  * @public
4846
4846
  */
4847
- NextMarker?: string;
4847
+ NextMarker?: string | undefined;
4848
4848
  /**
4849
4849
  * <p>An array of <a>RuleGroup</a> objects.</p>
4850
4850
  * @public
4851
4851
  */
4852
- RuleGroups?: SubscribedRuleGroupSummary[];
4852
+ RuleGroups?: SubscribedRuleGroupSummary[] | undefined;
4853
4853
  }
4854
4854
  /**
4855
4855
  * @public
@@ -4859,12 +4859,12 @@ export interface ListTagsForResourceRequest {
4859
4859
  * <p></p>
4860
4860
  * @public
4861
4861
  */
4862
- NextMarker?: string;
4862
+ NextMarker?: string | undefined;
4863
4863
  /**
4864
4864
  * <p></p>
4865
4865
  * @public
4866
4866
  */
4867
- Limit?: number;
4867
+ Limit?: number | undefined;
4868
4868
  /**
4869
4869
  * <p></p>
4870
4870
  * @public
@@ -4889,12 +4889,12 @@ export interface TagInfoForResource {
4889
4889
  * <p></p>
4890
4890
  * @public
4891
4891
  */
4892
- ResourceARN?: string;
4892
+ ResourceARN?: string | undefined;
4893
4893
  /**
4894
4894
  * <p></p>
4895
4895
  * @public
4896
4896
  */
4897
- TagList?: Tag[];
4897
+ TagList?: Tag[] | undefined;
4898
4898
  }
4899
4899
  /**
4900
4900
  * @public
@@ -4904,12 +4904,12 @@ export interface ListTagsForResourceResponse {
4904
4904
  * <p></p>
4905
4905
  * @public
4906
4906
  */
4907
- NextMarker?: string;
4907
+ NextMarker?: string | undefined;
4908
4908
  /**
4909
4909
  * <p></p>
4910
4910
  * @public
4911
4911
  */
4912
- TagInfoForResource?: TagInfoForResource;
4912
+ TagInfoForResource?: TagInfoForResource | undefined;
4913
4913
  }
4914
4914
  /**
4915
4915
  * @public
@@ -4922,14 +4922,14 @@ export interface ListWebACLsRequest {
4922
4922
  * from the previous response to get information about another batch of <code>WebACL</code> objects.</p>
4923
4923
  * @public
4924
4924
  */
4925
- NextMarker?: string;
4925
+ NextMarker?: string | undefined;
4926
4926
  /**
4927
4927
  * <p>Specifies the number of <code>WebACL</code> objects that you want AWS WAF to return for this request. If you have more
4928
4928
  * <code>WebACL</code> objects than the number that you specify for <code>Limit</code>, the response includes a
4929
4929
  * <code>NextMarker</code> value that you can use to get another batch of <code>WebACL</code> objects.</p>
4930
4930
  * @public
4931
4931
  */
4932
- Limit?: number;
4932
+ Limit?: number | undefined;
4933
4933
  }
4934
4934
  /**
4935
4935
  * <note>
@@ -4970,12 +4970,12 @@ export interface ListWebACLsResponse {
4970
4970
  * <code>NextMarker</code> value in the next request.</p>
4971
4971
  * @public
4972
4972
  */
4973
- NextMarker?: string;
4973
+ NextMarker?: string | undefined;
4974
4974
  /**
4975
4975
  * <p>An array of <a>WebACLSummary</a> objects.</p>
4976
4976
  * @public
4977
4977
  */
4978
- WebACLs?: WebACLSummary[];
4978
+ WebACLs?: WebACLSummary[] | undefined;
4979
4979
  }
4980
4980
  /**
4981
4981
  * <p>A request to list the <a>XssMatchSet</a> objects created by the current AWS account.</p>
@@ -4989,14 +4989,14 @@ export interface ListXssMatchSetsRequest {
4989
4989
  * value of <code>NextMarker</code> from the previous response to get information about another batch of <code>XssMatchSets</code>.</p>
4990
4990
  * @public
4991
4991
  */
4992
- NextMarker?: string;
4992
+ NextMarker?: string | undefined;
4993
4993
  /**
4994
4994
  * <p>Specifies the number of <a>XssMatchSet</a> objects that you want AWS WAF to return for this request. If you have more
4995
4995
  * <code>XssMatchSet</code> objects than the number you specify for <code>Limit</code>, the response includes a
4996
4996
  * <code>NextMarker</code> value that you can use to get another batch of <code>Rules</code>.</p>
4997
4997
  * @public
4998
4998
  */
4999
- Limit?: number;
4999
+ Limit?: number | undefined;
5000
5000
  }
5001
5001
  /**
5002
5002
  * <note>
@@ -5040,12 +5040,12 @@ export interface ListXssMatchSetsResponse {
5040
5040
  * <code>NextMarker</code> value in the next request.</p>
5041
5041
  * @public
5042
5042
  */
5043
- NextMarker?: string;
5043
+ NextMarker?: string | undefined;
5044
5044
  /**
5045
5045
  * <p>An array of <a>XssMatchSetSummary</a> objects.</p>
5046
5046
  * @public
5047
5047
  */
5048
- XssMatchSets?: XssMatchSetSummary[];
5048
+ XssMatchSets?: XssMatchSetSummary[] | undefined;
5049
5049
  }
5050
5050
  /**
5051
5051
  * @public
@@ -5072,7 +5072,7 @@ export interface PutLoggingConfigurationResponse {
5072
5072
  * <p>The <a>LoggingConfiguration</a> that you submitted in the request.</p>
5073
5073
  * @public
5074
5074
  */
5075
- LoggingConfiguration?: LoggingConfiguration;
5075
+ LoggingConfiguration?: LoggingConfiguration | undefined;
5076
5076
  }
5077
5077
  /**
5078
5078
  * <p>AWS WAF is not able to access the service linked role. This can be caused by a previous <code>PutLoggingConfiguration</code> request, which can lock the service linked role for about 20 seconds. Please try your request again. The service linked role can also be locked by a previous <code>DeleteServiceLinkedRole</code> request, which can lock the role for 15 minutes or more. If you recently made a <code>DeleteServiceLinkedRole</code>, wait at least 15 minutes and try the request again. If you receive this same exception again, you will have to wait additional time until the role is unlocked.</p>
@@ -5275,7 +5275,7 @@ export interface UpdateByteMatchSetResponse {
5275
5275
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5276
5276
  * @public
5277
5277
  */
5278
- ChangeToken?: string;
5278
+ ChangeToken?: string | undefined;
5279
5279
  }
5280
5280
  /**
5281
5281
  * <p>The operation failed because you tried to add an object to or delete an object from another object that doesn't exist. For example:</p>
@@ -5372,7 +5372,7 @@ export interface UpdateGeoMatchSetResponse {
5372
5372
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5373
5373
  * @public
5374
5374
  */
5375
- ChangeToken?: string;
5375
+ ChangeToken?: string | undefined;
5376
5376
  }
5377
5377
  /**
5378
5378
  * <note>
@@ -5442,7 +5442,7 @@ export interface UpdateIPSetResponse {
5442
5442
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5443
5443
  * @public
5444
5444
  */
5445
- ChangeToken?: string;
5445
+ ChangeToken?: string | undefined;
5446
5446
  }
5447
5447
  /**
5448
5448
  * <note>
@@ -5510,7 +5510,7 @@ export interface UpdateRateBasedRuleResponse {
5510
5510
  * status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5511
5511
  * @public
5512
5512
  */
5513
- ChangeToken?: string;
5513
+ ChangeToken?: string | undefined;
5514
5514
  }
5515
5515
  /**
5516
5516
  * <note>
@@ -5570,7 +5570,7 @@ export interface UpdateRegexMatchSetResponse {
5570
5570
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5571
5571
  * @public
5572
5572
  */
5573
- ChangeToken?: string;
5573
+ ChangeToken?: string | undefined;
5574
5574
  }
5575
5575
  /**
5576
5576
  * <note>
@@ -5627,7 +5627,7 @@ export interface UpdateRegexPatternSetResponse {
5627
5627
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5628
5628
  * @public
5629
5629
  */
5630
- ChangeToken?: string;
5630
+ ChangeToken?: string | undefined;
5631
5631
  }
5632
5632
  /**
5633
5633
  * <p>The regular expression (regex) you specified in <code>RegexPatternString</code> is invalid.</p>
@@ -5689,7 +5689,7 @@ export interface UpdateRuleResponse {
5689
5689
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5690
5690
  * @public
5691
5691
  */
5692
- ChangeToken?: string;
5692
+ ChangeToken?: string | undefined;
5693
5693
  }
5694
5694
  /**
5695
5695
  * <note>
@@ -5753,7 +5753,7 @@ export interface UpdateRuleGroupResponse {
5753
5753
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5754
5754
  * @public
5755
5755
  */
5756
- ChangeToken?: string;
5756
+ ChangeToken?: string | undefined;
5757
5757
  }
5758
5758
  /**
5759
5759
  * <note>
@@ -5833,7 +5833,7 @@ export interface UpdateSizeConstraintSetResponse {
5833
5833
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5834
5834
  * @public
5835
5835
  */
5836
- ChangeToken?: string;
5836
+ ChangeToken?: string | undefined;
5837
5837
  }
5838
5838
  /**
5839
5839
  * <note>
@@ -5911,7 +5911,7 @@ export interface UpdateSqlInjectionMatchSetResponse {
5911
5911
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5912
5912
  * @public
5913
5913
  */
5914
- ChangeToken?: string;
5914
+ ChangeToken?: string | undefined;
5915
5915
  }
5916
5916
  /**
5917
5917
  * <note>
@@ -5983,13 +5983,13 @@ export interface UpdateWebACLRequest {
5983
5983
  * </ul>
5984
5984
  * @public
5985
5985
  */
5986
- Updates?: WebACLUpdate[];
5986
+ Updates?: WebACLUpdate[] | undefined;
5987
5987
  /**
5988
5988
  * <p>A default action for the web ACL, either ALLOW or BLOCK. AWS WAF performs the default
5989
5989
  * action if a request doesn't match the criteria in any of the rules in a web ACL.</p>
5990
5990
  * @public
5991
5991
  */
5992
- DefaultAction?: WafAction;
5992
+ DefaultAction?: WafAction | undefined;
5993
5993
  }
5994
5994
  /**
5995
5995
  * @public
@@ -6000,7 +6000,7 @@ export interface UpdateWebACLResponse {
6000
6000
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
6001
6001
  * @public
6002
6002
  */
6003
- ChangeToken?: string;
6003
+ ChangeToken?: string | undefined;
6004
6004
  }
6005
6005
  /**
6006
6006
  * <p>The specified subscription does not exist.</p>
@@ -6094,5 +6094,5 @@ export interface UpdateXssMatchSetResponse {
6094
6094
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
6095
6095
  * @public
6096
6096
  */
6097
- ChangeToken?: string;
6097
+ ChangeToken?: string | undefined;
6098
6098
  }