@aws-sdk/client-waf-regional 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
@@ -379,9 +379,9 @@ export type ParameterExceptionReason = (typeof ParameterExceptionReason)[keyof t
379
379
  export declare class WAFInvalidParameterException extends __BaseException {
380
380
  readonly name: "WAFInvalidParameterException";
381
381
  readonly $fault: "client";
382
- field?: ParameterExceptionField;
383
- parameter?: string;
384
- reason?: ParameterExceptionReason;
382
+ field?: ParameterExceptionField | undefined;
383
+ parameter?: string | undefined;
384
+ reason?: ParameterExceptionReason | undefined;
385
385
  /**
386
386
  * @internal
387
387
  */
@@ -509,7 +509,7 @@ export interface FieldToMatch {
509
509
  * <p>If the value of <code>Type</code> is any other value, omit <code>Data</code>.</p>
510
510
  * @public
511
511
  */
512
- Data?: string;
512
+ Data?: string | undefined;
513
513
  }
514
514
  /**
515
515
  * @public
@@ -807,7 +807,7 @@ export interface ByteMatchSet {
807
807
  * <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>
808
808
  * @public
809
809
  */
810
- Name?: string;
810
+ Name?: string | undefined;
811
811
  /**
812
812
  * <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>
813
813
  * @public
@@ -822,13 +822,13 @@ export interface CreateByteMatchSetResponse {
822
822
  * <p>A <a>ByteMatchSet</a> that contains no <code>ByteMatchTuple</code> objects.</p>
823
823
  * @public
824
824
  */
825
- ByteMatchSet?: ByteMatchSet;
825
+ ByteMatchSet?: ByteMatchSet | undefined;
826
826
  /**
827
827
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateByteMatchSet</code> request. You can also use this value
828
828
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
829
829
  * @public
830
830
  */
831
- ChangeToken?: string;
831
+ ChangeToken?: string | undefined;
832
832
  }
833
833
  /**
834
834
  * <p>The name specified is invalid.</p>
@@ -1202,7 +1202,7 @@ export interface GeoMatchSet {
1202
1202
  * <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>
1203
1203
  * @public
1204
1204
  */
1205
- Name?: string;
1205
+ Name?: string | undefined;
1206
1206
  /**
1207
1207
  * <p>An array of <a>GeoMatchConstraint</a> objects, which contain the country that you want AWS WAF to search for.</p>
1208
1208
  * @public
@@ -1217,13 +1217,13 @@ export interface CreateGeoMatchSetResponse {
1217
1217
  * <p>The <a>GeoMatchSet</a> returned in the <code>CreateGeoMatchSet</code> response. The <code>GeoMatchSet</code> contains no <code>GeoMatchConstraints</code>.</p>
1218
1218
  * @public
1219
1219
  */
1220
- GeoMatchSet?: GeoMatchSet;
1220
+ GeoMatchSet?: GeoMatchSet | undefined;
1221
1221
  /**
1222
1222
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateGeoMatchSet</code> request. You can also use this value
1223
1223
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
1224
1224
  * @public
1225
1225
  */
1226
- ChangeToken?: string;
1226
+ ChangeToken?: string | undefined;
1227
1227
  }
1228
1228
  /**
1229
1229
  * @public
@@ -1329,7 +1329,7 @@ export interface IPSet {
1329
1329
  * <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>
1330
1330
  * @public
1331
1331
  */
1332
- Name?: string;
1332
+ Name?: string | undefined;
1333
1333
  /**
1334
1334
  * <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.
1335
1335
  * 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>
@@ -1345,13 +1345,13 @@ export interface CreateIPSetResponse {
1345
1345
  * <p>The <a>IPSet</a> returned in the <code>CreateIPSet</code> response.</p>
1346
1346
  * @public
1347
1347
  */
1348
- IPSet?: IPSet;
1348
+ IPSet?: IPSet | undefined;
1349
1349
  /**
1350
1350
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateIPSet</code> request. You can also use this value
1351
1351
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
1352
1352
  * @public
1353
1353
  */
1354
- ChangeToken?: string;
1354
+ ChangeToken?: string | undefined;
1355
1355
  }
1356
1356
  /**
1357
1357
  * @public
@@ -1435,7 +1435,7 @@ export interface CreateRateBasedRuleRequest {
1435
1435
  * <p></p>
1436
1436
  * @public
1437
1437
  */
1438
- Tags?: Tag[];
1438
+ Tags?: Tag[] | undefined;
1439
1439
  }
1440
1440
  /**
1441
1441
  * @public
@@ -1535,14 +1535,14 @@ export interface RateBasedRule {
1535
1535
  * name of a <code>RateBasedRule</code> after you create it.</p>
1536
1536
  * @public
1537
1537
  */
1538
- Name?: string;
1538
+ Name?: string | undefined;
1539
1539
  /**
1540
1540
  * <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
1541
1541
  * 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
1542
1542
  * <code>RateBasedRule</code>.</p>
1543
1543
  * @public
1544
1544
  */
1545
- MetricName?: string;
1545
+ MetricName?: string | undefined;
1546
1546
  /**
1547
1547
  * <p>The <code>Predicates</code> object contains one <code>Predicate</code> element for
1548
1548
  * each <a>ByteMatchSet</a>, <a>IPSet</a>, or <a>SqlInjectionMatchSet</a> object that you want to include in a
@@ -1577,14 +1577,14 @@ export interface CreateRateBasedRuleResponse {
1577
1577
  * that is returned in the <code>CreateRateBasedRule</code> response.</p>
1578
1578
  * @public
1579
1579
  */
1580
- Rule?: RateBasedRule;
1580
+ Rule?: RateBasedRule | undefined;
1581
1581
  /**
1582
1582
  * <p>The <code>ChangeToken</code> that you used to submit the
1583
1583
  * <code>CreateRateBasedRule</code> request. You can also use this value to query the
1584
1584
  * status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
1585
1585
  * @public
1586
1586
  */
1587
- ChangeToken?: string;
1587
+ ChangeToken?: string | undefined;
1588
1588
  }
1589
1589
  /**
1590
1590
  * <p></p>
@@ -1800,13 +1800,13 @@ export interface RegexMatchSet {
1800
1800
  * <code>RegexMatchSetId</code> is returned by <a>CreateRegexMatchSet</a> and by <a>ListRegexMatchSets</a>.</p>
1801
1801
  * @public
1802
1802
  */
1803
- RegexMatchSetId?: string;
1803
+ RegexMatchSetId?: string | undefined;
1804
1804
  /**
1805
1805
  * <p>A friendly name or description of the <a>RegexMatchSet</a>. You can't change <code>Name</code> after you create a
1806
1806
  * <code>RegexMatchSet</code>.</p>
1807
1807
  * @public
1808
1808
  */
1809
- Name?: string;
1809
+ Name?: string | undefined;
1810
1810
  /**
1811
1811
  * <p>Contains an array of <a>RegexMatchTuple</a> objects. Each <code>RegexMatchTuple</code>
1812
1812
  * object contains: </p>
@@ -1823,7 +1823,7 @@ export interface RegexMatchSet {
1823
1823
  * </ul>
1824
1824
  * @public
1825
1825
  */
1826
- RegexMatchTuples?: RegexMatchTuple[];
1826
+ RegexMatchTuples?: RegexMatchTuple[] | undefined;
1827
1827
  }
1828
1828
  /**
1829
1829
  * @public
@@ -1833,13 +1833,13 @@ export interface CreateRegexMatchSetResponse {
1833
1833
  * <p>A <a>RegexMatchSet</a> that contains no <code>RegexMatchTuple</code> objects.</p>
1834
1834
  * @public
1835
1835
  */
1836
- RegexMatchSet?: RegexMatchSet;
1836
+ RegexMatchSet?: RegexMatchSet | undefined;
1837
1837
  /**
1838
1838
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateRegexMatchSet</code> request. You can also use this value
1839
1839
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
1840
1840
  * @public
1841
1841
  */
1842
- ChangeToken?: string;
1842
+ ChangeToken?: string | undefined;
1843
1843
  }
1844
1844
  /**
1845
1845
  * @public
@@ -1882,7 +1882,7 @@ export interface RegexPatternSet {
1882
1882
  * <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>
1883
1883
  * @public
1884
1884
  */
