@aws-sdk/client-wafv2 3.418.0 → 3.421.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.
- package/README.md +7 -7
- package/dist-cjs/models/models_0.js +5 -5
- package/dist-es/models/models_0.js +4 -4
- package/dist-types/commands/CheckCapacityCommand.d.ts +15 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +15 -0
- package/dist-types/commands/CreateWebACLCommand.d.ts +16 -1
- package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/GetRuleGroupCommand.d.ts +15 -0
- package/dist-types/commands/GetWebACLCommand.d.ts +15 -0
- package/dist-types/commands/GetWebACLForResourceCommand.d.ts +15 -0
- package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +3 -0
- package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +15 -0
- package/dist-types/commands/UpdateWebACLCommand.d.ts +16 -1
- package/dist-types/models/models_0.d.ts +117 -215
- package/dist-types/ts3.4/models/models_0.d.ts +10 -6
- package/package.json +3 -3
|
@@ -388,6 +388,44 @@ export interface Headers {
|
|
|
388
388
|
*/
|
|
389
389
|
OversizeHandling: OversizeHandling | string | undefined;
|
|
390
390
|
}
|
|
391
|
+
/**
|
|
392
|
+
* @public
|
|
393
|
+
* @enum
|
|
394
|
+
*/
|
|
395
|
+
export declare const FallbackBehavior: {
|
|
396
|
+
readonly MATCH: "MATCH";
|
|
397
|
+
readonly NO_MATCH: "NO_MATCH";
|
|
398
|
+
};
|
|
399
|
+
/**
|
|
400
|
+
* @public
|
|
401
|
+
*/
|
|
402
|
+
export type FallbackBehavior = (typeof FallbackBehavior)[keyof typeof FallbackBehavior];
|
|
403
|
+
/**
|
|
404
|
+
* @public
|
|
405
|
+
* <p>Match against the request's JA3 fingerprint header. The header contains a hash fingerprint of the TLS Client Hello packet for the request. </p>
|
|
406
|
+
* <note>
|
|
407
|
+
* <p>You can use this choice only with a string match <code>ByteMatchStatement</code> with the <code>PositionalConstraint</code> set to
|
|
408
|
+
* <code>EXACTLY</code>. </p>
|
|
409
|
+
* </note>
|
|
410
|
+
*/
|
|
411
|
+
export interface JA3Fingerprint {
|
|
412
|
+
/**
|
|
413
|
+
* @public
|
|
414
|
+
* <p>The match status to assign to the web request if the request doesn't have a JA3 fingerprint. </p>
|
|
415
|
+
* <p>You can specify the following fallback behaviors:</p>
|
|
416
|
+
* <ul>
|
|
417
|
+
* <li>
|
|
418
|
+
* <p>
|
|
419
|
+
* <code>MATCH</code> - Treat the web request as matching the rule statement. WAF applies the rule action to the request.</p>
|
|
420
|
+
* </li>
|
|
421
|
+
* <li>
|
|
422
|
+
* <p>
|
|
423
|
+
* <code>NO_MATCH</code> - Treat the web request as not matching the rule statement.</p>
|
|
424
|
+
* </li>
|
|
425
|
+
* </ul>
|
|
426
|
+
*/
|
|
427
|
+
FallbackBehavior: FallbackBehavior | string | undefined;
|
|
428
|
+
}
|
|
391
429
|
/**
|
|
392
430
|
* @public
|
|
393
431
|
* @enum
|
|
@@ -729,6 +767,15 @@ export interface FieldToMatch {
|
|
|
729
767
|
* WAF separates the header names in the string using colons and no added spaces, for example <code>host:user-agent:accept:authorization:referer</code>.</p>
|
|
730
768
|
*/
|
|
731
769
|
HeaderOrder?: HeaderOrder;
|
|
770
|
+
/**
|
|
771
|
+
* @public
|
|
772
|
+
* <p>Match against the request's JA3 fingerprint header. The header contains a hash fingerprint of the TLS Client Hello packet for the request. </p>
|
|
773
|
+
* <note>
|
|
774
|
+
* <p>You can use this choice only with a string match <code>ByteMatchStatement</code> with the <code>PositionalConstraint</code> set to
|
|
775
|
+
* <code>EXACTLY</code>. </p>
|
|
776
|
+
* </note>
|
|
777
|
+
*/
|
|
778
|
+
JA3Fingerprint?: JA3Fingerprint;
|
|
732
779
|
}
|
|
733
780
|
/**
|
|
734
781
|
* @public
|
|
@@ -792,164 +839,8 @@ export interface TextTransformation {
|
|
|
792
839
|
Priority: number | undefined;
|
|
793
840
|
/**
|
|
794
841
|
* @public
|
|
795
|
-
* <p>
|
|
796
|
-
*
|
|
797
|
-
* <b>BASE64_DECODE</b> - Decode a
|
|
798
|
-
* <code>Base64</code>-encoded string.</p>
|
|
799
|
-
* <p>
|
|
800
|
-
* <b>BASE64_DECODE_EXT</b> - Decode a
|
|
801
|
-
* <code>Base64</code>-encoded string, but use a forgiving implementation that ignores
|
|
802
|
-
* characters that aren't valid.</p>
|
|
803
|
-
* <p>
|
|
804
|
-
* <b>CMD_LINE</b> - Command-line transformations. These are
|
|
805
|
-
* helpful in reducing effectiveness of attackers who inject an operating system command-line
|
|
806
|
-
* command and use unusual formatting to disguise some or all of the command. </p>
|
|
807
|
-
* <ul>
|
|
808
|
-
* <li>
|
|
809
|
-
* <p>Delete the following characters: <code>\ " ' ^</code>
|
|
810
|
-
* </p>
|
|
811
|
-
* </li>
|
|
812
|
-
* <li>
|
|
813
|
-
* <p>Delete spaces before the following characters: <code>/ (</code>
|
|
814
|
-
* </p>
|
|
815
|
-
* </li>
|
|
816
|
-
* <li>
|
|
817
|
-
* <p>Replace the following characters with a space: <code>, ;</code>
|
|
818
|
-
* </p>
|
|
819
|
-
* </li>
|
|
820
|
-
* <li>
|
|
821
|
-
* <p>Replace multiple spaces with one space</p>
|
|
822
|
-
* </li>
|
|
823
|
-
* <li>
|
|
824
|
-
* <p>Convert uppercase letters (A-Z) to lowercase (a-z)</p>
|
|
825
|
-
* </li>
|
|
826
|
-
* </ul>
|
|
827
|
-
* <p>
|
|
828
|
-
* <b>COMPRESS_WHITE_SPACE</b> - Replace these characters
|
|
829
|
-
* with a space character (decimal 32): </p>
|
|
830
|
-
* <ul>
|
|
831
|
-
* <li>
|
|
832
|
-
* <p>
|
|
833
|
-
* <code>\f</code>, formfeed, decimal 12</p>
|
|
834
|
-
* </li>
|
|
835
|
-
* <li>
|
|
836
|
-
* <p>
|
|
837
|
-
* <code>\t</code>, tab, decimal 9</p>
|
|
838
|
-
* </li>
|
|
839
|
-
* <li>
|
|
840
|
-
* <p>
|
|
841
|
-
* <code>\n</code>, newline, decimal 10</p>
|
|
842
|
-
* </li>
|
|
843
|
-
* <li>
|
|
844
|
-
* <p>
|
|
845
|
-
* <code>\r</code>, carriage return, decimal 13</p>
|
|
846
|
-
* </li>
|
|
847
|
-
* <li>
|
|
848
|
-
* <p>
|
|
849
|
-
* <code>\v</code>, vertical tab, decimal 11</p>
|
|
850
|
-
* </li>
|
|
851
|
-
* <li>
|
|
852
|
-
* <p>Non-breaking space, decimal 160</p>
|
|
853
|
-
* </li>
|
|
854
|
-
* </ul>
|
|
855
|
-
* <p>
|
|
856
|
-
* <code>COMPRESS_WHITE_SPACE</code> also replaces multiple spaces with one space.</p>
|
|
857
|
-
* <p>
|
|
858
|
-
* <b>CSS_DECODE</b> - Decode characters that were encoded
|
|
859
|
-
* using CSS 2.x escape rules <code>syndata.html#characters</code>. This function uses up to
|
|
860
|
-
* two bytes in the decoding process, so it can help to uncover ASCII characters that were
|
|
861
|
-
* encoded using CSS encoding that wouldn’t typically be encoded. It's also useful in
|
|
862
|
-
* countering evasion, which is a combination of a backslash and non-hexadecimal characters.
|
|
863
|
-
* For example, <code>ja\vascript</code> for javascript. </p>
|
|
864
|
-
* <p>
|
|
865
|
-
* <b>ESCAPE_SEQ_DECODE</b> - Decode the following ANSI C
|
|
866
|
-
* escape sequences: <code>\a</code>, <code>\b</code>, <code>\f</code>, <code>\n</code>,
|
|
867
|
-
* <code>\r</code>, <code>\t</code>, <code>\v</code>, <code>\\</code>, <code>\?</code>,
|
|
868
|
-
* <code>\'</code>, <code>\"</code>, <code>\xHH</code> (hexadecimal), <code>\0OOO</code>
|
|
869
|
-
* (octal). Encodings that aren't valid remain in the output. </p>
|
|
870
|
-
* <p>
|
|
871
|
-
* <b>HEX_DECODE</b> - Decode a string of hexadecimal
|
|
872
|
-
* characters into a binary.</p>
|
|
873
|
-
* <p>
|
|
874
|
-
* <b>HTML_ENTITY_DECODE</b> - Replace HTML-encoded
|
|
875
|
-
* characters with unencoded characters. <code>HTML_ENTITY_DECODE</code> performs these
|
|
876
|
-
* operations: </p>
|
|
877
|
-
* <ul>
|
|
878
|
-
* <li>
|
|
879
|
-
* <p>Replaces <code>(ampersand)quot;</code> with <code>"</code>
|
|
880
|
-
* </p>
|
|
881
|
-
* </li>
|
|
882
|
-
* <li>
|
|
883
|
-
* <p>Replaces <code>(ampersand)nbsp;</code> with a non-breaking space, decimal
|
|
884
|
-
* 160</p>
|
|
885
|
-
* </li>
|
|
886
|
-
* <li>
|
|
887
|
-
* <p>Replaces <code>(ampersand)lt;</code> with a "less than" symbol</p>
|
|
888
|
-
* </li>
|
|
889
|
-
* <li>
|
|
890
|
-
* <p>Replaces <code>(ampersand)gt;</code> with <code>></code>
|
|
891
|
-
* </p>
|
|
892
|
-
* </li>
|
|
893
|
-
* <li>
|
|
894
|
-
* <p>Replaces characters that are represented in hexadecimal format,
|
|
895
|
-
* <code>(ampersand)#xhhhh;</code>, with the corresponding characters</p>
|
|
896
|
-
* </li>
|
|
897
|
-
* <li>
|
|
898
|
-
* <p>Replaces characters that are represented in decimal format,
|
|
899
|
-
* <code>(ampersand)#nnnn;</code>, with the corresponding characters</p>
|
|
900
|
-
* </li>
|
|
901
|
-
* </ul>
|
|
902
|
-
* <p>
|
|
903
|
-
* <b>JS_DECODE</b> - Decode JavaScript escape sequences. If
|
|
904
|
-
* a
|
|
905
|
-
* <code>\</code>
|
|
906
|
-
* <code>u</code>
|
|
907
|
-
* <code>HHHH</code>
|
|
908
|
-
* code is in the full-width ASCII code range of <code>FF01-FF5E</code>, then the higher byte
|
|
909
|
-
* is used to detect and adjust the lower byte. If not, only the lower byte is used and the
|
|
910
|
-
* higher byte is zeroed, causing a possible loss of information. </p>
|
|
911
|
-
* <p>
|
|
912
|
-
* <b>LOWERCASE</b> - Convert uppercase letters (A-Z) to
|
|
913
|
-
* lowercase (a-z). </p>
|
|
914
|
-
* <p>
|
|
915
|
-
* <b>MD5</b> - Calculate an MD5 hash from the data in the
|
|
916
|
-
* input. The computed hash is in a raw binary form. </p>
|
|
917
|
-
* <p>
|
|
918
|
-
* <b>NONE</b> - Specify <code>NONE</code> if you don't want
|
|
919
|
-
* any text transformations. </p>
|
|
920
|
-
* <p>
|
|
921
|
-
* <b>NORMALIZE_PATH</b> - Remove multiple slashes, directory
|
|
922
|
-
* self-references, and directory back-references that are not at the beginning of the input
|
|
923
|
-
* from an input string. </p>
|
|
924
|
-
* <p>
|
|
925
|
-
* <b>NORMALIZE_PATH_WIN</b> - This is the same as
|
|
926
|
-
* <code>NORMALIZE_PATH</code>, but first converts backslash characters to forward slashes. </p>
|
|
927
|
-
* <p>
|
|
928
|
-
* <b>REMOVE_NULLS</b> - Remove all <code>NULL</code> bytes
|
|
929
|
-
* from the input. </p>
|
|
930
|
-
* <p>
|
|
931
|
-
* <b>REPLACE_COMMENTS</b> - Replace each occurrence of a
|
|
932
|
-
* C-style comment (<code>/* ... *\/</code>) with a single space. Multiple consecutive
|
|
933
|
-
* occurrences are not compressed. Unterminated comments are also replaced with a space (ASCII
|
|
934
|
-
* 0x20). However, a standalone termination of a comment (<code>*\/</code>) is not acted upon. </p>
|
|
935
|
-
* <p>
|
|
936
|
-
* <b>REPLACE_NULLS</b> - Replace NULL bytes in the input
|
|
937
|
-
* with space characters (ASCII <code>0x20</code>). </p>
|
|
938
|
-
* <p>
|
|
939
|
-
* <b>SQL_HEX_DECODE</b> - Decode SQL hex data. Example
|
|
940
|
-
* (<code>0x414243</code>) will be decoded to (<code>ABC</code>).</p>
|
|
941
|
-
* <p>
|
|
942
|
-
* <b>URL_DECODE</b> - Decode a URL-encoded value. </p>
|
|
943
|
-
* <p>
|
|
944
|
-
* <b>URL_DECODE_UNI</b> - Like <code>URL_DECODE</code>, but
|
|
945
|
-
* with support for Microsoft-specific <code>%u</code> encoding. If the code is in the
|
|
946
|
-
* full-width ASCII code range of <code>FF01-FF5E</code>, the higher byte is used to detect
|
|
947
|
-
* and adjust the lower byte. Otherwise, only the lower byte is used and the higher byte is
|
|
948
|
-
* zeroed. </p>
|
|
949
|
-
* <p>
|
|
950
|
-
* <b>UTF8_TO_UNICODE</b> - Convert all UTF-8 character
|
|
951
|
-
* sequences to Unicode. This helps input normalization, and minimizing false-positives and
|
|
952
|
-
* false-negatives for non-English languages.</p>
|
|
842
|
+
* <p>For detailed descriptions of each of the transformation types, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-statement-transformation.html">Text transformations</a>
|
|
843
|
+
* in the <i>WAF Developer Guide</i>.</p>
|
|
953
844
|
*/
|
|
954
845
|
Type: TextTransformationType | string | undefined;
|
|
955
846
|
}
|
|
@@ -978,6 +869,11 @@ export interface ByteMatchStatement {
|
|
|
978
869
|
* </li>
|
|
979
870
|
* <li>
|
|
980
871
|
* <p>
|
|
872
|
+
* <code>JA3Fingerprint</code>: The string to match against the web request's JA3 fingerprint header. The header contains a hash fingerprint of the TLS Client Hello packet for
|
|
873
|
+
* the request. </p>
|
|
874
|
+
* </li>
|
|
875
|
+
* <li>
|
|
876
|
+
* <p>
|
|
981
877
|
* <code>HeaderOrder</code>: The comma-separated list of header names to match for. WAF creates a
|
|
982
878
|
* string that contains the ordered list of header names, from the headers in the web request, and then matches against that string. </p>
|
|
983
879
|
* </li>
|
|
@@ -1008,7 +904,7 @@ export interface ByteMatchStatement {
|
|
|
1008
904
|
FieldToMatch: FieldToMatch | undefined;
|
|
1009
905
|
/**
|
|
1010
906
|
* @public
|
|
1011
|
-
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents. </p>
|
|
907
|
+
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents. </p>
|
|
1012
908
|
*/
|
|
1013
909
|
TextTransformations: TextTransformation[] | undefined;
|
|
1014
910
|
/**
|
|
@@ -1320,18 +1216,6 @@ export declare const CountryCode: {
|
|
|
1320
1216
|
* @public
|
|
1321
1217
|
*/
|
|
1322
1218
|
export type CountryCode = (typeof CountryCode)[keyof typeof CountryCode];
|
|
1323
|
-
/**
|
|
1324
|
-
* @public
|
|
1325
|
-
* @enum
|
|
1326
|
-
*/
|
|
1327
|
-
export declare const FallbackBehavior: {
|
|
1328
|
-
readonly MATCH: "MATCH";
|
|
1329
|
-
readonly NO_MATCH: "NO_MATCH";
|
|
1330
|
-
};
|
|
1331
|
-
/**
|
|
1332
|
-
* @public
|
|
1333
|
-
*/
|
|
1334
|
-
export type FallbackBehavior = (typeof FallbackBehavior)[keyof typeof FallbackBehavior];
|
|
1335
1219
|
/**
|
|
1336
1220
|
* @public
|
|
1337
1221
|
* <p>The configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that's reported by the web request origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify any header name. </p>
|
|
@@ -1967,7 +1851,15 @@ export interface AWSManagedRulesACFPRuleSet {
|
|
|
1967
1851
|
/**
|
|
1968
1852
|
* @public
|
|
1969
1853
|
* <p>The path of the account creation endpoint for your application. This is the page on your website that accepts the completed registration form for a new user. This page must accept <code>POST</code> requests.</p>
|
|
1970
|
-
* <p>For example, for the URL <code>https://example.com/web/
|
|
1854
|
+
* <p>For example, for the URL <code>https://example.com/web/newaccount</code>, you would provide
|
|
1855
|
+
* the path <code>/web/newaccount</code>. Account creation page paths that
|
|
1856
|
+
* start with the path that you provide are considered a match. For example
|
|
1857
|
+
* <code>/web/newaccount</code> matches the account creation paths
|
|
1858
|
+
* <code>/web/newaccount</code>, <code>/web/newaccount/</code>,
|
|
1859
|
+
* <code>/web/newaccountPage</code>, and
|
|
1860
|
+
* <code>/web/newaccount/thisPage</code>, but doesn't match the path
|
|
1861
|
+
* <code>/home/web/newaccount</code> or
|
|
1862
|
+
* <code>/website/newaccount</code>. </p>
|
|
1971
1863
|
*/
|
|
1972
1864
|
CreationPath: string | undefined;
|
|
1973
1865
|
/**
|
|
@@ -1976,7 +1868,15 @@ export interface AWSManagedRulesACFPRuleSet {
|
|
|
1976
1868
|
* <note>
|
|
1977
1869
|
* <p>This page must accept <code>GET</code> text/html requests.</p>
|
|
1978
1870
|
* </note>
|
|
1979
|
-
* <p>For example, for the URL <code>https://example.com/web/
|
|
1871
|
+
* <p>For example, for the URL <code>https://example.com/web/registration</code>, you would provide
|
|
1872
|
+
* the path <code>/web/registration</code>. Registration page paths that
|
|
1873
|
+
* start with the path that you provide are considered a match. For example
|
|
1874
|
+
* <code>/web/registration</code> matches the registration paths
|
|
1875
|
+
* <code>/web/registration</code>, <code>/web/registration/</code>,
|
|
1876
|
+
* <code>/web/registrationPage</code>, and
|
|
1877
|
+
* <code>/web/registration/thisPage</code>, but doesn't match the path
|
|
1878
|
+
* <code>/home/web/registration</code> or
|
|
1879
|
+
* <code>/website/registration</code>. </p>
|
|
1980
1880
|
*/
|
|
1981
1881
|
RegistrationPagePath: string | undefined;
|
|
1982
1882
|
/**
|
|
@@ -2070,7 +1970,7 @@ export interface AWSManagedRulesATPRuleSet {
|
|
|
2070
1970
|
* @public
|
|
2071
1971
|
* <p>The path of the login endpoint for your application. For example, for the URL
|
|
2072
1972
|
* <code>https://example.com/web/login</code>, you would provide the path
|
|
2073
|
-
* <code>/web/login</code>.</p>
|
|
1973
|
+
* <code>/web/login</code>. Login paths that start with the path that you provide are considered a match. For example <code>/web/login</code> matches the login paths <code>/web/login</code>, <code>/web/login/</code>, <code>/web/loginPage</code>, and <code>/web/login/thisPage</code>, but doesn't match the login path <code>/home/web/login</code> or <code>/website/login</code>.</p>
|
|
2074
1974
|
* <p>The rule group inspects only HTTP <code>POST</code> requests to your specified login endpoint.</p>
|
|
2075
1975
|
*/
|
|
2076
1976
|
LoginPath: string | undefined;
|
|
@@ -2249,7 +2149,7 @@ export interface CustomResponse {
|
|
|
2249
2149
|
CustomResponseBodyKey?: string;
|
|
2250
2150
|
/**
|
|
2251
2151
|
* @public
|
|
2252
|
-
* <p>The HTTP headers to use in the response. Duplicate header names are not allowed
|
|
2152
|
+
* <p>The HTTP headers to use in the response. You can specify any header name except for <code>content-type</code>. Duplicate header names are not allowed.</p>
|
|
2253
2153
|
* <p>For information about the limits on count and size for custom request and response settings, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/limits.html">WAF quotas</a>
|
|
2254
2154
|
* in the <i>WAF Developer Guide</i>. </p>
|
|
2255
2155
|
*/
|
|
@@ -2449,7 +2349,7 @@ export interface RateLimitCookie {
|
|
|
2449
2349
|
Name: string | undefined;
|
|
2450
2350
|
/**
|
|
2451
2351
|
* @public
|
|
2452
|
-
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents. </p>
|
|
2352
|
+
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents. </p>
|
|
2453
2353
|
*/
|
|
2454
2354
|
TextTransformations: TextTransformation[] | undefined;
|
|
2455
2355
|
}
|
|
@@ -2479,7 +2379,7 @@ export interface RateLimitHeader {
|
|
|
2479
2379
|
Name: string | undefined;
|
|
2480
2380
|
/**
|
|
2481
2381
|
* @public
|
|
2482
|
-
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents. </p>
|
|
2382
|
+
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents. </p>
|
|
2483
2383
|
*/
|
|
2484
2384
|
TextTransformations: TextTransformation[] | undefined;
|
|
2485
2385
|
}
|
|
@@ -2530,7 +2430,7 @@ export interface RateLimitQueryArgument {
|
|
|
2530
2430
|
Name: string | undefined;
|
|
2531
2431
|
/**
|
|
2532
2432
|
* @public
|
|
2533
|
-
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents. </p>
|
|
2433
|
+
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents. </p>
|
|
2534
2434
|
*/
|
|
2535
2435
|
TextTransformations: TextTransformation[] | undefined;
|
|
2536
2436
|
}
|
|
@@ -2542,7 +2442,7 @@ export interface RateLimitQueryArgument {
|
|
|
2542
2442
|
export interface RateLimitQueryString {
|
|
2543
2443
|
/**
|
|
2544
2444
|
* @public
|
|
2545
|
-
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents. </p>
|
|
2445
|
+
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents. </p>
|
|
2546
2446
|
*/
|
|
2547
2447
|
TextTransformations: TextTransformation[] | undefined;
|
|
2548
2448
|
}
|
|
@@ -2554,7 +2454,7 @@ export interface RateLimitQueryString {
|
|
|
2554
2454
|
export interface RateLimitUriPath {
|
|
2555
2455
|
/**
|
|
2556
2456
|
* @public
|
|
2557
|
-
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents. </p>
|
|
2457
|
+
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents. </p>
|
|
2558
2458
|
*/
|
|
2559
2459
|
TextTransformations: TextTransformation[] | undefined;
|
|
2560
2460
|
}
|
|
@@ -2644,7 +2544,7 @@ export interface RegexMatchStatement {
|
|
|
2644
2544
|
FieldToMatch: FieldToMatch | undefined;
|
|
2645
2545
|
/**
|
|
2646
2546
|
* @public
|
|
2647
|
-
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents. </p>
|
|
2547
|
+
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents. </p>
|
|
2648
2548
|
*/
|
|
2649
2549
|
TextTransformations: TextTransformation[] | undefined;
|
|
2650
2550
|
}
|
|
@@ -2667,15 +2567,15 @@ export interface RegexPatternSetReferenceStatement {
|
|
|
2667
2567
|
FieldToMatch: FieldToMatch | undefined;
|
|
2668
2568
|
/**
|
|
2669
2569
|
* @public
|
|
2670
|
-
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents. </p>
|
|
2570
|
+
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents. </p>
|
|
2671
2571
|
*/
|
|
2672
2572
|
TextTransformations: TextTransformation[] | undefined;
|
|
2673
2573
|
}
|
|
2674
2574
|
/**
|
|
2675
2575
|
* @public
|
|
2676
2576
|
* <p>A rule statement used to run the rules that are defined in a <a>RuleGroup</a>. To use this, create a rule group with your rules, then provide the ARN of the rule group in this statement.</p>
|
|
2677
|
-
* <p>You cannot nest a <code>RuleGroupReferenceStatement</code>, for example for use inside a <code>NotStatement</code> or <code>OrStatement</code>. You
|
|
2678
|
-
* can only
|
|
2577
|
+
* <p>You cannot nest a <code>RuleGroupReferenceStatement</code>, for example for use inside a <code>NotStatement</code> or <code>OrStatement</code>. You cannot use a rule group
|
|
2578
|
+
* reference statement inside another rule group. You can only reference a rule group as a top-level statement within a rule that you define in a web ACL.</p>
|
|
2679
2579
|
*/
|
|
2680
2580
|
export interface RuleGroupReferenceStatement {
|
|
2681
2581
|
/**
|
|
@@ -2738,7 +2638,7 @@ export interface SizeConstraintStatement {
|
|
|
2738
2638
|
Size: number | undefined;
|
|
2739
2639
|
/**
|
|
2740
2640
|
* @public
|
|
2741
|
-
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents. </p>
|
|
2641
|
+
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents. </p>
|
|
2742
2642
|
*/
|
|
2743
2643
|
TextTransformations: TextTransformation[] | undefined;
|
|
2744
2644
|
}
|
|
@@ -2766,7 +2666,7 @@ export interface SqliMatchStatement {
|
|
|
2766
2666
|
FieldToMatch: FieldToMatch | undefined;
|
|
2767
2667
|
/**
|
|
2768
2668
|
* @public
|
|
2769
|
-
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents. </p>
|
|
2669
|
+
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents. </p>
|
|
2770
2670
|
*/
|
|
2771
2671
|
TextTransformations: TextTransformation[] | undefined;
|
|
2772
2672
|
/**
|
|
@@ -2799,7 +2699,7 @@ export interface XssMatchStatement {
|
|
|
2799
2699
|
FieldToMatch: FieldToMatch | undefined;
|
|
2800
2700
|
/**
|
|
2801
2701
|
* @public
|
|
2802
|
-
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents. </p>
|
|
2702
|
+
* <p>Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the <code>FieldToMatch</code> request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents. </p>
|
|
2803
2703
|
*/
|
|
2804
2704
|
TextTransformations: TextTransformation[] | undefined;
|
|
2805
2705
|
}
|
|
@@ -3444,21 +3344,21 @@ export interface CreateIPSetRequest {
|
|
|
3444
3344
|
IPAddressVersion: IPAddressVersion | string | undefined;
|
|
3445
3345
|
/**
|
|
3446
3346
|
* @public
|
|
3447
|
-
* <p>Contains an array of strings that specifies zero or more IP addresses or blocks of IP addresses. All addresses must be specified using Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for <code>/0</code>. </p>
|
|
3347
|
+
* <p>Contains an array of strings that specifies zero or more IP addresses or blocks of IP addresses that you want WAF to inspect for in incoming requests. All addresses must be specified using Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for <code>/0</code>. </p>
|
|
3448
3348
|
* <p>Example address strings: </p>
|
|
3449
3349
|
* <ul>
|
|
3450
3350
|
* <li>
|
|
3451
|
-
* <p>
|
|
3351
|
+
* <p>For requests that originated from the IP address 192.0.2.44, specify <code>192.0.2.44/32</code>.</p>
|
|
3452
3352
|
* </li>
|
|
3453
3353
|
* <li>
|
|
3454
|
-
* <p>
|
|
3354
|
+
* <p>For requests that originated from IP addresses from 192.0.2.0 to 192.0.2.255, specify
|
|
3455
3355
|
* <code>192.0.2.0/24</code>.</p>
|
|
3456
3356
|
* </li>
|
|
3457
3357
|
* <li>
|
|
3458
|
-
* <p>
|
|
3358
|
+
* <p>For requests that originated from the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify <code>1111:0000:0000:0000:0000:0000:0000:0111/128</code>.</p>
|
|
3459
3359
|
* </li>
|
|
3460
3360
|
* <li>
|
|
3461
|
-
* <p>
|
|
3361
|
+
* <p>For requests that originated from IP addresses 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify <code>1111:0000:0000:0000:0000:0000:0000:0000/64</code>.</p>
|
|
3462
3362
|
* </li>
|
|
3463
3363
|
* </ul>
|
|
3464
3364
|
* <p>For more information about CIDR notation, see the Wikipedia entry <a href="https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing">Classless Inter-Domain Routing</a>.</p>
|
|
@@ -4511,21 +4411,21 @@ export interface IPSet {
|
|
|
4511
4411
|
IPAddressVersion: IPAddressVersion | string | undefined;
|
|
4512
4412
|
/**
|
|
4513
4413
|
* @public
|
|
4514
|
-
* <p>Contains an array of strings that specifies zero or more IP addresses or blocks of IP addresses. All addresses must be specified using Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for <code>/0</code>. </p>
|
|
4414
|
+
* <p>Contains an array of strings that specifies zero or more IP addresses or blocks of IP addresses that you want WAF to inspect for in incoming requests. All addresses must be specified using Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for <code>/0</code>. </p>
|
|
4515
4415
|
* <p>Example address strings: </p>
|
|
4516
4416
|
* <ul>
|
|
4517
4417
|
* <li>
|
|
4518
|
-
* <p>
|
|
4418
|
+
* <p>For requests that originated from the IP address 192.0.2.44, specify <code>192.0.2.44/32</code>.</p>
|
|
4519
4419
|
* </li>
|
|
4520
4420
|
* <li>
|
|
4521
|
-
* <p>
|
|
4421
|
+
* <p>For requests that originated from IP addresses from 192.0.2.0 to 192.0.2.255, specify
|
|
4522
4422
|
* <code>192.0.2.0/24</code>.</p>
|
|
4523
4423
|
* </li>
|
|
4524
4424
|
* <li>
|
|
4525
|
-
* <p>
|
|
4425
|
+
* <p>For requests that originated from the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify <code>1111:0000:0000:0000:0000:0000:0000:0111/128</code>.</p>
|
|
4526
4426
|
* </li>
|
|
4527
4427
|
* <li>
|
|
4528
|
-
* <p>
|
|
4428
|
+
* <p>For requests that originated from IP addresses 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify <code>1111:0000:0000:0000:0000:0000:0000:0000/64</code>.</p>
|
|
4529
4429
|
* </li>
|
|
4530
4430
|
* </ul>
|
|
4531
4431
|
* <p>For more information about CIDR notation, see the Wikipedia entry <a href="https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing">Classless Inter-Domain Routing</a>.</p>
|
|
@@ -6620,21 +6520,21 @@ export interface UpdateIPSetRequest {
|
|
|
6620
6520
|
Description?: string;
|
|
6621
6521
|
/**
|
|
6622
6522
|
* @public
|
|
6623
|
-
* <p>Contains an array of strings that specifies zero or more IP addresses or blocks of IP addresses. All addresses must be specified using Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for <code>/0</code>. </p>
|
|
6523
|
+
* <p>Contains an array of strings that specifies zero or more IP addresses or blocks of IP addresses that you want WAF to inspect for in incoming requests. All addresses must be specified using Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for <code>/0</code>. </p>
|
|
6624
6524
|
* <p>Example address strings: </p>
|
|
6625
6525
|
* <ul>
|
|
6626
6526
|
* <li>
|
|
6627
|
-
* <p>
|
|
6527
|
+
* <p>For requests that originated from the IP address 192.0.2.44, specify <code>192.0.2.44/32</code>.</p>
|
|
6628
6528
|
* </li>
|
|
6629
6529
|
* <li>
|
|
6630
|
-
* <p>
|
|
6530
|
+
* <p>For requests that originated from IP addresses from 192.0.2.0 to 192.0.2.255, specify
|
|
6631
6531
|
* <code>192.0.2.0/24</code>.</p>
|
|
6632
6532
|
* </li>
|
|
6633
6533
|
* <li>
|
|
6634
|
-
* <p>
|
|
6534
|
+
* <p>For requests that originated from the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify <code>1111:0000:0000:0000:0000:0000:0000:0111/128</code>.</p>
|
|
6635
6535
|
* </li>
|
|
6636
6536
|
* <li>
|
|
6637
|
-
* <p>
|
|
6537
|
+
* <p>For requests that originated from IP addresses 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify <code>1111:0000:0000:0000:0000:0000:0000:0000/64</code>.</p>
|
|
6638
6538
|
* </li>
|
|
6639
6539
|
* </ul>
|
|
6640
6540
|
* <p>For more information about CIDR notation, see the Wikipedia entry <a href="https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing">Classless Inter-Domain Routing</a>.</p>
|
|
@@ -6866,8 +6766,8 @@ export interface Statement {
|
|
|
6866
6766
|
/**
|
|
6867
6767
|
* @public
|
|
6868
6768
|
* <p>A rule statement used to run the rules that are defined in a <a>RuleGroup</a>. To use this, create a rule group with your rules, then provide the ARN of the rule group in this statement.</p>
|
|
6869
|
-
* <p>You cannot nest a <code>RuleGroupReferenceStatement</code>, for example for use inside a <code>NotStatement</code> or <code>OrStatement</code>. You
|
|
6870
|
-
* can only
|
|
6769
|
+
* <p>You cannot nest a <code>RuleGroupReferenceStatement</code>, for example for use inside a <code>NotStatement</code> or <code>OrStatement</code>. You cannot use a rule group
|
|
6770
|
+
* reference statement inside another rule group. You can only reference a rule group as a top-level statement within a rule that you define in a web ACL.</p>
|
|
6871
6771
|
*/
|
|
6872
6772
|
RuleGroupReferenceStatement?: RuleGroupReferenceStatement;
|
|
6873
6773
|
/**
|
|
@@ -6970,7 +6870,8 @@ export interface Statement {
|
|
|
6970
6870
|
/**
|
|
6971
6871
|
* @public
|
|
6972
6872
|
* <p>A rule statement used to run the rules that are defined in a managed rule group. To use this, provide the vendor name and the name of the rule group in this statement. You can retrieve the required names by calling <a>ListAvailableManagedRuleGroups</a>.</p>
|
|
6973
|
-
* <p>You cannot nest a <code>ManagedRuleGroupStatement</code>, for example for use inside a <code>NotStatement</code> or <code>OrStatement</code>.
|
|
6873
|
+
* <p>You cannot nest a <code>ManagedRuleGroupStatement</code>, for example for use inside a <code>NotStatement</code> or <code>OrStatement</code>. You cannot use a managed rule group
|
|
6874
|
+
* inside another rule group. You can only reference a managed rule group as a top-level statement within a rule that you define in a web ACL.</p>
|
|
6974
6875
|
* <note>
|
|
6975
6876
|
* <p>You are charged additional fees when you use the WAF Bot Control managed rule group <code>AWSManagedRulesBotControlRuleSet</code>, the WAF Fraud Control account takeover prevention (ATP) managed rule group <code>AWSManagedRulesATPRuleSet</code>, or the WAF Fraud Control account creation fraud prevention (ACFP) managed rule group <code>AWSManagedRulesACFPRuleSet</code>. For more information, see <a href="http://aws.amazon.com/waf/pricing/">WAF Pricing</a>.</p>
|
|
6976
6877
|
* </note>
|
|
@@ -6991,7 +6892,8 @@ export interface Statement {
|
|
|
6991
6892
|
/**
|
|
6992
6893
|
* @public
|
|
6993
6894
|
* <p>A rule statement used to run the rules that are defined in a managed rule group. To use this, provide the vendor name and the name of the rule group in this statement. You can retrieve the required names by calling <a>ListAvailableManagedRuleGroups</a>.</p>
|
|
6994
|
-
* <p>You cannot nest a <code>ManagedRuleGroupStatement</code>, for example for use inside a <code>NotStatement</code> or <code>OrStatement</code>.
|
|
6895
|
+
* <p>You cannot nest a <code>ManagedRuleGroupStatement</code>, for example for use inside a <code>NotStatement</code> or <code>OrStatement</code>. You cannot use a managed rule group
|
|
6896
|
+
* inside another rule group. You can only reference a managed rule group as a top-level statement within a rule that you define in a web ACL.</p>
|
|
6995
6897
|
* <note>
|
|
6996
6898
|
* <p>You are charged additional fees when you use the WAF Bot Control managed rule group <code>AWSManagedRulesBotControlRuleSet</code>, the WAF Fraud Control account takeover prevention (ATP) managed rule group <code>AWSManagedRulesATPRuleSet</code>, or the WAF Fraud Control account creation fraud prevention (ACFP) managed rule group <code>AWSManagedRulesACFPRuleSet</code>. For more information, see <a href="http://aws.amazon.com/waf/pricing/">WAF Pricing</a>.</p>
|
|
6997
6899
|
* </note>
|
|
@@ -7219,8 +7121,8 @@ export interface RateBasedStatement {
|
|
|
7219
7121
|
}
|
|
7220
7122
|
/**
|
|
7221
7123
|
* @public
|
|
7222
|
-
* <p>A single rule, which you can use in a <a>WebACL</a> or <a>RuleGroup</a> to identify web requests that you want to
|
|
7223
|
-
*
|
|
7124
|
+
* <p>A single rule, which you can use in a <a>WebACL</a> or <a>RuleGroup</a> to identify web requests that you want to manage in some way.
|
|
7125
|
+
* Each rule includes one top-level <a>Statement</a> that WAF uses to
|
|
7224
7126
|
* identify matching web requests, and parameters that govern how WAF handles them. </p>
|
|
7225
7127
|
*/
|
|
7226
7128
|
export interface Rule {
|
|
@@ -7470,7 +7372,7 @@ export interface CreateRuleGroupRequest {
|
|
|
7470
7372
|
/**
|
|
7471
7373
|
* @public
|
|
7472
7374
|
* <p>The <a>Rule</a> statements used to identify the web requests that you
|
|
7473
|
-
* want to
|
|
7375
|
+
* want to manage. Each rule includes one top-level statement that WAF uses to identify matching
|
|
7474
7376
|
* web requests, and parameters that govern how WAF handles them.
|
|
7475
7377
|
* </p>
|
|
7476
7378
|
*/
|
|
@@ -7532,7 +7434,7 @@ export interface CreateWebACLRequest {
|
|
|
7532
7434
|
/**
|
|
7533
7435
|
* @public
|
|
7534
7436
|
* <p>The <a>Rule</a> statements used to identify the web requests that you
|
|
7535
|
-
* want to
|
|
7437
|
+
* want to manage. Each rule includes one top-level statement that WAF uses to identify matching
|
|
7536
7438
|
* web requests, and parameters that govern how WAF handles them.
|
|
7537
7439
|
* </p>
|
|
7538
7440
|
*/
|
|
@@ -7630,7 +7532,7 @@ export interface RuleGroup {
|
|
|
7630
7532
|
/**
|
|
7631
7533
|
* @public
|
|
7632
7534
|
* <p>The <a>Rule</a> statements used to identify the web requests that you
|
|
7633
|
-
* want to
|
|
7535
|
+
* want to manage. Each rule includes one top-level statement that WAF uses to identify matching
|
|
7634
7536
|
* web requests, and parameters that govern how WAF handles them.
|
|
7635
7537
|
* </p>
|
|
7636
7538
|
*/
|
|
@@ -7716,7 +7618,7 @@ export interface UpdateRuleGroupRequest {
|
|
|
7716
7618
|
/**
|
|
7717
7619
|
* @public
|
|
7718
7620
|
* <p>The <a>Rule</a> statements used to identify the web requests that you
|
|
7719
|
-
* want to
|
|
7621
|
+
* want to manage. Each rule includes one top-level statement that WAF uses to identify matching
|
|
7720
7622
|
* web requests, and parameters that govern how WAF handles them.
|
|
7721
7623
|
* </p>
|
|
7722
7624
|
*/
|
|
@@ -7783,7 +7685,7 @@ export interface UpdateWebACLRequest {
|
|
|
7783
7685
|
/**
|
|
7784
7686
|
* @public
|
|
7785
7687
|
* <p>The <a>Rule</a> statements used to identify the web requests that you
|
|
7786
|
-
* want to
|
|
7688
|
+
* want to manage. Each rule includes one top-level statement that WAF uses to identify matching
|
|
7787
7689
|
* web requests, and parameters that govern how WAF handles them.
|
|
7788
7690
|
* </p>
|
|
7789
7691
|
*/
|
|
@@ -7854,7 +7756,7 @@ export interface GetRuleGroupResponse {
|
|
|
7854
7756
|
}
|
|
7855
7757
|
/**
|
|
7856
7758
|
* @public
|
|
7857
|
-
* <p> A web ACL defines a collection of rules to use to inspect and control web requests. Each rule has
|
|
7759
|
+
* <p> A web ACL defines a collection of rules to use to inspect and control web requests. Each rule has a statement that defines what to look for in web requests and an action that WAF applies to requests that match the statement. In the web ACL, you assign a default action to take (allow, block) for any request that does not match any of the rules. The rules in a web ACL can be a combination of the types <a>Rule</a>, <a>RuleGroup</a>, and managed rule group. You can associate a web ACL with one or more Amazon Web Services resources to protect. The resources can be an Amazon CloudFront distribution, an Amazon API Gateway REST API, an Application Load Balancer, an AppSync GraphQL API, an Amazon Cognito user pool, an App Runner service, or an Amazon Web Services Verified Access instance. </p>
|
|
7858
7760
|
*/
|
|
7859
7761
|
export interface WebACL {
|
|
7860
7762
|
/**
|
|
@@ -7888,7 +7790,7 @@ export interface WebACL {
|
|
|
7888
7790
|
/**
|
|
7889
7791
|
* @public
|
|
7890
7792
|
* <p>The <a>Rule</a> statements used to identify the web requests that you
|
|
7891
|
-
* want to
|
|
7793
|
+
* want to manage. Each rule includes one top-level statement that WAF uses to identify matching
|
|
7892
7794
|
* web requests, and parameters that govern how WAF handles them.
|
|
7893
7795
|
* </p>
|
|
7894
7796
|
*/
|