1885
- Name?: string;
1885
+ Name?: string | undefined;
1886
1886
  /**
1887
1887
  * <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>
1888
1888
  * @public
@@ -1897,13 +1897,13 @@ export interface CreateRegexPatternSetResponse {
1897
1897
  * <p>A <a>RegexPatternSet</a> that contains no objects.</p>
1898
1898
  * @public
1899
1899
  */
1900
- RegexPatternSet?: RegexPatternSet;
1900
+ RegexPatternSet?: RegexPatternSet | undefined;
1901
1901
  /**
1902
1902
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateRegexPatternSet</code> request. You can also use this value
1903
1903
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
1904
1904
  * @public
1905
1905
  */
1906
- ChangeToken?: string;
1906
+ ChangeToken?: string | undefined;
1907
1907
  }
1908
1908
  /**
1909
1909
  * @public
@@ -1930,7 +1930,7 @@ export interface CreateRuleRequest {
1930
1930
  * <p></p>
1931
1931
  * @public
1932
1932
  */
1933
- Tags?: Tag[];
1933
+ Tags?: Tag[] | undefined;
1934
1934
  }
1935
1935
  /**
1936
1936
  * <note>
@@ -1971,13 +1971,13 @@ export interface Rule {
1971
1971
  * <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>
1972
1972
  * @public
1973
1973
  */
1974
- Name?: string;
1974
+ Name?: string | undefined;
1975
1975
  /**
1976
1976
  * <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
1977
1977
  * 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>
1978
1978
  * @public
1979
1979
  */
1980
- MetricName?: string;
1980
+ MetricName?: string | undefined;
1981
1981
  /**
1982
1982
  * <p>The <code>Predicates</code> object contains one <code>Predicate</code> element for each <a>ByteMatchSet</a>, <a>IPSet</a>, or
1983
1983
  * <a>SqlInjectionMatchSet</a> object that you want to include in a <code>Rule</code>.</p>
@@ -1993,13 +1993,13 @@ export interface CreateRuleResponse {
1993
1993
  * <p>The <a>Rule</a> returned in the <code>CreateRule</code> response.</p>
1994
1994
  * @public
1995
1995
  */
1996
- Rule?: Rule;
1996
+ Rule?: Rule | undefined;
1997
1997
  /**
1998
1998
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateRule</code> request. You can also use this value
1999
1999
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2000
2000
  * @public
2001
2001
  */
2002
- ChangeToken?: string;
2002
+ ChangeToken?: string | undefined;
2003
2003
  }
2004
2004
  /**
2005
2005
  * @public
@@ -2026,7 +2026,7 @@ export interface CreateRuleGroupRequest {
2026
2026
  * <p></p>
2027
2027
  * @public
2028
2028
  */
2029
- Tags?: Tag[];
2029
+ Tags?: Tag[] | undefined;
2030
2030
  }
2031
2031
  /**
2032
2032
  * <note>
@@ -2066,13 +2066,13 @@ export interface RuleGroup {
2066
2066
  * <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>
2067
2067
  * @public
2068
2068
  */
2069
- Name?: string;
2069
+ Name?: string | undefined;
2070
2070
  /**
2071
2071
  * <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
2072
2072
  * 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>
2073
2073
  * @public
2074
2074
  */
2075
- MetricName?: string;
2075
+ MetricName?: string | undefined;
2076
2076
  }
2077
2077
  /**
2078
2078
  * @public
@@ -2082,13 +2082,13 @@ export interface CreateRuleGroupResponse {
2082
2082
  * <p>An empty <a>RuleGroup</a>.</p>
2083
2083
  * @public
2084
2084
  */
2085
- RuleGroup?: RuleGroup;
2085
+ RuleGroup?: RuleGroup | undefined;
2086
2086
  /**
2087
2087
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateRuleGroup</code> request. You can also use this value
2088
2088
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2089
2089
  * @public
2090
2090
  */
2091
- ChangeToken?: string;
2091
+ ChangeToken?: string | undefined;
2092
2092
  }
2093
2093
  /**
2094
2094
  * @public
@@ -2308,7 +2308,7 @@ export interface SizeConstraintSet {
2308
2308
  * <p>The name, if any, of the <code>SizeConstraintSet</code>.</p>
2309
2309
  * @public
2310
2310
  */
2311
- Name?: string;
2311
+ Name?: string | undefined;
2312
2312
  /**
2313
2313
  * <p>Specifies the parts of web requests that you want to inspect the size of.</p>
2314
2314
  * @public
@@ -2323,13 +2323,13 @@ export interface CreateSizeConstraintSetResponse {
2323
2323
  * <p>A <a>SizeConstraintSet</a> that contains no <code>SizeConstraint</code> objects.</p>
2324
2324
  * @public
2325
2325
  */
2326
- SizeConstraintSet?: SizeConstraintSet;
2326
+ SizeConstraintSet?: SizeConstraintSet | undefined;
2327
2327
  /**
2328
2328
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateSizeConstraintSet</code> request. You can also use this value
2329
2329
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2330
2330
  * @public
2331
2331
  */
2332
- ChangeToken?: string;
2332
+ ChangeToken?: string | undefined;
2333
2333
  }
2334
2334
  /**
2335
2335
  * <p>A request to create a <a>SqlInjectionMatchSet</a>.</p>
@@ -2495,7 +2495,7 @@ export interface SqlInjectionMatchSet {
2495
2495
  * <p>The name, if any, of the <code>SqlInjectionMatchSet</code>.</p>
2496
2496
  * @public
2497
2497
  */
2498
- Name?: string;
2498
+ Name?: string | undefined;
2499
2499
  /**
2500
2500
  * <p>Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.</p>
2501
2501
  * @public
@@ -2511,13 +2511,13 @@ export interface CreateSqlInjectionMatchSetResponse {
2511
2511
  * <p>A <a>SqlInjectionMatchSet</a>.</p>
2512
2512
  * @public
2513
2513
  */
2514
- SqlInjectionMatchSet?: SqlInjectionMatchSet;
2514
+ SqlInjectionMatchSet?: SqlInjectionMatchSet | undefined;
2515
2515
  /**
2516
2516
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateSqlInjectionMatchSet</code> request. You can also use this value
2517
2517
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2518
2518
  * @public
2519
2519
  */
2520
- ChangeToken?: string;
2520
+ ChangeToken?: string | undefined;
2521
2521
  }
2522
2522
  /**
2523
2523
  * @public
@@ -2550,7 +2550,7 @@ export interface CreateWebACLRequest {
2550
2550
  * <p></p>
2551
2551
  * @public
2552
2552
  */
2553
- Tags?: Tag[];
2553
+ Tags?: Tag[] | undefined;
2554
2554
  }
2555
2555
  /**
2556
2556
  * <note>
@@ -2583,13 +2583,13 @@ export interface WebACL {
2583
2583
  * <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>
2584
2584
  * @public
2585
2585
  */
2586
- Name?: string;
2586
+ Name?: string | undefined;
2587
2587
  /**
2588
2588
  * <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
2589
2589
  * 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>
2590
2590
  * @public
2591
2591
  */
2592
- MetricName?: string;
2592
+ MetricName?: string | undefined;
2593
2593
  /**
2594
2594
  * <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
2595
2595
  * <a>WafAction</a> object.</p>
@@ -2606,7 +2606,7 @@ export interface WebACL {
2606
2606
  * <p>Tha Amazon Resource Name (ARN) of the web ACL.</p>
2607
2607
  * @public
2608
2608
  */
2609
- WebACLArn?: string;
2609
+ WebACLArn?: string | undefined;
2610
2610
  }
2611
2611
  /**
2612
2612
  * @public
@@ -2616,13 +2616,13 @@ export interface CreateWebACLResponse {
2616
2616
  * <p>The <a>WebACL</a> returned in the <code>CreateWebACL</code> response.</p>
2617
2617
  * @public
2618
2618
  */
2619
- WebACL?: WebACL;
2619
+ WebACL?: WebACL | undefined;
2620
2620
  /**
2621
2621
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateWebACL</code> request. You can also use this value
2622
2622
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2623
2623
  * @public
2624
2624
  */
2625
- ChangeToken?: string;
2625
+ ChangeToken?: string | undefined;
2626
2626
  }
2627
2627
  /**
2628
2628
  * @public
@@ -2723,8 +2723,8 @@ export type MigrationErrorType = (typeof MigrationErrorType)[keyof typeof Migrat
2723
2723
  export declare class WAFEntityMigrationException extends __BaseException {
2724
2724
  readonly name: "WAFEntityMigrationException";
2725
2725
  readonly $fault: "client";
2726
- MigrationErrorType?: MigrationErrorType;
2727
- MigrationErrorReason?: string;
2726
+ MigrationErrorType?: MigrationErrorType | undefined;
2727
+ MigrationErrorReason?: string | undefined;
2728
2728
  /**
2729
2729
  * @internal
2730
2730
  */
@@ -2926,7 +2926,7 @@ export interface XssMatchSet {
2926
2926
  * <p>The name, if any, of the <code>XssMatchSet</code>.</p>
2927
2927
  * @public
2928
2928
  */
2929
- Name?: string;
2929
+ Name?: string | undefined;
2930
2930
  /**
2931
2931
  * <p>Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.</p>
2932
2932
  * @public
@@ -2942,13 +2942,13 @@ export interface CreateXssMatchSetResponse {
2942
2942
  * <p>An <a>XssMatchSet</a>.</p>
2943
2943
  * @public
2944
2944
  */
2945
- XssMatchSet?: XssMatchSet;
2945
+ XssMatchSet?: XssMatchSet | undefined;
2946
2946
  /**
2947
2947
  * <p>The <code>ChangeToken</code> that you used to submit the <code>CreateXssMatchSet</code> request. You can also use this value
2948
2948
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2949
2949
  * @public
2950
2950
  */
2951
- ChangeToken?: string;
2951
+ ChangeToken?: string | undefined;
2952
2952
  }
2953
2953
  /**
2954
2954
  * @public
@@ -2975,7 +2975,7 @@ export interface DeleteByteMatchSetResponse {
2975
2975
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
2976
2976
  * @public
2977
2977
  */
2978
- ChangeToken?: string;
2978
+ ChangeToken?: string | undefined;
2979
2979
  }
2980
2980
  /**
2981
2981
  * <p>The operation failed because you tried to delete an object that isn't empty. For example:</p>
@@ -3049,7 +3049,7 @@ export interface DeleteGeoMatchSetResponse {
3049
3049
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3050
3050
  * @public
3051
3051
  */
3052
- ChangeToken?: string;
3052
+ ChangeToken?: string | undefined;
3053
3053
  }
3054
3054
  /**
3055
3055
  * @public
@@ -3076,7 +3076,7 @@ export interface DeleteIPSetResponse {
3076
3076
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3077
3077
  * @public
3078
3078
  */
3079
- ChangeToken?: string;
3079
+ ChangeToken?: string | undefined;
3080
3080
  }
3081
3081
  /**
3082
3082
  * @public
@@ -3136,7 +3136,7 @@ export interface DeleteRateBasedRuleResponse {
3136
3136
  * status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3137
3137
  * @public
3138
3138
  */
3139
- ChangeToken?: string;
3139
+ ChangeToken?: string | undefined;
3140
3140
  }
3141
3141
  /**
3142
3142
  * @public
@@ -3163,7 +3163,7 @@ export interface DeleteRegexMatchSetResponse {
3163
3163
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3164
3164
  * @public
3165
3165
  */
3166
- ChangeToken?: string;
3166
+ ChangeToken?: string | undefined;
3167
3167
  }
3168
3168
  /**
3169
3169
  * @public
@@ -3190,7 +3190,7 @@ export interface DeleteRegexPatternSetResponse {
3190
3190
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3191
3191
  * @public
3192
3192
  */
3193
- ChangeToken?: string;
3193
+ ChangeToken?: string | undefined;
3194
3194
  }
3195
3195
  /**
3196
3196
  * @public
@@ -3217,7 +3217,7 @@ export interface DeleteRuleResponse {
3217
3217
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3218
3218
  * @public
3219
3219
  */
3220
- ChangeToken?: string;
3220
+ ChangeToken?: string | undefined;
3221
3221
  }
3222
3222
  /**
3223
3223
  * @public
@@ -3244,7 +3244,7 @@ export interface DeleteRuleGroupResponse {
3244
3244
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3245
3245
  * @public
3246
3246
  */
3247
- ChangeToken?: string;
3247
+ ChangeToken?: string | undefined;
3248
3248
  }
3249
3249
  /**
3250
3250
  * @public
@@ -3271,7 +3271,7 @@ export interface DeleteSizeConstraintSetResponse {
3271
3271
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3272
3272
  * @public
3273
3273
  */
3274
- ChangeToken?: string;
3274
+ ChangeToken?: string | undefined;
3275
3275
  }
3276
3276
  /**
3277
3277
  * <p>A request to delete a <a>SqlInjectionMatchSet</a> from AWS WAF.</p>
@@ -3300,7 +3300,7 @@ export interface DeleteSqlInjectionMatchSetResponse {
3300
3300
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3301
3301
  * @public
3302
3302
  */
3303
- ChangeToken?: string;
3303
+ ChangeToken?: string | undefined;
3304
3304
  }
3305
3305
  /**
3306
3306
  * @public
@@ -3327,7 +3327,7 @@ export interface DeleteWebACLResponse {
3327
3327
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3328
3328
  * @public
3329
3329
  */
3330
- ChangeToken?: string;
3330
+ ChangeToken?: string | undefined;
3331
3331
  }
3332
3332
  /**
3333
3333
  * <p>A request to delete an <a>XssMatchSet</a> from AWS WAF.</p>
@@ -3356,7 +3356,7 @@ export interface DeleteXssMatchSetResponse {
3356
3356
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
3357
3357
  * @public
3358
3358
  */
3359
- ChangeToken?: string;
3359
+ ChangeToken?: string | undefined;
3360
3360
  }
3361
3361
  /**
3362
3362
  * @public
@@ -3425,7 +3425,7 @@ export interface GetByteMatchSetResponse {
3425
3425
  * </ul>
3426
3426
  * @public
3427
3427
  */
3428
- ByteMatchSet?: ByteMatchSet;
3428
+ ByteMatchSet?: ByteMatchSet | undefined;
3429
3429
  }
3430
3430
  /**
3431
3431
  * @public
@@ -3441,7 +3441,7 @@ export interface GetChangeTokenResponse {
3441
3441
  * to get the current status of the request. </p>
3442
3442
  * @public
3443
3443
  */
3444
- ChangeToken?: string;
3444
+ ChangeToken?: string | undefined;
3445
3445
  }
3446
3446
  /**
3447
3447
  * @public
@@ -3474,7 +3474,7 @@ export interface GetChangeTokenStatusResponse {
3474
3474
  * <p>The status of the change token.</p>
3475
3475
  * @public
3476
3476
  */
3477
- ChangeTokenStatus?: ChangeTokenStatus;
3477
+ ChangeTokenStatus?: ChangeTokenStatus | undefined;
3478
3478
  }
3479
3479
  /**
3480
3480
  * @public
@@ -3495,7 +3495,7 @@ export interface GetGeoMatchSetResponse {
3495
3495
  * <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>
3496
3496
  * @public
3497
3497
  */
3498
- GeoMatchSet?: GeoMatchSet;
3498
+ GeoMatchSet?: GeoMatchSet | undefined;
3499
3499
  }
3500
3500
  /**
3501
3501
  * @public
@@ -3530,7 +3530,7 @@ export interface GetIPSetResponse {
3530
3530
  * </ul>
3531
3531
  * @public
3532
3532
  */
3533
- IPSet?: IPSet;
3533
+ IPSet?: IPSet | undefined;
3534
3534
  }
3535
3535
  /**
3536
3536
  * @public
@@ -3574,7 +3574,7 @@ export interface LoggingConfiguration {
3574
3574
  * <code>xxx</code>. </p>
3575
3575
  * @public
3576
3576
  */
3577
- RedactedFields?: FieldToMatch[];
3577
+ RedactedFields?: FieldToMatch[] | undefined;
3578
3578
  }
3579
3579
  /**
3580
3580
  * @public
@@ -3584,7 +3584,7 @@ export interface GetLoggingConfigurationResponse {
3584
3584
  * <p>The <a>LoggingConfiguration</a> for the specified web ACL.</p>
3585
3585
  * @public
3586
3586
  */
3587
- LoggingConfiguration?: LoggingConfiguration;
3587
+ LoggingConfiguration?: LoggingConfiguration | undefined;
3588
3588
  }
3589
3589
  /**
3590
3590
  * @public
@@ -3604,7 +3604,7 @@ export interface GetPermissionPolicyResponse {
3604
3604
  * <p>The IAM policy attached to the specified RuleGroup.</p>
3605
3605
  * @public
3606
3606
  */
3607
- Policy?: string;
3607
+ Policy?: string | undefined;
3608
3608
  }
3609
3609
  /**
3610
3610
  * @public
@@ -3626,7 +3626,7 @@ export interface GetRateBasedRuleResponse {
3626
3626
  * <code>GetRateBasedRule</code> request.</p>
3627
3627
  * @public
3628
3628
  */
3629
- Rule?: RateBasedRule;
3629
+ Rule?: RateBasedRule | undefined;
3630
3630
  }
3631
3631
  /**
3632
3632
  * @public
@@ -3642,7 +3642,7 @@ export interface GetRateBasedRuleManagedKeysRequest {
3642
3642
  * <p>A null value and not currently used. Do not include this in your request.</p>
3643
3643
  * @public
3644
3644
  */
3645
- NextMarker?: string;
3645
+ NextMarker?: string | undefined;
3646
3646
  }
3647
3647
  /**
3648
3648
  * @public
@@ -3652,12 +3652,12 @@ export interface GetRateBasedRuleManagedKeysResponse {
3652
3652
  * <p>An array of IP addresses that currently are blocked by the specified <a>RateBasedRule</a>. </p>
3653
3653
  * @public
3654
3654
  */
3655
- ManagedKeys?: string[];
3655
+ ManagedKeys?: string[] | undefined;
3656
3656
  /**
3657
3657
  * <p>A null value and not currently used.</p>
3658
3658
  * @public
3659
3659
  */
3660
- NextMarker?: string;
3660
+ NextMarker?: string | undefined;
3661
3661
  }
3662
3662
  /**
3663
3663
  * @public
@@ -3678,7 +3678,7 @@ export interface GetRegexMatchSetResponse {
3678
3678
  * <p>Information about the <a>RegexMatchSet</a> that you specified in the <code>GetRegexMatchSet</code> request. For more information, see <a>RegexMatchTuple</a>.</p>
3679
3679
  * @public
3680
3680
  */
3681
- RegexMatchSet?: RegexMatchSet;
3681
+ RegexMatchSet?: RegexMatchSet | undefined;
3682
3682
  }
3683
3683
  /**
3684
3684
  * @public
@@ -3699,7 +3699,7 @@ export interface GetRegexPatternSetResponse {
3699
3699
  * <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>
3700
3700
  * @public
3701
3701
  */
3702
- RegexPatternSet?: RegexPatternSet;
3702
+ RegexPatternSet?: RegexPatternSet | undefined;
3703
3703
  }
3704
3704
  /**
3705
3705
  * @public
@@ -3735,7 +3735,7 @@ export interface GetRuleResponse {
3735
3735
  * </ul>
3736
3736
  * @public
3737
3737
  */
3738
- Rule?: Rule;
3738
+ Rule?: Rule | undefined;
3739
3739
  }
3740
3740
  /**
3741
3741
  * @public
@@ -3756,7 +3756,7 @@ export interface GetRuleGroupResponse {
3756
3756
  * <p>Information about the <a>RuleGroup</a> that you specified in the <code>GetRuleGroup</code> request. </p>
3757
3757
  * @public
3758
3758
  */
3759
- RuleGroup?: RuleGroup;
3759
+ RuleGroup?: RuleGroup | undefined;
3760
3760
  }
3761
3761
  /**
3762
3762
  * <note>
@@ -3855,12 +3855,12 @@ export interface HTTPHeader {
3855
3855
  * <p>The name of one of the headers in the sampled web request.</p>
3856
3856
  * @public
3857
3857
  */
3858
- Name?: string;
3858
+ Name?: string | undefined;
3859
3859
  /**
3860
3860
  * <p>The value of one of the headers in the sampled web request.</p>
3861
3861
  * @public
3862
3862
  */
3863
- Value?: string;
3863
+ Value?: string | undefined;
3864
3864
  }
3865
3865
  /**
3866
3866
  * <note>
@@ -3892,34 +3892,34 @@ export interface HTTPRequest {
3892
3892
  * </ul>
3893
3893
  * @public
3894
3894
  */
3895
- ClientIP?: string;
3895
+ ClientIP?: string | undefined;
3896
3896
  /**
3897
3897
  * <p>The two-letter country code for the country that the request originated from. For a current list of country codes,
3898
3898
  * see the Wikipedia entry <a href="https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2">ISO 3166-1 alpha-2</a>.</p>
3899
3899
  * @public
3900
3900
  */
3901
- Country?: string;
3901
+ Country?: string | undefined;
3902
3902
  /**
3903
3903
  * <p>The part of a web request that identifies the resource, for example, <code>/images/daily-ad.jpg</code>.</p>
3904
3904
  * @public
3905
3905
  */
3906
- URI?: string;
3906
+ URI?: string | undefined;
3907
3907
  /**
3908
3908
  * <p>The HTTP method specified in the sampled web request. CloudFront supports the following methods: <code>DELETE</code>,
3909
3909
  * <code>GET</code>, <code>HEAD</code>, <code>OPTIONS</code>, <code>PATCH</code>, <code>POST</code>, and <code>PUT</code>. </p>
3910
3910
  * @public
3911
3911
  */
3912
- Method?: string;
3912
+ Method?: string | undefined;
3913
3913
  /**
3914
3914
  * <p>The HTTP version specified in the sampled web request, for example, <code>HTTP/1.1</code>.</p>
3915
3915
  * @public
3916
3916
  */
3917
- HTTPVersion?: string;
3917
+ HTTPVersion?: string | undefined;
3918
3918
  /**
3919
3919
  * <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>
3920
3920
  * @public
3921
3921
  */
3922
- Headers?: HTTPHeader[];
3922
+ Headers?: HTTPHeader[] | undefined;
3923
3923
  }
3924
3924
  /**
3925
3925
  * <note>
@@ -3952,17 +3952,17 @@ export interface SampledHTTPRequest {
3952
3952
  * <p>The time at which AWS WAF received the request from your AWS resource, in Unix time format (in seconds).</p>
3953
3953
  * @public
3954
3954
  */
3955
- Timestamp?: Date;
3955
+ Timestamp?: Date | undefined;
3956
3956
  /**
3957
3957
  * <p>The action for the <code>Rule</code> that the request matched: <code>ALLOW</code>, <code>BLOCK</code>, or <code>COUNT</code>.</p>
3958
3958
  * @public
3959
3959
  */
3960
- Action?: string;
3960
+ Action?: string | undefined;
3961
3961
  /**
3962
3962
  * <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>
3963
3963
  * @public
3964
3964
  */
3965
- RuleWithinRuleGroup?: string;
3965
+ RuleWithinRuleGroup?: string | undefined;
3966
3966
  }
3967
3967
  /**
3968
3968
  * @public
@@ -3972,21 +3972,21 @@ export interface GetSampledRequestsResponse {
3972
3972
  * <p>A complex type that contains detailed information about each of the requests in the sample.</p>
3973
3973
  * @public
3974
3974
  */
3975
- SampledRequests?: SampledHTTPRequest[];
3975
+ SampledRequests?: SampledHTTPRequest[] | undefined;
3976
3976
  /**
3977
3977
  * <p>The total number of requests from which <code>GetSampledRequests</code> got a sample of <code>MaxItems</code> requests.
3978
3978
  * If <code>PopulationSize</code> is less than <code>MaxItems</code>, the sample includes every request that your AWS resource
3979
3979
  * received during the specified time range.</p>
3980
3980
  * @public
3981
3981
  */
3982
- PopulationSize?: number;
3982
+ PopulationSize?: number | undefined;
3983
3983
  /**
3984
3984
  * <p>Usually, <code>TimeWindow</code> is the time range that you specified in the <code>GetSampledRequests</code> request. However,
3985
3985
  * if your AWS resource received more than 5,000 requests during the time range that you specified in the request,
3986
3986
  * <code>GetSampledRequests</code> returns the time range for the first 5,000 requests. Times are in Coordinated Universal Time (UTC) format.</p>
3987
3987
  * @public
3988
3988
  */
3989
- TimeWindow?: TimeWindow;
3989
+ TimeWindow?: TimeWindow | undefined;
3990
3990
  }
3991
3991
  /**
3992
3992
  * @public
@@ -4027,7 +4027,7 @@ export interface GetSizeConstraintSetResponse {
4027
4027
  * </ul>
4028
4028
  * @public
4029
4029
  */
4030
- SizeConstraintSet?: SizeConstraintSet;
4030
+ SizeConstraintSet?: SizeConstraintSet | undefined;
4031
4031
  }
4032
4032
  /**
4033
4033
  * <p>A request to get a <a>SqlInjectionMatchSet</a>.</p>
@@ -4069,7 +4069,7 @@ export interface GetSqlInjectionMatchSetResponse {
4069
4069
  * </ul>
4070
4070
  * @public
4071
4071
  */
4072
- SqlInjectionMatchSet?: SqlInjectionMatchSet;
4072
+ SqlInjectionMatchSet?: SqlInjectionMatchSet | undefined;
4073
4073
  }
4074
4074
  /**
4075
4075
  * @public
@@ -4115,7 +4115,7 @@ export interface GetWebACLResponse {
4115
4115
  * </ul>
4116
4116
  * @public
4117
4117
  */
4118
- WebACL?: WebACL;
4118
+ WebACL?: WebACL | undefined;
4119
4119
  }
4120
4120
  /**
4121
4121
  * @public
@@ -4176,7 +4176,7 @@ export interface GetWebACLForResourceResponse {
4176
4176
  * <p>Information about the web ACL that you specified in the <code>GetWebACLForResource</code> request. If there is no associated resource, a null WebACLSummary is returned.</p>
4177
4177
  * @public
4178
4178
  */
4179
- WebACLSummary?: WebACLSummary;
4179
+ WebACLSummary?: WebACLSummary | undefined;
4180
4180
  }
4181
4181
  /**
4182
4182
  * <p>A request to get an <a>XssMatchSet</a>.</p>
@@ -4218,7 +4218,7 @@ export interface GetXssMatchSetResponse {
4218
4218
  * </ul>
4219
4219
  * @public
4220
4220
  */
4221
- XssMatchSet?: XssMatchSet;
4221
+ XssMatchSet?: XssMatchSet | undefined;
4222
4222
  }
4223
4223
  /**
4224
4224
  * @public
@@ -4228,7 +4228,7 @@ export interface ListActivatedRulesInRuleGroupRequest {
4228
4228
  * <p>The <code>RuleGroupId</code> of the <a>RuleGroup</a> for which you want to get a list of <a>ActivatedRule</a> objects.</p>
4229
4229
  * @public
4230
4230
  */
4231
- RuleGroupId?: string;
4231
+ RuleGroupId?: string | undefined;
4232
4232
  /**
4233
4233
  * <p>If you specify a value for <code>Limit</code> and you have more <code>ActivatedRules</code> than the value of <code>Limit</code>,
4234
4234
  * AWS WAF returns a <code>NextMarker</code> value in the response that allows you to list another group of <code>ActivatedRules</code>.
@@ -4236,13 +4236,13 @@ export interface ListActivatedRulesInRuleGroupRequest {
4236
4236
  * from the previous response to get information about another batch of <code>ActivatedRules</code>.</p>
4237
4237
  * @public
4238
4238
  */
4239
- NextMarker?: string;
4239
+ NextMarker?: string | undefined;
4240
4240
  /**
4241
4241
  * <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
4242
4242
  * <code>NextMarker</code> value that you can use to get another batch of <code>ActivatedRules</code>.</p>
4243
4243
  * @public
4244
4244
  */
4245
- Limit?: number;
4245
+ Limit?: number | undefined;
4246
4246
  }
4247
4247
  /**
4248
4248
  * @public
@@ -4252,12 +4252,12 @@ export interface ListActivatedRulesInRuleGroupResponse {
4252
4252
  * <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>
4253
4253
  * @public
4254
4254
  */
4255
- NextMarker?: string;
4255
+ NextMarker?: string | undefined;
4256
4256
  /**
4257
4257
  * <p>An array of <code>ActivatedRules</code> objects.</p>
4258
4258
  * @public
4259
4259
  */
4260
- ActivatedRules?: ActivatedRule[];
4260
+ ActivatedRules?: ActivatedRule[] | undefined;
4261
4261
  }
4262
4262
  /**
4263
4263
  * @public
@@ -4270,14 +4270,14 @@ export interface ListByteMatchSetsRequest {
4270
4270
  * from the previous response to get information about another batch of <code>ByteMatchSets</code>.</p>
4271
4271
  * @public
4272
4272
  */
4273
- NextMarker?: string;
4273
+ NextMarker?: string | undefined;
4274
4274
  /**
4275
4275
  * <p>Specifies the number of <code>ByteMatchSet</code> objects that you want AWS WAF to return for this request. If you have more
4276
4276
  * <code>ByteMatchSets</code> objects than the number you specify for <code>Limit</code>, the response includes a
4277
4277
  * <code>NextMarker</code> value that you can use to get another batch of <code>ByteMatchSet</code> objects.</p>
4278
4278
  * @public
4279
4279
  */
4280
- Limit?: number;
4280
+ Limit?: number | undefined;
4281
4281
  }
4282
4282
  /**
4283
4283
  * <note>
@@ -4318,12 +4318,12 @@ export interface ListByteMatchSetsResponse {
4318
4318
  * <code>NextMarker</code> value in the next request.</p>
4319
4319
  * @public
4320
4320
  */
4321
- NextMarker?: string;
4321
+ NextMarker?: string | undefined;
4322
4322
  /**
4323
4323
  * <p>An array of <a>ByteMatchSetSummary</a> objects.</p>
4324
4324
  * @public
4325
4325
  */
4326
- ByteMatchSets?: ByteMatchSetSummary[];
4326
+ ByteMatchSets?: ByteMatchSetSummary[] | undefined;
4327
4327
  }
4328
4328
  /**
4329
4329
  * @public
@@ -4336,14 +4336,14 @@ export interface ListGeoMatchSetsRequest {
4336
4336
  * from the previous response to get information about another batch of <code>GeoMatchSet</code> objects.</p>
4337
4337
  * @public
4338
4338
  */
4339
- NextMarker?: string;
4339
+ NextMarker?: string | undefined;
4340
4340
  /**
4341
4341
  * <p>Specifies the number of <code>GeoMatchSet</code> objects that you want AWS WAF to return for this request. If you have more
4342
4342
  * <code>GeoMatchSet</code> objects than the number you specify for <code>Limit</code>, the response includes a
4343
4343
  * <code>NextMarker</code> value that you can use to get another batch of <code>GeoMatchSet</code> objects.</p>
4344
4344
  * @public
4345
4345
  */
4346
- Limit?: number;
4346
+ Limit?: number | undefined;
4347
4347
  }
4348
4348
  /**
4349
4349
  * <note>
@@ -4380,12 +4380,12 @@ export interface ListGeoMatchSetsResponse {
4380
4380
  * <code>NextMarker</code> value in the next request.</p>
4381
4381
  * @public
4382
4382
  */
4383
- NextMarker?: string;
4383
+ NextMarker?: string | undefined;
4384
4384
  /**
4385
4385
  * <p>An array of <a>GeoMatchSetSummary</a> objects.</p>
4386
4386
  * @public
4387
4387
  */
4388
- GeoMatchSets?: GeoMatchSetSummary[];
4388
+ GeoMatchSets?: GeoMatchSetSummary[] | undefined;
4389
4389
  }
4390
4390
  /**
4391
4391
  * @public
@@ -4398,14 +4398,14 @@ export interface ListIPSetsRequest {
4398
4398
  * previous response to get information about another batch of <code>IPSets</code>.</p>
4399
4399
  * @public
4400
4400
  */
4401
- NextMarker?: string;
4401
+ NextMarker?: string | undefined;
4402
4402
  /**
4403
4403
  * <p>Specifies the number of <code>IPSet</code> objects that you want AWS WAF to return for this request. If you have more
4404
4404
  * <code>IPSet</code> objects than the number you specify for <code>Limit</code>, the response includes a
4405
4405
  * <code>NextMarker</code> value that you can use to get another batch of <code>IPSet</code> objects.</p>
4406
4406
  * @public
4407
4407
  */
4408
- Limit?: number;
4408
+ Limit?: number | undefined;
4409
4409
  }
4410
4410
  /**
4411
4411
  * <note>
@@ -4442,12 +4442,12 @@ export interface ListIPSetsResponse {
4442
4442
  * <code>NextMarker</code> value.</p>
4443
4443
  * @public
4444
4444
  */
4445
- NextMarker?: string;
4445
+ NextMarker?: string | undefined;
4446
4446
  /**
4447
4447
  * <p>An array of <a>IPSetSummary</a> objects.</p>
4448
4448
  * @public
4449
4449
  */
4450
- IPSets?: IPSetSummary[];
4450
+ IPSets?: IPSetSummary[] | undefined;
4451
4451
  }
4452
4452
  /**
4453
4453
  * @public
@@ -4460,12 +4460,12 @@ export interface ListLoggingConfigurationsRequest {
4460
4460
  * from the previous response to get information about another batch of <code>ListLoggingConfigurations</code>.</p>
4461
4461
  * @public
4462
4462
  */
4463
- NextMarker?: string;
4463
+ NextMarker?: string | undefined;
4464
4464
  /**
4465
4465
  * <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>
4466
4466
  * @public
4467
4467
  */
4468
- Limit?: number;
4468
+ Limit?: number | undefined;
4469
4469
  }
4470
4470
  /**
4471
4471
  * @public
@@ -4475,12 +4475,12 @@ export interface ListLoggingConfigurationsResponse {
4475
4475
  * <p>An array of <a>LoggingConfiguration</a> objects.</p>
4476
4476
  * @public
4477
4477
  */
4478
- LoggingConfigurations?: LoggingConfiguration[];
4478
+ LoggingConfigurations?: LoggingConfiguration[] | undefined;
4479
4479
  /**
4480
4480
  * <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>
4481
4481
  * @public
4482
4482
  */
4483
- NextMarker?: string;
4483
+ NextMarker?: string | undefined;
4484
4484
  }
4485
4485
  /**
4486
4486
  * @public
@@ -4495,7 +4495,7 @@ export interface ListRateBasedRulesRequest {
4495
4495
  * batch of <code>Rules</code>.</p>
4496
4496
  * @public
4497
4497
  */
4498
- NextMarker?: string;
4498
+ NextMarker?: string | undefined;
4499
4499
  /**
4500
4500
  * <p>Specifies the number of <code>Rules</code> that you want AWS WAF to return for this
4501
4501
  * request. If you have more <code>Rules</code> than the number that you specify for
@@ -4503,7 +4503,7 @@ export interface ListRateBasedRulesRequest {
4503
4503
  * use to get another batch of <code>Rules</code>.</p>
4504
4504
  * @public
4505
4505
  */
4506
- Limit?: number;
4506
+ Limit?: number | undefined;
4507
4507
  }
4508
4508
  /**
4509
4509
  * <note>
@@ -4545,12 +4545,12 @@ export interface ListRateBasedRulesResponse {
4545
4545
  * <code>NextMarker</code> value in the next request.</p>
4546
4546
  * @public
4547
4547
  */
4548
- NextMarker?: string;
4548
+ NextMarker?: string | undefined;
4549
4549
  /**
4550
4550
  * <p>An array of <a>RuleSummary</a> objects.</p>
4551
4551
  * @public
4552
4552
  */
4553
- Rules?: RuleSummary[];
4553
+ Rules?: RuleSummary[] | undefined;
4554
4554
  }
4555
4555
  /**
4556
4556
  * @public
@@ -4563,14 +4563,14 @@ export interface ListRegexMatchSetsRequest {
4563
4563
  * from the previous response to get information about another batch of <code>RegexMatchSet</code> objects.</p>
4564
4564
  * @public
4565
4565
  */
4566
- NextMarker?: string;
4566
+ NextMarker?: string | undefined;
4567
4567
  /**
4568
4568
  * <p>Specifies the number of <code>RegexMatchSet</code> objects that you want AWS WAF to return for this request. If you have more
4569
4569
  * <code>RegexMatchSet</code> objects than the number you specify for <code>Limit</code>, the response includes a
4570
4570
  * <code>NextMarker</code> value that you can use to get another batch of <code>RegexMatchSet</code> objects.</p>
4571
4571
  * @public
4572
4572
  */
4573
- Limit?: number;
4573
+ Limit?: number | undefined;
4574
4574
  }
4575
4575
  /**
4576
4576
  * <note>
@@ -4611,12 +4611,12 @@ export interface ListRegexMatchSetsResponse {
4611
4611
  * <code>NextMarker</code> value in the next request.</p>
4612
4612
  * @public
4613
4613
  */
4614
- NextMarker?: string;
4614
+ NextMarker?: string | undefined;
4615
4615
  /**
4616
4616
  * <p>An array of <a>RegexMatchSetSummary</a> objects.</p>
4617
4617
  * @public
4618
4618
  */
4619
- RegexMatchSets?: RegexMatchSetSummary[];
4619
+ RegexMatchSets?: RegexMatchSetSummary[] | undefined;
4620
4620
  }
4621
4621
  /**
4622
4622
  * @public
@@ -4629,14 +4629,14 @@ export interface ListRegexPatternSetsRequest {
4629
4629
  * from the previous response to get information about another batch of <code>RegexPatternSet</code> objects.</p>
4630
4630
  * @public
4631
4631
  */
4632
- NextMarker?: string;
4632
+ NextMarker?: string | undefined;
4633
4633
  /**
4634
4634
  * <p>Specifies the number of <code>RegexPatternSet</code> objects that you want AWS WAF to return for this request. If you have more
4635
4635
  * <code>RegexPatternSet</code> objects than the number you specify for <code>Limit</code>, the response includes a
4636
4636
  * <code>NextMarker</code> value that you can use to get another batch of <code>RegexPatternSet</code> objects.</p>
4637
4637
  * @public
4638
4638
  */
4639
- Limit?: number;
4639
+ Limit?: number | undefined;
4640
4640
  }
4641
4641
  /**
4642
4642
  * <note>
@@ -4677,12 +4677,12 @@ export interface ListRegexPatternSetsResponse {
4677
4677
  * <code>NextMarker</code> value in the next request.</p>
4678
4678
  * @public
4679
4679
  */
4680
- NextMarker?: string;
4680
+ NextMarker?: string | undefined;
4681
4681
  /**
4682
4682
  * <p>An array of <a>RegexPatternSetSummary</a> objects.</p>
4683
4683
  * @public
4684
4684
  */
4685
- RegexPatternSets?: RegexPatternSetSummary[];
4685
+ RegexPatternSets?: RegexPatternSetSummary[] | undefined;
4686
4686
  }
4687
4687
  /**
4688
4688
  * @public
@@ -4709,7 +4709,7 @@ export interface ListResourcesForWebACLRequest {
4709
4709
  * <p>The type of resource to list, either an application load balancer or Amazon API Gateway.</p>
4710
4710
  * @public
4711
4711
  */
4712
- ResourceType?: ResourceType;
4712
+ ResourceType?: ResourceType | undefined;
4713
4713
  }
4714
4714
  /**
4715
4715
  * @public
@@ -4719,7 +4719,7 @@ export interface ListResourcesForWebACLResponse {
4719
4719
  * <p>An array of ARNs (Amazon Resource Names) of the resources associated with the specified web ACL. An array with zero elements is returned if there are no resources associated with the web ACL.</p>
4720
4720
  * @public
4721
4721
  */
4722
- ResourceArns?: string[];
4722
+ ResourceArns?: string[] | undefined;
4723
4723
  }
4724
4724
  /**
4725
4725
  * @public
@@ -4732,12 +4732,12 @@ export interface ListRuleGroupsRequest {
4732
4732
  * from the previous response to get information about another batch of <code>RuleGroups</code>.</p>
4733
4733
  * @public
4734
4734
  */
4735
- NextMarker?: string;
4735
+ NextMarker?: string | undefined;
4736
4736
  /**
4737
4737
  * <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>
4738
4738
  * @public
4739
4739
  */
4740
- Limit?: number;
4740
+ Limit?: number | undefined;
4741
4741
  }
4742
4742
  /**
4743
4743
  * <note>
@@ -4775,12 +4775,12 @@ export interface ListRuleGroupsResponse {
4775
4775
  * <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>
4776
4776
  * @public
4777
4777
  */
4778
- NextMarker?: string;
4778
+ NextMarker?: string | undefined;
4779
4779
  /**
4780
4780
  * <p>An array of <a>RuleGroup</a> objects.</p>
4781
4781
  * @public
4782
4782
  */
4783
- RuleGroups?: RuleGroupSummary[];
4783
+ RuleGroups?: RuleGroupSummary[] | undefined;
4784
4784
  }
4785
4785
  /**
4786
4786
  * @public
@@ -4793,13 +4793,13 @@ export interface ListRulesRequest {
4793
4793
  * from the previous response to get information about another batch of <code>Rules</code>.</p>
4794
4794
  * @public
4795
4795
  */
4796
- NextMarker?: string;
4796
+ NextMarker?: string | undefined;
4797
4797
  /**
4798
4798
  * <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
4799
4799
  * <code>NextMarker</code> value that you can use to get another batch of <code>Rules</code>.</p>
4800
4800
  * @public
4801
4801
  */
4802
- Limit?: number;
4802
+ Limit?: number | undefined;
4803
4803
  }
4804
4804
  /**
4805
4805
  * @public
@@ -4811,12 +4811,12 @@ export interface ListRulesResponse {
4811
4811
  * <code>NextMarker</code> value in the next request.</p>
4812
4812
  * @public
4813
4813
  */
4814
- NextMarker?: string;
4814
+ NextMarker?: string | undefined;
4815
4815
  /**
4816
4816
  * <p>An array of <a>RuleSummary</a> objects.</p>
4817
4817
  * @public
4818
4818
  */
4819
- Rules?: RuleSummary[];
4819
+ Rules?: RuleSummary[] | undefined;
4820
4820
  }
4821
4821
  /**
4822
4822
  * @public
@@ -4828,14 +4828,14 @@ export interface ListSizeConstraintSetsRequest {
4828
4828
  * 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>
4829
4829
  * @public
4830
4830
  */
4831
- NextMarker?: string;
4831
+ NextMarker?: string | undefined;
4832
4832
  /**
4833
4833
  * <p>Specifies the number of <code>SizeConstraintSet</code> objects that you want AWS WAF to return for this request. If you have more
4834
4834
  * <code>SizeConstraintSets</code> objects than the number you specify for <code>Limit</code>, the response includes a
4835
4835
  * <code>NextMarker</code> value that you can use to get another batch of <code>SizeConstraintSet</code> objects.</p>
4836
4836
  * @public
4837
4837
  */
4838
- Limit?: number;
4838
+ Limit?: number | undefined;
4839
4839
  }
4840
4840
  /**
4841
4841
  * <note>
@@ -4878,12 +4878,12 @@ export interface ListSizeConstraintSetsResponse {
4878
4878
  * <code>NextMarker</code> value in the next request.</p>
4879
4879
  * @public
4880
4880
  */
4881
- NextMarker?: string;
4881
+ NextMarker?: string | undefined;
4882
4882
  /**
4883
4883
  * <p>An array of <a>SizeConstraintSetSummary</a> objects.</p>
4884
4884
  * @public
4885
4885
  */
4886
- SizeConstraintSets?: SizeConstraintSetSummary[];
4886
+ SizeConstraintSets?: SizeConstraintSetSummary[] | undefined;
4887
4887
  }
4888
4888
  /**
4889
4889
  * <p>A request to list the <a>SqlInjectionMatchSet</a> objects created by the current AWS account.</p>
@@ -4897,14 +4897,14 @@ export interface ListSqlInjectionMatchSetsRequest {
4897
4897
  * value of <code>NextMarker</code> from the previous response to get information about another batch of <code>SqlInjectionMatchSets</code>.</p>
4898
4898
  * @public
4899
4899
  */
4900
- NextMarker?: string;
4900
+ NextMarker?: string | undefined;
4901
4901
  /**
4902
4902
  * <p>Specifies the number of <a>SqlInjectionMatchSet</a> objects that you want AWS WAF to return for this request. If you have more
4903
4903
  * <code>SqlInjectionMatchSet</code> objects than the number you specify for <code>Limit</code>, the response includes a
4904
4904
  * <code>NextMarker</code> value that you can use to get another batch of <code>Rules</code>.</p>
4905
4905
  * @public
4906
4906
  */
4907
- Limit?: number;
4907
+ Limit?: number | undefined;
4908
4908
  }
4909
4909
  /**
4910
4910
  * <note>
@@ -4948,12 +4948,12 @@ export interface ListSqlInjectionMatchSetsResponse {
4948
4948
  * <code>NextMarker</code> value in the next request.</p>
4949
4949
  * @public
4950
4950
  */
4951
- NextMarker?: string;
4951
+ NextMarker?: string | undefined;
4952
4952
  /**
4953
4953
  * <p>An array of <a>SqlInjectionMatchSetSummary</a> objects.</p>
4954
4954
  * @public
4955
4955
  */
4956
- SqlInjectionMatchSets?: SqlInjectionMatchSetSummary[];
4956
+ SqlInjectionMatchSets?: SqlInjectionMatchSetSummary[] | undefined;
4957
4957
  }
4958
4958
  /**
4959
4959
  * @public
@@ -4966,14 +4966,14 @@ export interface ListSubscribedRuleGroupsRequest {
4966
4966
  * from the previous response to get information about another batch of subscribed rule groups.</p>
4967
4967
  * @public
4968
4968
  */
4969
- NextMarker?: string;
4969
+ NextMarker?: string | undefined;
4970
4970
  /**
4971
4971
  * <p>Specifies the number of subscribed rule groups that you want AWS WAF to return for this request. If you have more
4972
4972
  * objects than the number you specify for <code>Limit</code>, the response includes a
4973
4973
  * <code>NextMarker</code> value that you can use to get another batch of objects.</p>
4974
4974
  * @public
4975
4975
  */
4976
- Limit?: number;
4976
+ Limit?: number | undefined;
4977
4977
  }
4978
4978
  /**
4979
4979
  * <note>
@@ -5016,12 +5016,12 @@ export interface ListSubscribedRuleGroupsResponse {
5016
5016
  * <code>NextMarker</code> value in the next request.</p>
5017
5017
  * @public
5018
5018
  */
5019
- NextMarker?: string;
5019
+ NextMarker?: string | undefined;
5020
5020
  /**
5021
5021
  * <p>An array of <a>RuleGroup</a> objects.</p>
5022
5022
  * @public
5023
5023
  */
5024
- RuleGroups?: SubscribedRuleGroupSummary[];
5024
+ RuleGroups?: SubscribedRuleGroupSummary[] | undefined;
5025
5025
  }
5026
5026
  /**
5027
5027
  * @public
@@ -5031,12 +5031,12 @@ export interface ListTagsForResourceRequest {
5031
5031
  * <p></p>
5032
5032
  * @public
5033
5033
  */
5034
- NextMarker?: string;
5034
+ NextMarker?: string | undefined;
5035
5035
  /**
5036
5036
  * <p></p>
5037
5037
  * @public
5038
5038
  */
5039
- Limit?: number;
5039
+ Limit?: number | undefined;
5040
5040
  /**
5041
5041
  * <p></p>
5042
5042
  * @public
@@ -5061,12 +5061,12 @@ export interface TagInfoForResource {
5061
5061
  * <p></p>
5062
5062
  * @public
5063
5063
  */
5064
- ResourceARN?: string;
5064
+ ResourceARN?: string | undefined;
5065
5065
  /**
5066
5066
  * <p></p>
5067
5067
  * @public
5068
5068
  */
5069
- TagList?: Tag[];
5069
+ TagList?: Tag[] | undefined;
5070
5070
  }
5071
5071
  /**
5072
5072
  * @public
@@ -5076,12 +5076,12 @@ export interface ListTagsForResourceResponse {
5076
5076
  * <p></p>
5077
5077
  * @public
5078
5078
  */
5079
- NextMarker?: string;
5079
+ NextMarker?: string | undefined;
5080
5080
  /**
5081
5081
  * <p></p>
5082
5082
  * @public
5083
5083
  */
5084
- TagInfoForResource?: TagInfoForResource;
5084
+ TagInfoForResource?: TagInfoForResource | undefined;
5085
5085
  }
5086
5086
  /**
5087
5087
  * @public
@@ -5094,14 +5094,14 @@ export interface ListWebACLsRequest {
5094
5094
  * from the previous response to get information about another batch of <code>WebACL</code> objects.</p>
5095
5095
  * @public
5096
5096
  */
5097
- NextMarker?: string;
5097
+ NextMarker?: string | undefined;
5098
5098
  /**
5099
5099
  * <p>Specifies the number of <code>WebACL</code> objects that you want AWS WAF to return for this request. If you have more
5100
5100
  * <code>WebACL</code> objects than the number that you specify for <code>Limit</code>, the response includes a
5101
5101
  * <code>NextMarker</code> value that you can use to get another batch of <code>WebACL</code> objects.</p>
5102
5102
  * @public
5103
5103
  */
5104
- Limit?: number;
5104
+ Limit?: number | undefined;
5105
5105
  }
5106
5106
  /**
5107
5107
  * @public
@@ -5114,12 +5114,12 @@ export interface ListWebACLsResponse {
5114
5114
  * <code>NextMarker</code> value in the next request.</p>
5115
5115
  * @public
5116
5116
  */
5117
- NextMarker?: string;
5117
+ NextMarker?: string | undefined;
5118
5118
  /**
5119
5119
  * <p>An array of <a>WebACLSummary</a> objects.</p>
5120
5120
  * @public
5121
5121
  */
5122
- WebACLs?: WebACLSummary[];
5122
+ WebACLs?: WebACLSummary[] | undefined;
5123
5123
  }
5124
5124
  /**
5125
5125
  * <p>A request to list the <a>XssMatchSet</a> objects created by the current AWS account.</p>
@@ -5133,14 +5133,14 @@ export interface ListXssMatchSetsRequest {
5133
5133
  * value of <code>NextMarker</code> from the previous response to get information about another batch of <code>XssMatchSets</code>.</p>
5134
5134
  * @public
5135
5135
  */
5136
- NextMarker?: string;
5136
+ NextMarker?: string | undefined;
5137
5137
  /**
5138
5138
  * <p>Specifies the number of <a>XssMatchSet</a> objects that you want AWS WAF to return for this request. If you have more
5139
5139
  * <code>XssMatchSet</code> objects than the number you specify for <code>Limit</code>, the response includes a
5140
5140
  * <code>NextMarker</code> value that you can use to get another batch of <code>Rules</code>.</p>
5141
5141
  * @public
5142
5142
  */
5143
- Limit?: number;
5143
+ Limit?: number | undefined;
5144
5144
  }
5145
5145
  /**
5146
5146
  * <note>
@@ -5184,12 +5184,12 @@ export interface ListXssMatchSetsResponse {
5184
5184
  * <code>NextMarker</code> value in the next request.</p>
5185
5185
  * @public
5186
5186
  */
5187
- NextMarker?: string;
5187
+ NextMarker?: string | undefined;
5188
5188
  /**
5189
5189
  * <p>An array of <a>XssMatchSetSummary</a> objects.</p>
5190
5190
  * @public
5191
5191
  */
5192
- XssMatchSets?: XssMatchSetSummary[];
5192
+ XssMatchSets?: XssMatchSetSummary[] | undefined;
5193
5193
  }
5194
5194
  /**
5195
5195
  * @public
@@ -5216,7 +5216,7 @@ export interface PutLoggingConfigurationResponse {
5216
5216
  * <p>The <a>LoggingConfiguration</a> that you submitted in the request.</p>
5217
5217
  * @public
5218
5218
  */
5219
- LoggingConfiguration?: LoggingConfiguration;
5219
+ LoggingConfiguration?: LoggingConfiguration | undefined;
5220
5220
  }
5221
5221
  /**
5222
5222
  * <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>
@@ -5419,7 +5419,7 @@ export interface UpdateByteMatchSetResponse {
5419
5419
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5420
5420
  * @public
5421
5421
  */
5422
- ChangeToken?: string;
5422
+ ChangeToken?: string | undefined;
5423
5423
  }
5424
5424
  /**
5425
5425
  * <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>
@@ -5516,7 +5516,7 @@ export interface UpdateGeoMatchSetResponse {
5516
5516
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5517
5517
  * @public
5518
5518
  */
5519
- ChangeToken?: string;
5519
+ ChangeToken?: string | undefined;
5520
5520
  }
5521
5521
  /**
5522
5522
  * <note>
@@ -5586,7 +5586,7 @@ export interface UpdateIPSetResponse {
5586
5586
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5587
5587
  * @public
5588
5588
  */
5589
- ChangeToken?: string;
5589
+ ChangeToken?: string | undefined;
5590
5590
  }
5591
5591
  /**
5592
5592
  * <note>
@@ -5654,7 +5654,7 @@ export interface UpdateRateBasedRuleResponse {
5654
5654
  * status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5655
5655
  * @public
5656
5656
  */
5657
- ChangeToken?: string;
5657
+ ChangeToken?: string | undefined;
5658
5658
  }
5659
5659
  /**
5660
5660
  * <note>
@@ -5714,7 +5714,7 @@ export interface UpdateRegexMatchSetResponse {
5714
5714
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5715
5715
  * @public
5716
5716
  */
5717
- ChangeToken?: string;
5717
+ ChangeToken?: string | undefined;
5718
5718
  }
5719
5719
  /**
5720
5720
  * <note>
@@ -5771,7 +5771,7 @@ export interface UpdateRegexPatternSetResponse {
5771
5771
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5772
5772
  * @public
5773
5773
  */
5774
- ChangeToken?: string;
5774
+ ChangeToken?: string | undefined;
5775
5775
  }
5776
5776
  /**
5777
5777
  * <p>The regular expression (regex) you specified in <code>RegexPatternString</code> is invalid.</p>
@@ -5833,7 +5833,7 @@ export interface UpdateRuleResponse {
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>
@@ -5897,7 +5897,7 @@ export interface UpdateRuleGroupResponse {
5897
5897
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5898
5898
  * @public
5899
5899
  */
5900
- ChangeToken?: string;
5900
+ ChangeToken?: string | undefined;
5901
5901
  }
5902
5902
  /**
5903
5903
  * <note>
@@ -5977,7 +5977,7 @@ export interface UpdateSizeConstraintSetResponse {
5977
5977
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
5978
5978
  * @public
5979
5979
  */
5980
- ChangeToken?: string;
5980
+ ChangeToken?: string | undefined;
5981
5981
  }
5982
5982
  /**
5983
5983
  * <note>
@@ -6055,7 +6055,7 @@ export interface UpdateSqlInjectionMatchSetResponse {
6055
6055
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
6056
6056
  * @public
6057
6057
  */
6058
- ChangeToken?: string;
6058
+ ChangeToken?: string | undefined;
6059
6059
  }
6060
6060
  /**
6061
6061
  * <note>
@@ -6127,13 +6127,13 @@ export interface UpdateWebACLRequest {
6127
6127
  * </ul>
6128
6128
  * @public
6129
6129
  */
6130
- Updates?: WebACLUpdate[];
6130
+ Updates?: WebACLUpdate[] | undefined;
6131
6131
  /**
6132
6132
  * <p>A default action for the web ACL, either ALLOW or BLOCK. AWS WAF performs the default
6133
6133
  * action if a request doesn't match the criteria in any of the rules in a web ACL.</p>
6134
6134
  * @public
6135
6135
  */
6136
- DefaultAction?: WafAction;
6136
+ DefaultAction?: WafAction | undefined;
6137
6137
  }
6138
6138
  /**
6139
6139
  * @public
@@ -6144,7 +6144,7 @@ export interface UpdateWebACLResponse {
6144
6144
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
6145
6145
  * @public
6146
6146
  */
6147
- ChangeToken?: string;
6147
+ ChangeToken?: string | undefined;
6148
6148
  }
6149
6149
  /**
6150
6150
  * <p>The specified subscription does not exist.</p>
@@ -6238,5 +6238,5 @@ export interface UpdateXssMatchSetResponse {
6238
6238
  * to query the status of the request. For more information, see <a>GetChangeTokenStatus</a>.</p>
6239
6239
  * @public
6240
6240
  */
6241
- ChangeToken?: string;
6241
+ ChangeToken?: string | undefined;
6242
6242
  }