Module Smaws_Client_WAFV2.Types

type nonrec field_to_match_data = string
type nonrec single_header = {
  1. name : field_to_match_data;
    (*

    The name of the query header to inspect.

    *)
}

Inspect one of the headers in the web request, identified by name, for example, User-Agent or Referer. The name isn't case sensitive.

You can filter and inspect all headers with the FieldToMatch setting Headers.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "SingleHeader": { "Name": "haystack" }

type nonrec single_query_argument = {
  1. name : field_to_match_data;
    (*

    The name of the query argument to inspect.

    *)
}

Inspect one query argument in the web request, identified by name, for example UserName or SalesRegion. The name isn't case sensitive.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "SingleQueryArgument": { "Name": "myArgument" }

type nonrec all_query_arguments = unit
type nonrec uri_path = unit
type nonrec query_string = unit
type nonrec oversize_handling =
  1. | NO_MATCH
  2. | MATCH
  3. | CONTINUE
type nonrec body = {
  1. oversize_handling : oversize_handling option;
    (*

    What WAF should do if the body is larger than WAF can inspect.

    WAF does not support inspecting the entire contents of the web request body if the body exceeds the limit for the resource type. When a web request body is larger than the limit, the underlying host service only forwards the contents that are within the limit to WAF for inspection.

    • For Application Load Balancer and AppSync, the limit is fixed at 8 KB (8,192 bytes).
    • For CloudFront, API Gateway, Amazon Cognito, App Runner, and Verified Access, the default limit is 16 KB (16,384 bytes), and you can increase the limit for each resource type in the web ACL AssociationConfig, for additional processing fees.
    • For Amplify, use the CloudFront limit.

    The options for oversize handling are the following:

    • CONTINUE - Inspect the available body contents normally, according to the rule inspection criteria.
    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.

    You can combine the MATCH or NO_MATCH settings for oversize handling with your rule and web ACL action settings, so that you block any request whose body is over the limit.

    Default: CONTINUE

    *)
}

Inspect the body of the web request. The body immediately follows the request headers.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

type nonrec method_ = unit
type nonrec all = unit
type nonrec json_pointer_path = string
type nonrec json_pointer_paths = json_pointer_path list
type nonrec json_match_pattern = {
  1. included_paths : json_pointer_paths option;
    (*

    Match only the specified include paths. See also MatchScope in JsonBody.

    Provide the include paths using JSON Pointer syntax. For example, "IncludedPaths": ["/dogs/0/name", "/dogs/1/name"]. For information about this syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

    You must specify either this setting or the All setting, but not both.

    Don't use this option to include all paths. Instead, use the All setting.

    *)
  2. all : all option;
    (*

    Match all of the elements. See also MatchScope in JsonBody.

    You must specify either this setting or the IncludedPaths setting, but not both.

    *)
}

The patterns to look for in the JSON body. WAF inspects the results of these pattern matches against the rule inspection criteria. This is used with the FieldToMatch option JsonBody.

type nonrec json_match_scope =
  1. | VALUE
  2. | KEY
  3. | ALL
type nonrec body_parsing_fallback_behavior =
  1. | EVALUATE_AS_STRING
  2. | NO_MATCH
  3. | MATCH
type nonrec json_body = {
  1. oversize_handling : oversize_handling option;
    (*

    What WAF should do if the body is larger than WAF can inspect.

    WAF does not support inspecting the entire contents of the web request body if the body exceeds the limit for the resource type. When a web request body is larger than the limit, the underlying host service only forwards the contents that are within the limit to WAF for inspection.

    • For Application Load Balancer and AppSync, the limit is fixed at 8 KB (8,192 bytes).
    • For CloudFront, API Gateway, Amazon Cognito, App Runner, and Verified Access, the default limit is 16 KB (16,384 bytes), and you can increase the limit for each resource type in the web ACL AssociationConfig, for additional processing fees.
    • For Amplify, use the CloudFront limit.

    The options for oversize handling are the following:

    • CONTINUE - Inspect the available body contents normally, according to the rule inspection criteria.
    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.

    You can combine the MATCH or NO_MATCH settings for oversize handling with your rule and web ACL action settings, so that you block any request whose body is over the limit.

    Default: CONTINUE

    *)
  2. invalid_fallback_behavior : body_parsing_fallback_behavior option;
    (*

    What WAF should do if it fails to completely parse the JSON body. The options are the following:

    • EVALUATE_AS_STRING - Inspect the body as plain text. WAF applies the text transformations and inspection criteria that you defined for the JSON inspection to the body text string.
    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.

    If you don't provide this setting, WAF parses and evaluates the content only up to the first parsing failure that it encounters.

    WAF parsing doesn't fully validate the input JSON string, so parsing can succeed even for invalid JSON. When parsing succeeds, WAF doesn't apply the fallback behavior. For more information, see JSON body in the WAF Developer Guide.

    *)
  3. match_scope : json_match_scope;
    (*

    The parts of the JSON to match against using the MatchPattern. If you specify ALL, WAF matches against keys and values.

    All does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical AND statement to combine two match rules, one that inspects the keys and another that inspects the values.

    *)
  4. match_pattern : json_match_pattern;
    (*

    The patterns to look for in the JSON body. WAF inspects the results of these pattern matches against the rule inspection criteria.

    *)
}

Inspect the body of the web request as JSON. The body immediately follows the request headers.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Use the specifications in this object to indicate which parts of the JSON body to inspect using the rule's inspection criteria. WAF inspects only the parts of the JSON that result from the matches that you indicate.

Example JSON: "JsonBody": { "MatchPattern": { "All": {} }, "MatchScope": "ALL" }

For additional information about this request component option, see JSON body in the WAF Developer Guide.

type nonrec header_names = field_to_match_data list
type nonrec header_match_pattern = {
  1. excluded_headers : header_names option;
    (*

    Inspect only the headers whose keys don't match any of the strings specified here.

    *)
  2. included_headers : header_names option;
    (*

    Inspect only the headers that have a key that matches one of the strings specified here.

    *)
  3. all : all option;
    (*

    Inspect all headers.

    *)
}

The filter to use to identify the subset of headers to inspect in a web request.

You must specify exactly one setting: either All, IncludedHeaders, or ExcludedHeaders.

Example JSON: "MatchPattern": { "ExcludedHeaders": [ "KeyToExclude1", "KeyToExclude2" ] }

type nonrec map_match_scope =
  1. | VALUE
  2. | KEY
  3. | ALL
type nonrec headers = {
  1. oversize_handling : oversize_handling;
    (*

    What WAF should do if the headers determined by your match scope are more numerous or larger than WAF can inspect. WAF does not support inspecting the entire contents of request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The underlying host service forwards a maximum of 200 headers and at most 8 KB of header contents to WAF.

    The options for oversize handling are the following:

    • CONTINUE - Inspect the available headers normally, according to the rule inspection criteria.
    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.
    *)
  2. match_scope : map_match_scope;
    (*

    The parts of the headers to match with the rule inspection criteria. If you specify ALL, WAF inspects both keys and values.

    All does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical AND statement to combine two match rules, one that inspects the keys and another that inspects the values.

    *)
  3. match_pattern : header_match_pattern;
    (*

    The filter to use to identify the subset of headers to inspect in a web request.

    You must specify exactly one setting: either All, IncludedHeaders, or ExcludedHeaders.

    Example JSON: "MatchPattern": { "ExcludedHeaders": [ "KeyToExclude1", "KeyToExclude2" ] }

    *)
}

Inspect all headers in the web request. You can specify the parts of the headers to inspect and you can narrow the set of headers to inspect by including or excluding specific keys.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

If you want to inspect just the value of a single header, use the SingleHeader FieldToMatch setting instead.

Example JSON: "Headers": { "MatchPattern": { "All": {} }, "MatchScope": "KEY", "OversizeHandling": "MATCH" }

The filter to use to identify the subset of cookies to inspect in a web request.

You must specify exactly one setting: either All, IncludedCookies, or ExcludedCookies.

Example JSON: "MatchPattern": { "IncludedCookies": [ "session-id-time", "session-id" ] }

type nonrec cookies = {
  1. oversize_handling : oversize_handling;
    (*

    What WAF should do if the cookies of the request are more numerous or larger than WAF can inspect. WAF does not support inspecting the entire contents of request cookies when they exceed 8 KB (8192 bytes) or 200 total cookies. The underlying host service forwards a maximum of 200 cookies and at most 8 KB of cookie contents to WAF.

    The options for oversize handling are the following:

    • CONTINUE - Inspect the available cookies normally, according to the rule inspection criteria.
    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.
    *)
  2. match_scope : map_match_scope;
    (*

    The parts of the cookies to inspect with the rule inspection criteria. If you specify ALL, WAF inspects both keys and values.

    All does not require a match to be found in the keys and a match to be found in the values. It requires a match to be found in the keys or the values or both. To require a match in the keys and in the values, use a logical AND statement to combine two match rules, one that inspects the keys and another that inspects the values.

    *)
  3. match_pattern : cookie_match_pattern;
    (*

    The filter to use to identify the subset of cookies to inspect in a web request.

    You must specify exactly one setting: either All, IncludedCookies, or ExcludedCookies.

    Example JSON: "MatchPattern": { "IncludedCookies": [ "session-id-time", "session-id" ] }

    *)
}

Inspect the cookies in the web request. You can specify the parts of the cookies to inspect and you can narrow the set of cookies to inspect by including or excluding specific keys.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "Cookies": { "MatchPattern": { "All": {} }, "MatchScope": "KEY", "OversizeHandling": "MATCH" }

type nonrec header_order = {
  1. oversize_handling : oversize_handling;
    (*

    What WAF should do if the headers determined by your match scope are more numerous or larger than WAF can inspect. WAF does not support inspecting the entire contents of request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The underlying host service forwards a maximum of 200 headers and at most 8 KB of header contents to WAF.

    The options for oversize handling are the following:

    • CONTINUE - Inspect the available headers normally, according to the rule inspection criteria.
    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.
    *)
}

Inspect a string containing the list of the request's header names, ordered as they appear in the web request that WAF receives for inspection. WAF generates the string and then uses that as the field to match component in its inspection. WAF separates the header names in the string using colons and no added spaces, for example host:user-agent:accept:authorization:referer.

type nonrec fallback_behavior =
  1. | NO_MATCH
  2. | MATCH
type nonrec ja3_fingerprint = {
  1. fallback_behavior : fallback_behavior;
    (*

    The match status to assign to the web request if the request doesn't have a JA3 fingerprint.

    You can specify the following fallback behaviors:

    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.
    *)
}

Available for use with Amazon CloudFront distributions and Application Load Balancers. Match against the request's JA3 fingerprint. The JA3 fingerprint is a 32-character hash derived from the TLS Client Hello of an incoming request. This fingerprint serves as a unique identifier for the client's TLS configuration. WAF calculates and logs this fingerprint for each request that has enough TLS Client Hello information for the calculation. Almost all web requests include this information.

You can use this choice only with a string match ByteMatchStatement with the PositionalConstraint set to EXACTLY.

You can obtain the JA3 fingerprint for client requests from the web ACL logs. If WAF is able to calculate the fingerprint, it includes it in the logs. For information about the logging fields, see Log fields in the WAF Developer Guide.

Provide the JA3 fingerprint string from the logs in your string match statement specification, to match with any future requests that have the same TLS configuration.

type nonrec ja4_fingerprint = {
  1. fallback_behavior : fallback_behavior;
    (*

    The match status to assign to the web request if the request doesn't have a JA4 fingerprint.

    You can specify the following fallback behaviors:

    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.
    *)
}

Available for use with Amazon CloudFront distributions and Application Load Balancers. Match against the request's JA4 fingerprint. The JA4 fingerprint is a 36-character hash derived from the TLS Client Hello of an incoming request. This fingerprint serves as a unique identifier for the client's TLS configuration. WAF calculates and logs this fingerprint for each request that has enough TLS Client Hello information for the calculation. Almost all web requests include this information.

You can use this choice only with a string match ByteMatchStatement with the PositionalConstraint set to EXACTLY.

You can obtain the JA4 fingerprint for client requests from the web ACL logs. If WAF is able to calculate the fingerprint, it includes it in the logs. For information about the logging fields, see Log fields in the WAF Developer Guide.

Provide the JA4 fingerprint string from the logs in your string match statement specification, to match with any future requests that have the same TLS configuration.

type nonrec uri_fragment = {
  1. fallback_behavior : fallback_behavior option;
    (*

    What WAF should do if it fails to completely parse the JSON body. The options are the following:

    • EVALUATE_AS_STRING - Inspect the body as plain text. WAF applies the text transformations and inspection criteria that you defined for the JSON inspection to the body text string.
    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.

    If you don't provide this setting, WAF parses and evaluates the content only up to the first parsing failure that it encounters.

    Example JSON: { "UriFragment": { "FallbackBehavior": "MATCH"} }

    WAF parsing doesn't fully validate the input JSON string, so parsing can succeed even for invalid JSON. When parsing succeeds, WAF doesn't apply the fallback behavior. For more information, see JSON body in the WAF Developer Guide.

    *)
}

Inspect fragments of the request URI. You can specify the parts of the URI fragment to inspect and you can narrow the set of URI fragments to inspect by including or excluding specific keys.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "UriFragment": { "MatchPattern": { "All": {} }, "MatchScope": "KEY", "OversizeHandling": "MATCH" }

type nonrec field_to_match = {
  1. uri_fragment : uri_fragment option;
    (*

    Inspect fragments of the request URI. You must configure scope and pattern matching filters in the UriFragment object, to define the fragment of a URI that WAF inspects.

    Only the first 8 KB (8192 bytes) of a request's URI fragments and only the first 200 URI fragments are forwarded to WAF for inspection by the underlying host service. You must configure how to handle any oversize URI fragment content in the UriFragment object. WAF applies the pattern matching filters to the cookies that it receives from the underlying host service.

    *)
  2. ja4_fingerprint : ja4_fingerprint option;
    (*

    Available for use with Amazon CloudFront distributions and Application Load Balancers. Match against the request's JA4 fingerprint. The JA4 fingerprint is a 36-character hash derived from the TLS Client Hello of an incoming request. This fingerprint serves as a unique identifier for the client's TLS configuration. WAF calculates and logs this fingerprint for each request that has enough TLS Client Hello information for the calculation. Almost all web requests include this information.

    You can use this choice only with a string match ByteMatchStatement with the PositionalConstraint set to EXACTLY.

    You can obtain the JA4 fingerprint for client requests from the web ACL logs. If WAF is able to calculate the fingerprint, it includes it in the logs. For information about the logging fields, see Log fields in the WAF Developer Guide.

    Provide the JA4 fingerprint string from the logs in your string match statement specification, to match with any future requests that have the same TLS configuration.

    *)
  3. ja3_fingerprint : ja3_fingerprint option;
    (*

    Available for use with Amazon CloudFront distributions and Application Load Balancers. Match against the request's JA3 fingerprint. The JA3 fingerprint is a 32-character hash derived from the TLS Client Hello of an incoming request. This fingerprint serves as a unique identifier for the client's TLS configuration. WAF calculates and logs this fingerprint for each request that has enough TLS Client Hello information for the calculation. Almost all web requests include this information.

    You can use this choice only with a string match ByteMatchStatement with the PositionalConstraint set to EXACTLY.

    You can obtain the JA3 fingerprint for client requests from the web ACL logs. If WAF is able to calculate the fingerprint, it includes it in the logs. For information about the logging fields, see Log fields in the WAF Developer Guide.

    Provide the JA3 fingerprint string from the logs in your string match statement specification, to match with any future requests that have the same TLS configuration.

    *)
  4. header_order : header_order option;
    (*

    Inspect a string containing the list of the request's header names, ordered as they appear in the web request that WAF receives for inspection. WAF generates the string and then uses that as the field to match component in its inspection. WAF separates the header names in the string using colons and no added spaces, for example host:user-agent:accept:authorization:referer.

    *)
  5. cookies : cookies option;
    (*

    Inspect the request cookies. You must configure scope and pattern matching filters in the Cookies object, to define the set of cookies and the parts of the cookies that WAF inspects.

    Only the first 8 KB (8192 bytes) of a request's cookies and only the first 200 cookies are forwarded to WAF for inspection by the underlying host service. You must configure how to handle any oversize cookie content in the Cookies object. WAF applies the pattern matching filters to the cookies that it receives from the underlying host service.

    *)
  6. headers : headers option;
    (*

    Inspect the request headers. You must configure scope and pattern matching filters in the Headers object, to define the set of headers to and the parts of the headers that WAF inspects.

    Only the first 8 KB (8192 bytes) of a request's headers and only the first 200 headers are forwarded to WAF for inspection by the underlying host service. You must configure how to handle any oversize header content in the Headers object. WAF applies the pattern matching filters to the headers that it receives from the underlying host service.

    *)
  7. json_body : json_body option;
    (*

    Inspect the request body as JSON. The request body immediately follows the request headers. This is the part of a request that contains any additional data that you want to send to your web server as the HTTP request body, such as data from a form.

    WAF does not support inspecting the entire contents of the web request body if the body exceeds the limit for the resource type. When a web request body is larger than the limit, the underlying host service only forwards the contents that are within the limit to WAF for inspection.

    • For Application Load Balancer and AppSync, the limit is fixed at 8 KB (8,192 bytes).
    • For CloudFront, API Gateway, Amazon Cognito, App Runner, and Verified Access, the default limit is 16 KB (16,384 bytes), and you can increase the limit for each resource type in the web ACL AssociationConfig, for additional processing fees.
    • For Amplify, use the CloudFront limit.

    For information about how to handle oversized request bodies, see the JsonBody object configuration.

    *)
  8. method_ : method_ option;
    (*

    Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.

    *)
  9. body : body option;
    (*

    Inspect the request body as plain text. The request body immediately follows the request headers. This is the part of a request that contains any additional data that you want to send to your web server as the HTTP request body, such as data from a form.

    WAF does not support inspecting the entire contents of the web request body if the body exceeds the limit for the resource type. When a web request body is larger than the limit, the underlying host service only forwards the contents that are within the limit to WAF for inspection.

    • For Application Load Balancer and AppSync, the limit is fixed at 8 KB (8,192 bytes).
    • For CloudFront, API Gateway, Amazon Cognito, App Runner, and Verified Access, the default limit is 16 KB (16,384 bytes), and you can increase the limit for each resource type in the web ACL AssociationConfig, for additional processing fees.
    • For Amplify, use the CloudFront limit.

    For information about how to handle oversized request bodies, see the Body object configuration.

    *)
  10. query_string : query_string option;
    (*

    Inspect the query string. This is the part of a URL that appears after a ? character, if any.

    *)
  11. uri_path : uri_path option;
    (*

    Inspect the request URI path. This is the part of the web request that identifies a resource, for example, /images/daily-ad.jpg.

    *)
  12. all_query_arguments : all_query_arguments option;
    (*

    Inspect all query arguments.

    *)
  13. single_query_argument : single_query_argument option;
    (*

    Inspect a single query argument. Provide the name of the query argument to inspect, such as UserName or SalesRegion. The name can be up to 30 characters long and isn't case sensitive.

    Example JSON: "SingleQueryArgument": { "Name": "myArgument" }

    *)
  14. single_header : single_header option;
    (*

    Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.

    Example JSON: "SingleHeader": { "Name": "haystack" }

    Alternately, you can filter and inspect all headers with the Headers FieldToMatch setting.

    *)
}

Specifies a web request component to be used in a rule match statement or in a logging configuration.

  • In a rule statement, this is the part of the web request that you want WAF to inspect. Include the single FieldToMatch type that you want to inspect, with additional specifications as needed, according to the type. You specify a single request component in FieldToMatch for each rule statement that requires it. To inspect more than one component of the web request, create a separate rule statement for each component.

    Example JSON for a QueryString field to match:

    "FieldToMatch": { "QueryString": {} }

    Example JSON for a Method field to match specification:

    "FieldToMatch": { "Method": { "Name": "DELETE" } }

  • In a logging configuration, this is used in the RedactedFields property to specify a field to redact from the logging records. For this use case, note the following:

    • Even though all FieldToMatch settings are available, the only valid settings for field redaction are UriPath, QueryString, SingleHeader, and Method.
    • In this documentation, the descriptions of the individual fields talk about specifying the web request component to inspect, but for field redaction, you are specifying the component type to redact from the logs.
    • If you have request sampling enabled, the redacted fields configuration for logging has no impact on sampling. You can only exclude fields from request sampling by disabling sampling in the web ACL visibility configuration or by configuring data protection for the web ACL.
type nonrec text_transformation_priority = int
type nonrec text_transformation_type =
  1. | UTF8_TO_UNICODE
  2. | URL_DECODE_UNI
  3. | BASE64_DECODE_EXT
  4. | REPLACE_NULLS
  5. | REMOVE_NULLS
  6. | NORMALIZE_PATH_WIN
  7. | NORMALIZE_PATH
  8. | JS_DECODE
  9. | CSS_DECODE
  10. | SQL_HEX_DECODE
  11. | ESCAPE_SEQ_DECODE
  12. | REPLACE_COMMENTS
  13. | MD5
  14. | HEX_DECODE
  15. | BASE64_DECODE
  16. | URL_DECODE
  17. | CMD_LINE
  18. | LOWERCASE
  19. | HTML_ENTITY_DECODE
  20. | COMPRESS_WHITE_SPACE
  21. | NONE
type nonrec text_transformation = {
  1. type_ : text_transformation_type;
    (*

    For detailed descriptions of each of the transformation types, see Text transformations in the WAF Developer Guide.

    *)
  2. priority : text_transformation_priority;
    (*

    Sets the relative processing order for multiple transformations. WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content. The priorities don't need to be consecutive, but they must all be different.

    *)
}

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.

type nonrec text_transformations = text_transformation list
type nonrec xss_match_statement = {
  1. text_transformations : text_transformations;
    (*

    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 FieldToMatch 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.

    *)
  2. field_to_match : field_to_match;
    (*

    The part of the web request that you want WAF to inspect.

    *)
}

A rule statement that inspects for cross-site scripting (XSS) attacks. In XSS attacks, the attacker uses vulnerabilities in a benign website as a vehicle to inject malicious client-site scripts into other legitimate web browsers.

type nonrec entity_name = string
type nonrec entity_id = string
type nonrec entity_description = string
type nonrec lock_token = string
type nonrec resource_arn = string
type nonrec web_acl_summary = {
  1. ar_n : resource_arn option;
    (*

    The Amazon Resource Name (ARN) of the entity.

    *)
  2. lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  3. description : entity_description option;
    (*

    A description of the web ACL that helps with identification.

    *)
  4. id : entity_id option;
    (*

    The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  5. name : entity_name option;
    (*

    The name of the web ACL. You cannot change the name of a web ACL after you create it.

    *)
}

High-level information about a WebACL, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a WebACL, and the ARN, that you provide to operations like AssociateWebACL.

type nonrec web_acl_summaries = web_acl_summary list
type nonrec response_status_code = int
type nonrec custom_http_header_name = string
type nonrec custom_http_header_value = string
type nonrec custom_http_header = {
  1. value : custom_http_header_value;
    (*

    The value of the custom header.

    *)
  2. name : custom_http_header_name;
    (*

    The name of the custom header.

    For custom request header insertion, when WAF inserts the header into the request, it prefixes this name x-amzn-waf-, to avoid confusion with the headers that are already in the request. For example, for the header name sample, WAF inserts the header x-amzn-waf-sample.

    *)
}

A custom header for custom request and response handling. This is used in CustomResponse and CustomRequestHandling.

type nonrec custom_http_headers = custom_http_header list
type nonrec custom_response = {
  1. response_headers : custom_http_headers option;
    (*

    The HTTP headers to use in the response. You can specify any header name except for content-type. Duplicate header names are not allowed.

    For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

    *)
  2. custom_response_body_key : entity_name option;
    (*

    References the response body that you want WAF to return to the web request client. You can define a custom response for a rule action or a default web ACL action that is set to block. To do this, you first define the response body key and value in the CustomResponseBodies setting for the WebACL or RuleGroup where you want to use it. Then, in the rule action or web ACL default action BlockAction setting, you reference the response body using this key.

    *)
  3. response_code : response_status_code;
    (*

    The HTTP status code to return to the client.

    For a list of status codes that you can use in your custom responses, see Supported status codes for custom response in the WAF Developer Guide.

    *)
}

A custom response to send to the client. You can define a custom response for rule actions and default web ACL actions that are set to BlockAction.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

type nonrec block_action = {
  1. custom_response : custom_response option;
    (*

    Defines a custom response for the web request.

    For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

    *)
}

Specifies that WAF should block the request and optionally defines additional custom handling for the response to the web request.

This is used in the context of other settings, for example to specify values for RuleAction and web ACL DefaultAction.

type nonrec custom_request_handling = {
  1. insert_headers : custom_http_headers;
    (*

    The HTTP headers to insert into the request. Duplicate header names are not allowed.

    For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

    *)
}

Custom request handling behavior that inserts custom headers into a web request. You can add custom request handling for WAF to use when the rule action doesn't block the request. For example, CaptchaAction for requests with valid t okens, and AllowAction.

For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

type nonrec allow_action = {
  1. custom_request_handling : custom_request_handling option;
    (*

    Defines custom handling for the web request.

    For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

    *)
}

Specifies that WAF should allow the request and optionally defines additional custom handling for the request.

This is used in the context of other settings, for example to specify values for RuleAction and web ACL DefaultAction.

type nonrec default_action = {
  1. allow : allow_action option;
    (*

    Specifies that WAF should allow requests by default.

    *)
  2. block : block_action option;
    (*

    Specifies that WAF should block requests by default.

    *)
}

In a WebACL, this is the action that you want WAF to perform when a web request doesn't match any of the rules in the WebACL. The default action must be a terminating action.

type nonrec rule_priority = int
type nonrec search_string = bytes
type nonrec positional_constraint =
  1. | CONTAINS_WORD
  2. | CONTAINS
  3. | ENDS_WITH
  4. | STARTS_WITH
  5. | EXACTLY
type nonrec byte_match_statement = {
  1. positional_constraint : positional_constraint;
    (*

    The area within the portion of the web request that you want WAF to search for SearchString. Valid values include the following:

    CONTAINS

    The specified part of the web request must include the value of SearchString, but the location doesn't matter.

    CONTAINS_WORD

    The specified part of the web request must include the value of SearchString, and SearchString must contain only alphanumeric characters or underscore (A-Z, a-z, 0-9, or _). In addition, SearchString must be a word, which means that both of the following are true:

    • SearchString is at the beginning of the specified part of the web request or is preceded by a character other than an alphanumeric character or underscore (_). Examples include the value of a header and ;BadBot.
    • SearchString is at the end of the specified part of the web request or is followed by a character other than an alphanumeric character or underscore (_), for example, BadBot; and -BadBot;.

    EXACTLY

    The value of the specified part of the web request must exactly match the value of SearchString.

    STARTS_WITH

    The value of SearchString must appear at the beginning of the specified part of the web request.

    ENDS_WITH

    The value of SearchString must appear at the end of the specified part of the web request.

    *)
  2. text_transformations : text_transformations;
    (*

    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 FieldToMatch 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.

    *)
  3. field_to_match : field_to_match;
    (*

    The part of the web request that you want WAF to inspect.

    *)
  4. search_string : search_string;
    (*

    A string value that you want WAF to search for. WAF searches only in the part of web requests that you designate for inspection in FieldToMatch. The maximum length of the value is 200 bytes.

    Valid values depend on the component that you specify for inspection in FieldToMatch:

    • Method: The HTTP method that you want WAF to search for. This indicates the type of operation specified in the request.
    • UriPath: The value that you want WAF to search for in the URI path, for example, /images/daily-ad.jpg.
    • JA3Fingerprint: Available for use with Amazon CloudFront distributions and Application Load Balancers. Match against the request's JA3 fingerprint. The JA3 fingerprint is a 32-character hash derived from the TLS Client Hello of an incoming request. This fingerprint serves as a unique identifier for the client's TLS configuration. You can use this choice only with a string match ByteMatchStatement with the PositionalConstraint set to EXACTLY.

      You can obtain the JA3 fingerprint for client requests from the web ACL logs. If WAF is able to calculate the fingerprint, it includes it in the logs. For information about the logging fields, see Log fields in the WAF Developer Guide.

    • HeaderOrder: The list of header names to match for. WAF creates a string that contains the ordered list of header names, from the headers in the web request, and then matches against that string.

    If SearchString includes alphabetic characters A-Z and a-z, note that the value is case sensitive.

    If you're using the WAF API

    Specify a base64-encoded version of the value. The maximum length of the value before you base64-encode it is 200 bytes.

    For example, suppose the value of Type is HEADER and the value of Data is User-Agent. If you want to search the User-Agent header for the value BadBot, you base64-encode BadBot using MIME base64-encoding and include the resulting value, QmFkQm90, in the value of SearchString.

    If you're using the CLI or one of the Amazon Web Services SDKs

    The value that you want WAF to search for. The SDK automatically base64 encodes the value.

    *)
}

A rule statement that defines a string match search for WAF to apply to web requests. The byte match statement provides the bytes to search for, the location in requests that you want WAF to search, and other settings. The bytes to search for are typically a string that corresponds with ASCII characters. In the WAF console and the developer guide, this is called a string match statement.

type nonrec sensitivity_level =
  1. | HIGH
  2. | LOW
type nonrec sqli_match_statement = {
  1. sensitivity_level : sensitivity_level option;
    (*

    The sensitivity that you want WAF to use to inspect for SQL injection attacks.

    HIGH detects more attacks, but might generate more false positives, especially if your web requests frequently contain unusual strings. For information about identifying and mitigating false positives, see Testing and tuning in the WAF Developer Guide.

    LOW is generally a better choice for resources that already have other protections against SQL injection attacks or that have a low tolerance for false positives.

    Default: LOW

    *)
  2. text_transformations : text_transformations;
    (*

    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 FieldToMatch 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.

    *)
  3. field_to_match : field_to_match;
    (*

    The part of the web request that you want WAF to inspect.

    *)
}

A rule statement that inspects for malicious SQL code. Attackers insert malicious SQL code into web requests to do things like modify your database or extract data from it.

type nonrec comparison_operator =
  1. | GT
  2. | GE
  3. | LT
  4. | LE
  5. | NE
  6. | EQ
type nonrec size = int
type nonrec size_constraint_statement = {
  1. text_transformations : text_transformations;
    (*

    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 FieldToMatch 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.

    *)
  2. size : size;
    (*

    The size, in byte, to compare to the request part, after any transformations.

    *)
  3. comparison_operator : comparison_operator;
    (*

    The operator to use to compare the request part to the size setting.

    *)
  4. field_to_match : field_to_match;
    (*

    The part of the web request that you want WAF to inspect.

    *)
}

A rule statement that compares a number of bytes against the size of a request component, using a comparison operator, such as greater than (>) or less than (<). For example, you can use a size constraint statement to look for query strings that are longer than 100 bytes.

If you configure WAF to inspect the request body, WAF inspects only the number of bytes in the body up to the limit for the web ACL and protected resource type. If you know that the request body for your web requests should never exceed the inspection limit, you can use a size constraint statement to block requests that have a larger request body size. For more information about the inspection limits, see Body and JsonBody settings for the FieldToMatch data type.

If you choose URI for the value of Part of the request to filter on, the slash (/) in the URI counts as one character. For example, the URI /logo.jpg is nine characters long.

type nonrec country_code =
  1. | XK
  2. | ZW
  3. | ZM
  4. | YE
  5. | EH
  6. | WF
  7. | VI
  8. | VG
  9. | VN
  10. | VE
  11. | VU
  12. | UZ
  13. | UY
  14. | UM
  15. | US
  16. | GB
  17. | AE
  18. | UA
  19. | UG
  20. | TV
  21. | TC
  22. | TM
  23. | TR
  24. | TN
  25. | TT
  26. | TO
  27. | TK
  28. | TG
  29. | TL
  30. | TH
  31. | TZ
  32. | TJ
  33. | TW
  34. | SY
  35. | CH
  36. | SE
  37. | SZ
  38. | SJ
  39. | SR
  40. | SD
  41. | LK
  42. | ES
  43. | SS
  44. | GS
  45. | ZA
  46. | SO
  47. | SB
  48. | SI
  49. | SK
  50. | SX
  51. | SG
  52. | SL
  53. | SC
  54. | RS
  55. | SN
  56. | SA
  57. | ST
  58. | SM
  59. | WS
  60. | VC
  61. | PM
  62. | MF
  63. | LC
  64. | KN
  65. | SH
  66. | BL
  67. | RW
  68. | RU
  69. | RO
  70. | RE
  71. | QA
  72. | PR
  73. | PT
  74. | PL
  75. | PN
  76. | PH
  77. | PE
  78. | PY
  79. | PG
  80. | PA
  81. | PS
  82. | PW
  83. | PK
  84. | OM
  85. | NO
  86. | MP
  87. | NF
  88. | NU
  89. | NG
  90. | NE
  91. | NI
  92. | NZ
  93. | NC
  94. | NL
  95. | NP
  96. | NR
  97. | NA
  98. | MM
  99. | MZ
  100. | MA
  101. | MS
  102. | ME
  103. | MN
  104. | MC
  105. | MD
  106. | FM
  107. | MX
  108. | YT
  109. | MU
  110. | MR
  111. | MQ
  112. | MH
  113. | MT
  114. | ML
  115. | MV
  116. | MY
  117. | MW
  118. | MG
  119. | MK
  120. | MO
  121. | LU
  122. | LT
  123. | LI
  124. | LY
  125. | LR
  126. | LS
  127. | LB
  128. | LV
  129. | LA
  130. | KG
  131. | KW
  132. | KR
  133. | KP
  134. | KI
  135. | KE
  136. | KZ
  137. | JO
  138. | JE
  139. | JP
  140. | JM
  141. | IT
  142. | IL
  143. | IM
  144. | IE
  145. | IQ
  146. | IR
  147. | ID
  148. | IN
  149. | IS
  150. | HU
  151. | HK
  152. | HN
  153. | VA
  154. | HM
  155. | HT
  156. | GY
  157. | GW
  158. | GN
  159. | GG
  160. | GT
  161. | GU
  162. | GP
  163. | GD
  164. | GL
  165. | GR
  166. | GI
  167. | GH
  168. | DE
  169. | GE
  170. | GM
  171. | GA
  172. | TF
  173. | PF
  174. | GF
  175. | FR
  176. | FI
  177. | FJ
  178. | FO
  179. | FK
  180. | ET
  181. | EE
  182. | ER
  183. | GQ
  184. | SV
  185. | EG
  186. | EC
  187. | DO
  188. | DM
  189. | DJ
  190. | DK
  191. | CZ
  192. | CY
  193. | CW
  194. | CU
  195. | HR
  196. | CI
  197. | CR
  198. | CK
  199. | CD
  200. | CG
  201. | KM
  202. | CO
  203. | CC
  204. | CX
  205. | CN
  206. | CL
  207. | TD
  208. | CF
  209. | KY
  210. | CV
  211. | CA
  212. | CM
  213. | KH
  214. | BI
  215. | BF
  216. | BG
  217. | BN
  218. | IO
  219. | BR
  220. | BV
  221. | BW
  222. | BA
  223. | BQ
  224. | BO
  225. | BT
  226. | BM
  227. | BJ
  228. | BZ
  229. | BE
  230. | BY
  231. | BB
  232. | BD
  233. | BH
  234. | BS
  235. | AZ
  236. | AT
  237. | AU
  238. | AW
  239. | AM
  240. | AR
  241. | AG
  242. | AQ
  243. | AI
  244. | AO
  245. | AD
  246. | AS
  247. | DZ
  248. | AL
  249. | AX
  250. | AF
type nonrec country_codes = country_code list
type nonrec forwarded_ip_header_name = string
type nonrec forwarded_ip_config = {
  1. fallback_behavior : fallback_behavior;
    (*

    The match status to assign to the web request if the request doesn't have a valid IP address in the specified position.

    If the specified header isn't present in the request, WAF doesn't apply the rule to the web request at all.

    You can specify the following fallback behaviors:

    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.
    *)
  2. header_name : forwarded_ip_header_name;
    (*

    The name of the HTTP header to use for the IP address. For example, to use the X-Forwarded-For (XFF) header, set this to X-Forwarded-For.

    If the specified header isn't present in the request, WAF doesn't apply the rule to the web request at all.

    *)
}

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.

If the specified header isn't present in the request, WAF doesn't apply the rule to the web request at all.

This configuration is used for GeoMatchStatement, AsnMatchStatement, and RateBasedStatement. For IPSetReferenceStatement, use IPSetForwardedIPConfig instead.

WAF only evaluates the first IP address found in the specified HTTP header.

type nonrec geo_match_statement = {
  1. forwarded_ip_config : forwarded_ip_config option;
    (*

    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.

    If the specified header isn't present in the request, WAF doesn't apply the rule to the web request at all.

    *)
  2. country_codes : country_codes option;
    (*

    An array of two-character country codes that you want to match against, for example, [ "US", "CN" ], from the alpha-2 country ISO codes of the ISO 3166 international standard.

    When you use a geo match statement just for the region and country labels that it adds to requests, you still have to supply a country code for the rule to evaluate. In this case, you configure the rule to only count matching requests, but it will still generate logging and count metrics for any matches. You can reduce the logging and metrics that the rule produces by specifying a country that's unlikely to be a source of traffic to your site.

    *)
}

A rule statement that labels web requests by country and region and that matches against web requests based on country code. A geo match rule labels every request that it inspects regardless of whether it finds a match.

  • To manage requests only by country, you can use this statement by itself and specify the countries that you want to match against in the CountryCodes array.
  • Otherwise, configure your geo match rule with Count action so that it only labels requests. Then, add one or more label match rules to run after the geo match rule and configure them to match against the geographic labels and handle the requests as needed.

WAF labels requests using the alpha-2 country and region codes from the International Organization for Standardization (ISO) 3166 standard. WAF determines the codes using either the IP address in the web request origin or, if you specify it, the address in the geo match ForwardedIPConfig.

If you use the web request origin, the label formats are

awswaf:clientip:geo:region:-

and

awswaf:clientip:geo:country:

.

If you use a forwarded IP address, the label formats are

awswaf:forwardedip:geo:region:-

and

awswaf:forwardedip:geo:country:

.

For additional details, see Geographic match rule statement in the WAF Developer Guide.

type nonrec excluded_rule = {
  1. name : entity_name;
    (*

    The name of the rule whose action you want to override to Count.

    *)
}

Specifies a single rule in a rule group whose action you want to override to Count.

Instead of this option, use RuleActionOverrides. It accepts any valid action setting, including Count.

type nonrec excluded_rules = excluded_rule list
type nonrec count_action = {
  1. custom_request_handling : custom_request_handling option;
    (*

    Defines custom handling for the web request.

    For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

    *)
}

Specifies that WAF should count the request. Optionally defines additional custom handling for the request.

This is used in the context of other settings, for example to specify values for RuleAction and web ACL DefaultAction.

type nonrec captcha_action = {
  1. custom_request_handling : custom_request_handling option;
    (*

    Defines custom handling for the web request, used when the CAPTCHA inspection determines that the request's token is valid and unexpired.

    For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

    *)
}

Specifies that WAF should run a CAPTCHA check against the request:

  • If the request includes a valid, unexpired CAPTCHA token, WAF applies any custom request handling and labels that you've configured and then allows the web request inspection to proceed to the next rule, similar to a CountAction.
  • If the request doesn't include a valid, unexpired token, WAF discontinues the web ACL evaluation of the request and blocks it from going to its intended destination.

    WAF generates a response that it sends back to the client, which includes the following:

    • The header x-amzn-waf-action with a value of captcha.
    • The HTTP status code 405 Method Not Allowed.
    • If the request contains an Accept header with a value of text/html, the response includes a CAPTCHA JavaScript page interstitial.

You can configure the expiration time in the CaptchaConfig ImmunityTimeProperty setting at the rule and web ACL level. The rule setting overrides the web ACL setting.

This action option is available for rules. It isn't available for web ACL default actions.

type nonrec challenge_action = {
  1. custom_request_handling : custom_request_handling option;
    (*

    Defines custom handling for the web request, used when the challenge inspection determines that the request's token is valid and unexpired.

    For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

    *)
}

Specifies that WAF should run a Challenge check against the request to verify that the request is coming from a legitimate client session:

  • If the request includes a valid, unexpired challenge token, WAF applies any custom request handling and labels that you've configured and then allows the web request inspection to proceed to the next rule, similar to a CountAction.
  • If the request doesn't include a valid, unexpired challenge token, WAF discontinues the web ACL evaluation of the request and blocks it from going to its intended destination.

    WAF then generates a challenge response that it sends back to the client, which includes the following:

    • The header x-amzn-waf-action with a value of challenge.
    • The HTTP status code 202 Request Accepted.
    • If the request contains an Accept header with a value of text/html, the response includes a JavaScript page interstitial with a challenge script.

    Challenges run silent browser interrogations in the background, and don't generally affect the end user experience.

    A challenge enforces token acquisition using an interstitial JavaScript challenge that inspects the client session for legitimate behavior. The challenge blocks bots or at least increases the cost of operating sophisticated bots.

    After the client session successfully responds to the challenge, it receives a new token from WAF, which the challenge script uses to resubmit the original request.

You can configure the expiration time in the ChallengeConfig ImmunityTimeProperty setting at the rule and web ACL level. The rule setting overrides the web ACL setting.

This action option is available for rules. It isn't available for web ACL default actions.

type nonrec rule_action = {
  1. challenge : challenge_action option;
    (*

    Instructs WAF to run a Challenge check against the web request.

    *)
  2. captcha : captcha_action option;
    (*

    Instructs WAF to run a CAPTCHA check against the web request.

    *)
  3. count : count_action option;
    (*

    Instructs WAF to count the web request and then continue evaluating the request using the remaining rules in the web ACL.

    *)
  4. allow : allow_action option;
    (*

    Instructs WAF to allow the web request.

    *)
  5. block : block_action option;
    (*

    Instructs WAF to block the web request.

    *)
}

The action that WAF should take on a web request when it matches a rule's statement. Settings at the web ACL level can override the rule action setting.

type nonrec rule_action_override = {
  1. action_to_use : rule_action;
    (*

    The override action to use, in place of the configured action of the rule in the rule group.

    *)
  2. name : entity_name;
    (*

    The name of the rule to override.

    Take care to verify the rule names in your overrides. If you provide a rule name that doesn't match the name of any rule in the rule group, WAF doesn't return an error and doesn't apply the override setting.

    *)
}

Action setting to use in the place of a rule action that is configured inside the rule group. You specify one override for each rule whose action you want to change.

Take care to verify the rule names in your overrides. If you provide a rule name that doesn't match the name of any rule in the rule group, WAF doesn't return an error and doesn't apply the override setting.

You can use overrides for testing, for example you can override all of rule actions to Count and then monitor the resulting count metrics to understand how the rule group would handle your web traffic. You can also permanently override some or all actions, to modify how the rule group manages your web traffic.

type nonrec rule_action_overrides = rule_action_override list
type nonrec rule_group_reference_statement = {
  1. rule_action_overrides : rule_action_overrides option;
    (*

    Action settings to use in the place of the rule actions that are configured inside the rule group. You specify one override for each rule whose action you want to change.

    Verify the rule names in your overrides carefully. With managed rule groups, WAF silently ignores any override that uses an invalid rule name. With customer-owned rule groups, invalid rule names in your overrides will cause web ACL updates to fail. An invalid rule name is any name that doesn't exactly match the case-sensitive name of an existing rule in the rule group.

    You can use overrides for testing, for example you can override all of rule actions to Count and then monitor the resulting count metrics to understand how the rule group would handle your web traffic. You can also permanently override some or all actions, to modify how the rule group manages your web traffic.

    *)
  2. excluded_rules : excluded_rules option;
    (*

    Rules in the referenced rule group whose actions are set to Count.

    Instead of this option, use RuleActionOverrides. It accepts any valid action setting, including Count.

    *)
  3. ar_n : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the entity.

    *)
}

A rule statement used to run the rules that are defined in a RuleGroup. To use this, create a rule group with your rules, then provide the ARN of the rule group in this statement.

You cannot nest a RuleGroupReferenceStatement, for example for use inside a NotStatement or OrStatement. You cannot use a rule group 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.

type nonrec forwarded_ip_position =
  1. | ANY
  2. | LAST
  3. | FIRST
type nonrec ip_set_forwarded_ip_config = {
  1. position : forwarded_ip_position;
    (*

    The position in the header to search for the IP address. The header can contain IP addresses of the original client and also of proxies. For example, the header value could be 10.1.1.1, 127.0.0.0, 10.10.10.10 where the first IP address identifies the original client and the rest identify proxies that the request went through.

    The options for this setting are the following:

    • FIRST - Inspect the first IP address in the list of IP addresses in the header. This is usually the client's original IP.
    • LAST - Inspect the last IP address in the list of IP addresses in the header.
    • ANY - Inspect all IP addresses in the header for a match. If the header contains more than 10 IP addresses, WAF inspects the last 10.
    *)
  2. fallback_behavior : fallback_behavior;
    (*

    The match status to assign to the web request if the request doesn't have a valid IP address in the specified position.

    If the specified header isn't present in the request, WAF doesn't apply the rule to the web request at all.

    You can specify the following fallback behaviors:

    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.
    *)
  3. header_name : forwarded_ip_header_name;
    (*

    The name of the HTTP header to use for the IP address. For example, to use the X-Forwarded-For (XFF) header, set this to X-Forwarded-For.

    If the specified header isn't present in the request, WAF doesn't apply the rule to the web request at all.

    *)
}

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.

If the specified header isn't present in the request, WAF doesn't apply the rule to the web request at all.

This configuration is used only for IPSetReferenceStatement. For GeoMatchStatement and RateBasedStatement, use ForwardedIPConfig instead.

type nonrec ip_set_reference_statement = {
  1. ip_set_forwarded_ip_config : ip_set_forwarded_ip_config option;
    (*

    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.

    If the specified header isn't present in the request, WAF doesn't apply the rule to the web request at all.

    *)
  2. ar_n : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the IPSet that this statement references.

    *)
}

A rule statement used to detect web requests coming from particular IP addresses or address ranges. To use this, create an IPSet that specifies the addresses you want to detect, then use the ARN of that set in this statement. To create an IP set, see CreateIPSet.

Each IP set rule statement references an IP set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.

type nonrec regex_pattern_set_reference_statement = {
  1. text_transformations : text_transformations;
    (*

    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 FieldToMatch 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.

    *)
  2. field_to_match : field_to_match;
    (*

    The part of the web request that you want WAF to inspect.

    *)
  3. ar_n : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the RegexPatternSet that this statement references.

    *)
}

A rule statement used to search web request components for matches with regular expressions. To use this, create a RegexPatternSet that specifies the expressions that you want to detect, then use the ARN of that set in this statement. A web request matches the pattern set rule statement if the request component matches any of the patterns in the set. To create a regex pattern set, see CreateRegexPatternSet.

Each regex pattern set rule statement references a regex pattern set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.

type nonrec rate_limit = int
type nonrec evaluation_window_sec = int
type nonrec rate_based_statement_aggregate_key_type =
  1. | CONSTANT
  2. | CUSTOM_KEYS
  3. | FORWARDED_IP
  4. | IP
type nonrec rate_limit_header = {
  1. text_transformations : text_transformations;
    (*

    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 FieldToMatch 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.

    *)
  2. name : field_to_match_data;
    (*

    The name of the header to use.

    *)
}

Specifies a header as an aggregate key for a rate-based rule. Each distinct value in the header contributes to the aggregation instance. If you use a single header as your custom key, then each value fully defines an aggregation instance.

Specifies a cookie as an aggregate key for a rate-based rule. Each distinct value in the cookie contributes to the aggregation instance. If you use a single cookie as your custom key, then each value fully defines an aggregation instance.

type nonrec rate_limit_query_argument = {
  1. text_transformations : text_transformations;
    (*

    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 FieldToMatch 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.

    *)
  2. name : field_to_match_data;
    (*

    The name of the query argument to use.

    *)
}

Specifies a query argument in the request as an aggregate key for a rate-based rule. Each distinct value for the named query argument contributes to the aggregation instance. If you use a single query argument as your custom key, then each value fully defines an aggregation instance.

type nonrec rate_limit_query_string = {
  1. text_transformations : text_transformations;
    (*

    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 FieldToMatch 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.

    *)
}

Specifies the request's query string as an aggregate key for a rate-based rule. Each distinct string contributes to the aggregation instance. If you use just the query string as your custom key, then each string fully defines an aggregation instance.

type nonrec rate_limit_http_method = unit
type nonrec rate_limit_forwarded_i_p = unit
type nonrec rate_limit_i_p = unit
type nonrec label_namespace = string
type nonrec rate_limit_label_namespace = {
  1. namespace : label_namespace;
    (*

    The namespace to use for aggregation.

    *)
}

Specifies a label namespace to use as an aggregate key for a rate-based rule. Each distinct fully qualified label name that has the specified label namespace contributes to the aggregation instance. If you use just one label namespace as your custom key, then each label name fully defines an aggregation instance.

This uses only labels that have been added to the request by rules that are evaluated before this rate-based rule in the web ACL.

For information about label namespaces and names, see Label syntax and naming requirements in the WAF Developer Guide.

type nonrec rate_limit_uri_path = {
  1. text_transformations : text_transformations;
    (*

    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 FieldToMatch 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.

    *)
}

Specifies the request's URI path as an aggregate key for a rate-based rule. Each distinct URI path contributes to the aggregation instance. If you use just the URI path as your custom key, then each URI path fully defines an aggregation instance.

type nonrec rate_limit_ja3_fingerprint = {
  1. fallback_behavior : fallback_behavior;
    (*

    The match status to assign to the web request if there is insufficient TSL Client Hello information to compute the JA3 fingerprint.

    You can specify the following fallback behaviors:

    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.
    *)
}

Use the request's JA3 fingerprint derived from the TLS Client Hello of an incoming request as an aggregate key. If you use a single JA3 fingerprint as your custom key, then each value fully defines an aggregation instance.

type nonrec rate_limit_ja4_fingerprint = {
  1. fallback_behavior : fallback_behavior;
    (*

    The match status to assign to the web request if there is insufficient TSL Client Hello information to compute the JA4 fingerprint.

    You can specify the following fallback behaviors:

    • MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request.
    • NO_MATCH - Treat the web request as not matching the rule statement.
    *)
}

Use the request's JA4 fingerprint derived from the TLS Client Hello of an incoming request as an aggregate key. If you use a single JA4 fingerprint as your custom key, then each value fully defines an aggregation instance.

type nonrec rate_limit_asn = unit
type nonrec rate_based_statement_custom_key = {
  1. as_n : rate_limit_asn option;
    (*

    Use an Autonomous System Number (ASN) derived from the request's originating or forwarded IP address as an aggregate key. Each distinct ASN contributes to the aggregation instance.

    *)
  2. ja4_fingerprint : rate_limit_ja4_fingerprint option;
    (*

    Use the request's JA4 fingerprint as an aggregate key. If you use a single JA4 fingerprint as your custom key, then each value fully defines an aggregation instance.

    *)
  3. ja3_fingerprint : rate_limit_ja3_fingerprint option;
    (*

    Use the request's JA3 fingerprint as an aggregate key. If you use a single JA3 fingerprint as your custom key, then each value fully defines an aggregation instance.

    *)
  4. uri_path : rate_limit_uri_path option;
    (*

    Use the request's URI path as an aggregate key. Each distinct URI path contributes to the aggregation instance. If you use just the URI path as your custom key, then each URI path fully defines an aggregation instance.

    *)
  5. label_namespace : rate_limit_label_namespace option;
    (*

    Use the specified label namespace as an aggregate key. Each distinct fully qualified label name that has the specified label namespace contributes to the aggregation instance. If you use just one label namespace as your custom key, then each label name fully defines an aggregation instance.

    This uses only labels that have been added to the request by rules that are evaluated before this rate-based rule in the web ACL.

    For information about label namespaces and names, see Label syntax and naming requirements in the WAF Developer Guide.

    *)
  6. i_p : rate_limit_i_p option;
    (*

    Use the request's originating IP address as an aggregate key. Each distinct IP address contributes to the aggregation instance.

    When you specify an IP or forwarded IP in the custom key settings, you must also specify at least one other key to use. You can aggregate on only the IP address by specifying IP in your rate-based statement's AggregateKeyType.

    *)
  7. forwarded_i_p : rate_limit_forwarded_i_p option;
    (*

    Use the first IP address in an HTTP header as an aggregate key. Each distinct forwarded IP address contributes to the aggregation instance.

    When you specify an IP or forwarded IP in the custom key settings, you must also specify at least one other key to use. You can aggregate on only the forwarded IP address by specifying FORWARDED_IP in your rate-based statement's AggregateKeyType.

    With this option, you must specify the header to use in the rate-based rule's ForwardedIPConfig property.

    *)
  8. http_method : rate_limit_http_method option;
    (*

    Use the request's HTTP method as an aggregate key. Each distinct HTTP method contributes to the aggregation instance. If you use just the HTTP method as your custom key, then each method fully defines an aggregation instance.

    *)
  9. query_string : rate_limit_query_string option;
    (*

    Use the request's query string as an aggregate key. Each distinct string contributes to the aggregation instance. If you use just the query string as your custom key, then each string fully defines an aggregation instance.

    *)
  10. query_argument : rate_limit_query_argument option;
    (*

    Use the specified query argument as an aggregate key. Each distinct value for the named query argument contributes to the aggregation instance. If you use a single query argument as your custom key, then each value fully defines an aggregation instance.

    *)
  11. cookie : rate_limit_cookie option;
    (*

    Use the value of a cookie in the request as an aggregate key. Each distinct value in the cookie contributes to the aggregation instance. If you use a single cookie as your custom key, then each value fully defines an aggregation instance.

    *)
  12. header : rate_limit_header option;
    (*

    Use the value of a header in the request as an aggregate key. Each distinct value in the header contributes to the aggregation instance. If you use a single header as your custom key, then each value fully defines an aggregation instance.

    *)
}

Specifies a single custom aggregate key for a rate-base rule.

Web requests that are missing any of the components specified in the aggregation keys are omitted from the rate-based rule evaluation and handling.

type nonrec rate_based_statement_custom_keys = rate_based_statement_custom_key list
type nonrec vendor_name = string
type nonrec version_key_string = string
type nonrec login_path_string = string
type nonrec payload_type =
  1. | FORM_ENCODED
  2. | JSON
type nonrec field_identifier = string
type nonrec username_field = {
  1. identifier : field_identifier;
    (*

    The name of the username field.

    How you specify this depends on the request inspection payload type.

    • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

      For example, for the JSON payload { "form": { "username": "THE_USERNAME" } }, the username field specification is /form/username.

    • For form encoded payload types, use the HTML form names.

      For example, for an HTML form with the input element named username1, the username field specification is username1

    *)
}

The name of the field in the request payload that contains your customer's username.

This data type is used in the RequestInspection and RequestInspectionACFP data types.

type nonrec password_field = {
  1. identifier : field_identifier;
    (*

    The name of the password field.

    How you specify this depends on the request inspection payload type.

    • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

      For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }, the password field specification is /form/password.

    • For form encoded payload types, use the HTML form names.

      For example, for an HTML form with the input element named password1, the password field specification is password1.

    *)
}

The name of the field in the request payload that contains your customer's password.

This data type is used in the RequestInspection and RequestInspectionACFP data types.

type nonrec inspection_level =
  1. | TARGETED
  2. | COMMON
type nonrec enable_machine_learning = bool
type nonrec aws_managed_rules_bot_control_rule_set = {
  1. enable_machine_learning : enable_machine_learning option;
    (*

    Applies only to the targeted inspection level.

    Determines whether to use machine learning (ML) to analyze your web traffic for bot-related activity. Machine learning is required for the Bot Control rules TGT_ML_CoordinatedActivityLow and TGT_ML_CoordinatedActivityMedium, which inspect for anomalous behavior that might indicate distributed, coordinated bot activity.

    For more information about this choice, see the listing for these rules in the table at Bot Control rules listing in the WAF Developer Guide.

    Default: TRUE

    *)
  2. inspection_level : inspection_level;
    (*

    The inspection level to use for the Bot Control rule group. The common level is the least expensive. The targeted level includes all common level rules and adds rules with more advanced inspection criteria. For details, see WAF Bot Control rule group in the WAF Developer Guide.

    *)
}

Details for your use of the Bot Control managed rule group, AWSManagedRulesBotControlRuleSet. This configuration is used in ManagedRuleGroupConfig.

For additional information about this and the other intelligent threat mitigation rule groups, see Intelligent threat mitigation in WAF and Amazon Web Services Managed Rules rule groups list in the WAF Developer Guide.

type nonrec string_ = string
type nonrec request_inspection = {
  1. password_field : password_field;
    (*

    The name of the field in the request payload that contains your customer's password.

    How you specify this depends on the request inspection payload type.

    • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

      For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }, the password field specification is /form/password.

    • For form encoded payload types, use the HTML form names.

      For example, for an HTML form with the input element named password1, the password field specification is password1.

    *)
  2. username_field : username_field;
    (*

    The name of the field in the request payload that contains your customer's username.

    How you specify this depends on the request inspection payload type.

    • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

      For example, for the JSON payload { "form": { "username": "THE_USERNAME" } }, the username field specification is /form/username.

    • For form encoded payload types, use the HTML form names.

      For example, for an HTML form with the input element named username1, the username field specification is username1

    *)
  3. payload_type : payload_type;
    (*

    The payload type for your login endpoint, either JSON or form encoded.

    *)
}

The criteria for inspecting login requests, used by the ATP rule group to validate credentials usage.

This is part of the AWSManagedRulesATPRuleSet configuration in ManagedRuleGroupConfig.

In these settings, you specify how your application accepts login attempts by providing the request payload type and the names of the fields within the request body where the username and password are provided.

type nonrec success_code = int
type nonrec response_inspection_status_code_success_codes = success_code list
type nonrec failure_code = int
type nonrec response_inspection_status_code_failure_codes = failure_code list
type nonrec response_inspection_status_code = {
  1. failure_codes : response_inspection_status_code_failure_codes;
    (*

    Status codes in the response that indicate a failed login or account creation attempt. To be counted as a failure, the response status code must match one of these. Each code must be unique among the success and failure status codes.

    JSON example: "FailureCodes": [ 400, 404 ]

    *)
  2. success_codes : response_inspection_status_code_success_codes;
    (*

    Status codes in the response that indicate a successful login or account creation attempt. To be counted as a success, the response status code must match one of these. Each code must be unique among the success and failure status codes.

    JSON example: "SuccessCodes": [ 200, 201 ]

    *)
}

Configures inspection of the response status code. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

type nonrec response_inspection_header_name = string
type nonrec success_value = string
type nonrec response_inspection_header_success_values = success_value list
type nonrec failure_value = string
type nonrec response_inspection_header_failure_values = failure_value list
type nonrec response_inspection_header = {
  1. failure_values : response_inspection_header_failure_values;
    (*

    Values in the response header with the specified name that indicate a failed login or account creation attempt. To be counted as a failure, the value must be an exact match, including case. Each value must be unique among the success and failure values.

    JSON examples: "FailureValues": [ "LoginFailed", "Failed login" ] and "FailureValues": [ "AccountCreationFailed" ]

    *)
  2. success_values : response_inspection_header_success_values;
    (*

    Values in the response header with the specified name that indicate a successful login or account creation attempt. To be counted as a success, the value must be an exact match, including case. Each value must be unique among the success and failure values.

    JSON examples: "SuccessValues": [ "LoginPassed", "Successful login" ] and "SuccessValues": [ "AccountCreated", "Successful account creation" ]

    *)
  3. name : response_inspection_header_name;
    (*

    The name of the header to match against. The name must be an exact match, including case.

    JSON example: "Name": [ "RequestResult" ]

    *)
}

Configures inspection of the response header. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

type nonrec response_inspection_body_contains_success_strings = success_value list
type nonrec response_inspection_body_contains_failure_strings = failure_value list
type nonrec response_inspection_body_contains = {
  1. failure_strings : response_inspection_body_contains_failure_strings;
    (*

    Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.

    JSON example: "FailureStrings": [ "Request failed" ]

    *)
  2. success_strings : response_inspection_body_contains_success_strings;
    (*

    Strings in the body of the response that indicate a successful login or account creation attempt. To be counted as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings.

    JSON examples: "SuccessStrings": [ "Login successful" ] and "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ]

    *)
}

Configures inspection of the response body. WAF can inspect the first 65,536 bytes (64 KB) of the response body. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

type nonrec response_inspection_json_success_values = success_value list
type nonrec response_inspection_json_failure_values = failure_value list
type nonrec response_inspection_json = {
  1. failure_values : response_inspection_json_failure_values;
    (*

    Values for the specified identifier in the response JSON that indicate a failed login or account creation attempt. To be counted as a failure, the value must be an exact match, including case. Each value must be unique among the success and failure values.

    JSON example: "FailureValues": [ "False", "Failed" ]

    *)
  2. success_values : response_inspection_json_success_values;
    (*

    Values for the specified identifier in the response JSON that indicate a successful login or account creation attempt. To be counted as a success, the value must be an exact match, including case. Each value must be unique among the success and failure values.

    JSON example: "SuccessValues": [ "True", "Succeeded" ]

    *)
  3. identifier : field_identifier;
    (*

    The identifier for the value to match against in the JSON. The identifier must be an exact match, including case.

    JSON examples: "Identifier": [ "/login/success" ] and "Identifier": [ "/sign-up/success" ]

    *)
}

Configures inspection of the response JSON. WAF can inspect the first 65,536 bytes (64 KB) of the response JSON. This is part of the ResponseInspection configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

type nonrec response_inspection = {
  1. json : response_inspection_json option;
    (*

    Configures inspection of the response JSON for success and failure indicators. WAF can inspect the first 65,536 bytes (64 KB) of the response JSON.

    *)
  2. body_contains : response_inspection_body_contains option;
    (*

    Configures inspection of the response body for success and failure indicators. WAF can inspect the first 65,536 bytes (64 KB) of the response body.

    *)
  3. header : response_inspection_header option;
    (*

    Configures inspection of the response header for success and failure indicators.

    *)
  4. status_code : response_inspection_status_code option;
    (*

    Configures inspection of the response status code for success and failure indicators.

    *)
}

The criteria for inspecting responses to login requests and account creation requests, used by the ATP and ACFP rule groups to track login and account creation success and failure rates.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

The rule groups evaluates the responses that your protected resources send back to client login and account creation attempts, keeping count of successful and failed attempts from each IP address and client session. Using this information, the rule group labels and mitigates requests from client sessions and IP addresses with too much suspicious activity in a short amount of time.

This is part of the AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet configurations in ManagedRuleGroupConfig.

Enable response inspection by configuring exactly one component of the response to inspect, for example, Header or StatusCode. You can't configure more than one component for inspection. If you don't configure any of the response inspection options, response inspection is disabled.

type nonrec boolean_ = bool
type nonrec aws_managed_rules_atp_rule_set = {
  1. enable_regex_in_path : boolean_ option;
    (*

    Allow the use of regular expressions in the login page path.

    *)
  2. response_inspection : response_inspection option;
    (*

    The criteria for inspecting responses to login requests, used by the ATP rule group to track login failure rates.

    Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

    The ATP rule group evaluates the responses that your protected resources send back to client login attempts, keeping count of successful and failed attempts for each IP address and client session. Using this information, the rule group labels and mitigates requests from client sessions and IP addresses that have had too many failed login attempts in a short amount of time.

    *)
  3. request_inspection : request_inspection option;
    (*

    The criteria for inspecting login requests, used by the ATP rule group to validate credentials usage.

    *)
  4. login_path : string_;
    (*

    The path of the login endpoint for your application. For example, for the URL https://example.com/web/login, you would provide the path /web/login. Login paths that start with the path that you provide are considered a match. For example /web/login matches the login paths /web/login, /web/login/, /web/loginPage, and /web/login/thisPage, but doesn't match the login path /home/web/login or /website/login.

    The rule group inspects only HTTP POST requests to your specified login endpoint.

    *)
}

Details for your use of the account takeover prevention managed rule group, AWSManagedRulesATPRuleSet. This configuration is used in ManagedRuleGroupConfig.

For additional information about this and the other intelligent threat mitigation rule groups, see Intelligent threat mitigation in WAF and Amazon Web Services Managed Rules rule groups list in the WAF Developer Guide.

type nonrec creation_path_string = string
type nonrec registration_page_path_string = string
type nonrec email_field = {
  1. identifier : field_identifier;
    (*

    The name of the email field.

    How you specify this depends on the request inspection payload type.

    • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

      For example, for the JSON payload { "form": { "email": "THE_EMAIL" } }, the email field specification is /form/email.

    • For form encoded payload types, use the HTML form names.

      For example, for an HTML form with the input element named email1, the email field specification is email1.

    *)
}

The name of the field in the request payload that contains your customer's email.

This data type is used in the RequestInspectionACFP data type.

type nonrec phone_number_field = {
  1. identifier : field_identifier;
    (*

    The name of a single primary phone number field.

    How you specify the phone number fields depends on the request inspection payload type.

    • For JSON payloads, specify the field identifiers in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

      For example, for the JSON payload { "form": { "primaryphoneline1": "THE_PHONE1", "primaryphoneline2": "THE_PHONE2", "primaryphoneline3": "THE_PHONE3" } }, the phone number field identifiers are /form/primaryphoneline1, /form/primaryphoneline2, and /form/primaryphoneline3.

    • For form encoded payload types, use the HTML form names.

      For example, for an HTML form with input elements named primaryphoneline1, primaryphoneline2, and primaryphoneline3, the phone number field identifiers are primaryphoneline1, primaryphoneline2, and primaryphoneline3.

    *)
}

The name of a field in the request payload that contains part or all of your customer's primary phone number.

This data type is used in the RequestInspectionACFP data type.

type nonrec phone_number_fields = phone_number_field list
type nonrec address_field = {
  1. identifier : field_identifier;
    (*

    The name of a single primary address field.

    How you specify the address fields depends on the request inspection payload type.

    • For JSON payloads, specify the field identifiers in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

      For example, for the JSON payload { "form": { "primaryaddressline1": "THE_ADDRESS1", "primaryaddressline2": "THE_ADDRESS2", "primaryaddressline3": "THE_ADDRESS3" } }, the address field idenfiers are /form/primaryaddressline1, /form/primaryaddressline2, and /form/primaryaddressline3.

    • For form encoded payload types, use the HTML form names.

      For example, for an HTML form with input elements named primaryaddressline1, primaryaddressline2, and primaryaddressline3, the address fields identifiers are primaryaddressline1, primaryaddressline2, and primaryaddressline3.

    *)
}

The name of a field in the request payload that contains part or all of your customer's primary physical address.

This data type is used in the RequestInspectionACFP data type.

type nonrec address_fields = address_field list
type nonrec request_inspection_acf_p = {
  1. address_fields : address_fields option;
    (*

    The names of the fields in the request payload that contain your customer's primary physical address.

    Order the address fields in the array exactly as they are ordered in the request payload.

    How you specify the address fields depends on the request inspection payload type.

    • For JSON payloads, specify the field identifiers in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

      For example, for the JSON payload { "form": { "primaryaddressline1": "THE_ADDRESS1", "primaryaddressline2": "THE_ADDRESS2", "primaryaddressline3": "THE_ADDRESS3" } }, the address field idenfiers are /form/primaryaddressline1, /form/primaryaddressline2, and /form/primaryaddressline3.

    • For form encoded payload types, use the HTML form names.

      For example, for an HTML form with input elements named primaryaddressline1, primaryaddressline2, and primaryaddressline3, the address fields identifiers are primaryaddressline1, primaryaddressline2, and primaryaddressline3.

    *)
  2. phone_number_fields : phone_number_fields option;
    (*

    The names of the fields in the request payload that contain your customer's primary phone number.

    Order the phone number fields in the array exactly as they are ordered in the request payload.

    How you specify the phone number fields depends on the request inspection payload type.

    • For JSON payloads, specify the field identifiers in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

      For example, for the JSON payload { "form": { "primaryphoneline1": "THE_PHONE1", "primaryphoneline2": "THE_PHONE2", "primaryphoneline3": "THE_PHONE3" } }, the phone number field identifiers are /form/primaryphoneline1, /form/primaryphoneline2, and /form/primaryphoneline3.

    • For form encoded payload types, use the HTML form names.

      For example, for an HTML form with input elements named primaryphoneline1, primaryphoneline2, and primaryphoneline3, the phone number field identifiers are primaryphoneline1, primaryphoneline2, and primaryphoneline3.

    *)
  3. email_field : email_field option;
    (*

    The name of the field in the request payload that contains your customer's email.

    How you specify this depends on the request inspection payload type.

    • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

      For example, for the JSON payload { "form": { "email": "THE_EMAIL" } }, the email field specification is /form/email.

    • For form encoded payload types, use the HTML form names.

      For example, for an HTML form with the input element named email1, the email field specification is email1.

    *)
  4. password_field : password_field option;
    (*

    The name of the field in the request payload that contains your customer's password.

    How you specify this depends on the request inspection payload type.

    • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

      For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }, the password field specification is /form/password.

    • For form encoded payload types, use the HTML form names.

      For example, for an HTML form with the input element named password1, the password field specification is password1.

    *)
  5. username_field : username_field option;
    (*

    The name of the field in the request payload that contains your customer's username.

    How you specify this depends on the request inspection payload type.

    • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

      For example, for the JSON payload { "form": { "username": "THE_USERNAME" } }, the username field specification is /form/username.

    • For form encoded payload types, use the HTML form names.

      For example, for an HTML form with the input element named username1, the username field specification is username1

    *)
  6. payload_type : payload_type;
    (*

    The payload type for your account creation endpoint, either JSON or form encoded.

    *)
}

The criteria for inspecting account creation requests, used by the ACFP rule group to validate and track account creation attempts.

This is part of the AWSManagedRulesACFPRuleSet configuration in ManagedRuleGroupConfig.

In these settings, you specify how your application accepts account creation attempts by providing the request payload type and the names of the fields within the request body where the username, password, email, and primary address and phone number fields are provided.

type nonrec aws_managed_rules_acfp_rule_set = {
  1. enable_regex_in_path : boolean_ option;
    (*

    Allow the use of regular expressions in the registration page path and the account creation path.

    *)
  2. response_inspection : response_inspection option;
    (*

    The criteria for inspecting responses to account creation requests, used by the ACFP rule group to track account creation success rates.

    Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

    The ACFP rule group evaluates the responses that your protected resources send back to client account creation attempts, keeping count of successful and failed attempts from each IP address and client session. Using this information, the rule group labels and mitigates requests from client sessions and IP addresses that have had too many successful account creation attempts in a short amount of time.

    *)
  3. request_inspection : request_inspection_acf_p;
    (*

    The criteria for inspecting account creation requests, used by the ACFP rule group to validate and track account creation attempts.

    *)
  4. registration_page_path : registration_page_path_string;
    (*

    The path of the account registration endpoint for your application. This is the page on your website that presents the registration form to new users.

    This page must accept GET text/html requests.

    For example, for the URL https://example.com/web/registration, you would provide the path /web/registration. Registration page paths that start with the path that you provide are considered a match. For example /web/registration matches the registration paths /web/registration, /web/registration/, /web/registrationPage, and /web/registration/thisPage, but doesn't match the path /home/web/registration or /website/registration.

    *)
  5. creation_path : creation_path_string;
    (*

    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 POST requests.

    For example, for the URL https://example.com/web/newaccount, you would provide the path /web/newaccount. Account creation page paths that start with the path that you provide are considered a match. For example /web/newaccount matches the account creation paths /web/newaccount, /web/newaccount/, /web/newaccountPage, and /web/newaccount/thisPage, but doesn't match the path /home/web/newaccount or /website/newaccount.

    *)
}

Details for your use of the account creation fraud prevention managed rule group, AWSManagedRulesACFPRuleSet. This configuration is used in ManagedRuleGroupConfig.

For additional information about this and the other intelligent threat mitigation rule groups, see Intelligent threat mitigation in WAF and Amazon Web Services Managed Rules rule groups list in the WAF Developer Guide.

type nonrec usage_of_action =
  1. | DISABLED
  2. | ENABLED
type nonrec sensitivity_to_act =
  1. | HIGH
  2. | MEDIUM
  3. | LOW
type nonrec regex_pattern_string = string
type nonrec regex = {
  1. regex_string : regex_pattern_string option;
    (*

    The string representing the regular expression.

    *)
}

A single regular expression. This is used in a RegexPatternSet and also in the configuration for the Amazon Web Services Managed Rules rule group AWSManagedRulesAntiDDoSRuleSet.

type nonrec regular_expression_list = regex list
type nonrec client_side_action = {
  1. exempt_uri_regular_expressions : regular_expression_list option;
    (*

    The regular expression to match against the web request URI, used to identify requests that can't handle a silent browser challenge. When the ClientSideAction setting UsageOfAction is enabled, the managed rule group uses this setting to determine which requests to label with awswaf:managed:aws:anti-ddos:challengeable-request. If UsageOfAction is disabled, this setting has no effect and the managed rule group doesn't add the label to any requests.

    The anti-DDoS managed rule group doesn't evaluate the rules ChallengeDDoSRequests or ChallengeAllDuringEvent for web requests whose URIs match this regex. This is true regardless of whether you override the rule action for either of the rules in your web ACL configuration.

    Amazon Web Services recommends using a regular expression.

    This setting is required if UsageOfAction is set to ENABLED. If required, you can provide between 1 and 5 regex objects in the array of settings.

    Amazon Web Services recommends starting with the following setting. Review and update it for your application's needs:

    \/api\/|\.(acc|avi|css|gif|jpe?g|js|mp[34]|ogg|otf|pdf|png|tiff?|ttf|webm|webp|woff2?)$

    *)
  2. sensitivity : sensitivity_to_act option;
    (*

    The sensitivity that the rule group rule ChallengeDDoSRequests uses when matching against the DDoS suspicion labeling on a request. The managed rule group adds the labeling during DDoS events, before the ChallengeDDoSRequests rule runs.

    The higher the sensitivity, the more levels of labeling that the rule matches:

    • Low sensitivity is less sensitive, causing the rule to match only on the most likely participants in an attack, which are the requests with the high suspicion label awswaf:managed:aws:anti-ddos:high-suspicion-ddos-request.
    • Medium sensitivity causes the rule to match on the medium and high suspicion labels.
    • High sensitivity causes the rule to match on all of the suspicion labels: low, medium, and high.

    Default: HIGH

    *)
  3. usage_of_action : usage_of_action;
    (*

    Determines whether to use the AWSManagedRulesAntiDDoSRuleSet rules ChallengeAllDuringEvent and ChallengeDDoSRequests in the rule group evaluation and the related label awswaf:managed:aws:anti-ddos:challengeable-request.

    • If usage is enabled:

      • The managed rule group adds the label awswaf:managed:aws:anti-ddos:challengeable-request to any web request whose URL does NOT match the regular expressions provided in the ClientSideAction setting ExemptUriRegularExpressions.
      • The two rules are evaluated against web requests for protected resources that are experiencing a DDoS attack. The two rules only apply their action to matching requests that have the label awswaf:managed:aws:anti-ddos:challengeable-request.
    • If usage is disabled:

      • The managed rule group doesn't add the label awswaf:managed:aws:anti-ddos:challengeable-request to any web requests.
      • The two rules are not evaluated.
      • None of the other ClientSideAction settings have any effect.

    This setting only enables or disables the use of the two anti-DDOS rules ChallengeAllDuringEvent and ChallengeDDoSRequests in the anti-DDoS managed rule group.

    This setting doesn't alter the action setting in the two rules. To override the actions used by the rules ChallengeAllDuringEvent and ChallengeDDoSRequests, enable this setting, and then override the rule actions in the usual way, in your managed rule group configuration.

    *)
}

This is part of the AWSManagedRulesAntiDDoSRuleSet ClientSideActionConfig configuration in ManagedRuleGroupConfig.

type nonrec client_side_action_config = {
  1. challenge : client_side_action;
    (*

    Configuration for the use of the AWSManagedRulesAntiDDoSRuleSet rules ChallengeAllDuringEvent and ChallengeDDoSRequests.

    This setting isn't related to the configuration of the Challenge action itself. It only configures the use of the two anti-DDoS rules named here.

    You can enable or disable the use of these rules, and you can configure how to use them when they are enabled.

    *)
}

This is part of the configuration for the managed rules AWSManagedRulesAntiDDoSRuleSet in ManagedRuleGroupConfig.

type nonrec aws_managed_rules_anti_d_do_s_rule_set = {
  1. sensitivity_to_block : sensitivity_to_act option;
    (*

    The sensitivity that the rule group rule DDoSRequests uses when matching against the DDoS suspicion labeling on a request. The managed rule group adds the labeling during DDoS events, before the DDoSRequests rule runs.

    The higher the sensitivity, the more levels of labeling that the rule matches:

    • Low sensitivity is less sensitive, causing the rule to match only on the most likely participants in an attack, which are the requests with the high suspicion label awswaf:managed:aws:anti-ddos:high-suspicion-ddos-request.
    • Medium sensitivity causes the rule to match on the medium and high suspicion labels.
    • High sensitivity causes the rule to match on all of the suspicion labels: low, medium, and high.

    Default: LOW

    *)
  2. client_side_action_config : client_side_action_config;
    (*

    Configures the request handling that's applied by the managed rule group rules ChallengeAllDuringEvent and ChallengeDDoSRequests during a distributed denial of service (DDoS) attack.

    *)
}

Configures the use of the anti-DDoS managed rule group, AWSManagedRulesAntiDDoSRuleSet. This configuration is used in ManagedRuleGroupConfig.

The configuration that you provide here determines whether and how the rules in the rule group are used.

For additional information about this and the other intelligent threat mitigation rule groups, see Intelligent threat mitigation in WAF and Amazon Web Services Managed Rules rule groups list in the WAF Developer Guide.

type nonrec managed_rule_group_config = {
  1. aws_managed_rules_anti_d_do_s_rule_set : aws_managed_rules_anti_d_do_s_rule_set option;
    (*

    Additional configuration for using the anti-DDoS managed rule group, AWSManagedRulesAntiDDoSRuleSet. Use this to configure anti-DDoS behavior for the rule group.

    For information about using the anti-DDoS managed rule group, see WAF Anti-DDoS rule group and Distributed Denial of Service (DDoS) prevention in the WAF Developer Guide.

    *)
  2. aws_managed_rules_acfp_rule_set : aws_managed_rules_acfp_rule_set option;
    (*

    Additional configuration for using the account creation fraud prevention (ACFP) managed rule group, AWSManagedRulesACFPRuleSet. Use this to provide account creation request information to the rule group. For web ACLs that protect CloudFront distributions, use this to also provide the information about how your distribution responds to account creation requests.

    For information about using the ACFP managed rule group, see WAF Fraud Control account creation fraud prevention (ACFP) rule group and WAF Fraud Control account creation fraud prevention (ACFP) in the WAF Developer Guide.

    *)
  3. aws_managed_rules_atp_rule_set : aws_managed_rules_atp_rule_set option;
    (*

    Additional configuration for using the account takeover prevention (ATP) managed rule group, AWSManagedRulesATPRuleSet. Use this to provide login request information to the rule group. For web ACLs that protect CloudFront distributions, use this to also provide the information about how your distribution responds to login requests.

    This configuration replaces the individual configuration fields in ManagedRuleGroupConfig and provides additional feature configuration.

    For information about using the ATP managed rule group, see WAF Fraud Control account takeover prevention (ATP) rule group and WAF Fraud Control account takeover prevention (ATP) in the WAF Developer Guide.

    *)
  4. aws_managed_rules_bot_control_rule_set : aws_managed_rules_bot_control_rule_set option;
    (*

    Additional configuration for using the Bot Control managed rule group. Use this to specify the inspection level that you want to use. For information about using the Bot Control managed rule group, see WAF Bot Control rule group and WAF Bot Control in the WAF Developer Guide.

    *)
  5. password_field : password_field option;
    (*

    Instead of this setting, provide your configuration under the request inspection configuration for AWSManagedRulesATPRuleSet or AWSManagedRulesACFPRuleSet.

    *)
  6. username_field : username_field option;
    (*

    Instead of this setting, provide your configuration under the request inspection configuration for AWSManagedRulesATPRuleSet or AWSManagedRulesACFPRuleSet.

    *)
  7. payload_type : payload_type option;
    (*

    Instead of this setting, provide your configuration under the request inspection configuration for AWSManagedRulesATPRuleSet or AWSManagedRulesACFPRuleSet.

    *)
  8. login_path : login_path_string option;
    (*

    Instead of this setting, provide your configuration under AWSManagedRulesATPRuleSet.

    *)
}

Additional information that's used by a managed rule group. Many managed rule groups don't require this.

The rule groups used for intelligent threat mitigation require additional configuration:

  • Use the AWSManagedRulesACFPRuleSet configuration object to configure the account creation fraud prevention managed rule group. The configuration includes the registration and sign-up pages of your application and the locations in the account creation request payload of data, such as the user email and phone number fields.
  • Use the AWSManagedRulesAntiDDoSRuleSet configuration object to configure the anti-DDoS managed rule group. The configuration includes the sensitivity levels to use in the rules that typically block and challenge requests that might be participating in DDoS attacks and the specification to use to indicate whether a request can handle a silent browser challenge.
  • Use the AWSManagedRulesATPRuleSet configuration object to configure the account takeover prevention managed rule group. The configuration includes the sign-in page of your application and the locations in the login request payload of data such as the username and password.
  • Use the AWSManagedRulesBotControlRuleSet configuration object to configure the protection level that you want the Bot Control rule group to use.

For example specifications, see the examples section of CreateWebACL.

type nonrec managed_rule_group_configs = managed_rule_group_config list
type nonrec label_match_scope =
  1. | NAMESPACE
  2. | LABEL
type nonrec label_match_key = string
type nonrec label_match_statement = {
  1. key : label_match_key;
    (*

    The string to match against. The setting you provide for this depends on the match statement's Scope setting:

    • If the Scope indicates LABEL, then this specification must include the name and can include any number of preceding namespace specifications and prefix up to providing the fully qualified label name.
    • If the Scope indicates NAMESPACE, then this specification can include any number of contiguous namespace strings, and can include the entire label namespace prefix from the rule group or web ACL where the label originates.

    Labels are case sensitive and components of a label must be separated by colon, for example NS1:NS2:name.

    *)
  2. scope : label_match_scope;
    (*

    Specify whether you want to match using the label name or just the namespace.

    *)
}

A rule statement to match against labels that have been added to the web request by rules that have already run in the web ACL.

The label match statement provides the label or namespace string to search for. The label string can represent a part or all of the fully qualified label name that had been added to the web request. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label. If you do not provide the fully qualified name in your label match string, WAF performs the search for labels that were added in the same context as the label match statement.

type nonrec regex_match_statement = {
  1. text_transformations : text_transformations;
    (*

    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 FieldToMatch 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.

    *)
  2. field_to_match : field_to_match;
    (*

    The part of the web request that you want WAF to inspect.

    *)
  3. regex_string : regex_pattern_string;
    (*

    The string representing the regular expression.

    *)
}

A rule statement used to search web request components for a match against a single regular expression.

type nonrec as_n = int
type nonrec asn_list = as_n list
type nonrec asn_match_statement = {
  1. forwarded_ip_config : forwarded_ip_config option;
    (*

    The configuration for inspecting IP addresses to match against an ASN 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.

    *)
  2. asn_list : asn_list;
    (*

    Contains one or more Autonomous System Numbers (ASNs). ASNs are unique identifiers assigned to large internet networks managed by organizations such as internet service providers, enterprises, universities, or government agencies.

    *)
}

A rule statement that inspects web traffic based on the Autonomous System Number (ASN) associated with the request's IP address.

For additional details, see ASN match rule statement in the WAF Developer Guide.

type and_statement = {
  1. statements : statements;
    (*

    The statements to combine with AND logic. You can use any statements that can be nested.

    *)
}

A logical rule statement used to combine other rule statements with AND logic. You provide more than one Statement within the AndStatement.

and managed_rule_group_statement = {
  1. rule_action_overrides : rule_action_overrides option;
    (*

    Action settings to use in the place of the rule actions that are configured inside the rule group. You specify one override for each rule whose action you want to change.

    Verify the rule names in your overrides carefully. With managed rule groups, WAF silently ignores any override that uses an invalid rule name. With customer-owned rule groups, invalid rule names in your overrides will cause web ACL updates to fail. An invalid rule name is any name that doesn't exactly match the case-sensitive name of an existing rule in the rule group.

    You can use overrides for testing, for example you can override all of rule actions to Count and then monitor the resulting count metrics to understand how the rule group would handle your web traffic. You can also permanently override some or all actions, to modify how the rule group manages your web traffic.

    *)
  2. managed_rule_group_configs : managed_rule_group_configs option;
    (*

    Additional information that's used by a managed rule group. Many managed rule groups don't require this.

    The rule groups used for intelligent threat mitigation require additional configuration:

    • Use the AWSManagedRulesACFPRuleSet configuration object to configure the account creation fraud prevention managed rule group. The configuration includes the registration and sign-up pages of your application and the locations in the account creation request payload of data, such as the user email and phone number fields.
    • Use the AWSManagedRulesAntiDDoSRuleSet configuration object to configure the anti-DDoS managed rule group. The configuration includes the sensitivity levels to use in the rules that typically block and challenge requests that might be participating in DDoS attacks and the specification to use to indicate whether a request can handle a silent browser challenge.
    • Use the AWSManagedRulesATPRuleSet configuration object to configure the account takeover prevention managed rule group. The configuration includes the sign-in page of your application and the locations in the login request payload of data such as the username and password.
    • Use the AWSManagedRulesBotControlRuleSet configuration object to configure the protection level that you want the Bot Control rule group to use.
    *)
  3. scope_down_statement : statement option;
    (*

    An optional nested statement that narrows the scope of the web requests that are evaluated by the managed rule group. Requests are only evaluated by the rule group if they match the scope-down statement. You can use any nestable Statement in the scope-down statement, and you can nest statements at any level, the same as you can for a rule statement.

    *)
  4. excluded_rules : excluded_rules option;
    (*

    Rules in the referenced rule group whose actions are set to Count.

    Instead of this option, use RuleActionOverrides. It accepts any valid action setting, including Count.

    *)
  5. version : version_key_string option;
    (*

    The version of the managed rule group to use. If you specify this, the version setting is fixed until you change it. If you don't specify this, WAF uses the vendor's default version, and then keeps the version at the vendor's default when the vendor updates the managed rule group settings.

    *)
  6. name : entity_name;
    (*

    The name of the managed rule group. You use this, along with the vendor name, to identify the rule group.

    *)
  7. vendor_name : vendor_name;
    (*

    The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

    *)
}

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 ListAvailableManagedRuleGroups.

You cannot nest a ManagedRuleGroupStatement, for example for use inside a NotStatement or OrStatement. You cannot use a managed rule group 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.

You are charged additional fees when you use the WAF Bot Control managed rule group AWSManagedRulesBotControlRuleSet, the WAF Fraud Control account takeover prevention (ATP) managed rule group AWSManagedRulesATPRuleSet, or the WAF Fraud Control account creation fraud prevention (ACFP) managed rule group AWSManagedRulesACFPRuleSet. For more information, see WAF Pricing.

and not_statement = {
  1. statement : statement;
    (*

    The statement to negate. You can use any statement that can be nested.

    *)
}

A logical rule statement used to negate the results of another rule statement. You provide one Statement within the NotStatement.

and or_statement = {
  1. statements : statements;
    (*

    The statements to combine with OR logic. You can use any statements that can be nested.

    *)
}

A logical rule statement used to combine other rule statements with OR logic. You provide more than one Statement within the OrStatement.

and rate_based_statement = {
  1. custom_keys : rate_based_statement_custom_keys option;
    (*

    Specifies the aggregate keys to use in a rate-base rule.

    *)
  2. forwarded_ip_config : forwarded_ip_config option;
    (*

    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.

    If the specified header isn't present in the request, WAF doesn't apply the rule to the web request at all.

    This is required if you specify a forwarded IP in the rule's aggregate key settings.

    *)
  3. scope_down_statement : statement option;
    (*

    An optional nested statement that narrows the scope of the web requests that are evaluated and managed by the rate-based statement. When you use a scope-down statement, the rate-based rule only tracks and rate limits requests that match the scope-down statement. You can use any nestable Statement in the scope-down statement, and you can nest statements at any level, the same as you can for a rule statement.

    *)
  4. aggregate_key_type : rate_based_statement_aggregate_key_type;
    (*

    Setting that indicates how to aggregate the request counts.

    Web requests that are missing any of the components specified in the aggregation keys are omitted from the rate-based rule evaluation and handling.

    • CONSTANT - Count and limit the requests that match the rate-based rule's scope-down statement. With this option, the counted requests aren't further aggregated. The scope-down statement is the only specification used. When the count of all requests that satisfy the scope-down statement goes over the limit, WAF applies the rule action to all requests that satisfy the scope-down statement.

      With this option, you must configure the ScopeDownStatement property.

    • CUSTOM_KEYS - Aggregate the request counts using one or more web request components as the aggregate keys.

      With this option, you must specify the aggregate keys in the CustomKeys property.

      To aggregate on only the IP address or only the forwarded IP address, don't use custom keys. Instead, set the aggregate key type to IP or FORWARDED_IP.

    • FORWARDED_IP - Aggregate the request counts on the first IP address in an HTTP header.

      With this option, you must specify the header to use in the ForwardedIPConfig property.

      To aggregate on a combination of the forwarded IP address with other aggregate keys, use CUSTOM_KEYS.

    • IP - Aggregate the request counts on the IP address from the web request origin.

      To aggregate on a combination of the IP address with other aggregate keys, use CUSTOM_KEYS.

    *)
  5. evaluation_window_sec : evaluation_window_sec option;
    (*

    The amount of time, in seconds, that WAF should include in its request counts, looking back from the current time. For example, for a setting of 120, when WAF checks the rate, it counts the requests for the 2 minutes immediately preceding the current time. Valid settings are 60, 120, 300, and 600.

    This setting doesn't determine how often WAF checks the rate, but how far back it looks each time it checks. WAF checks the rate about every 10 seconds.

    Default: 300 (5 minutes)

    *)
  6. limit : rate_limit;
    (*

    The limit on requests during the specified evaluation window for a single aggregation instance for the rate-based rule. If the rate-based statement includes a ScopeDownStatement, this limit is applied only to the requests that match the statement.

    Examples:

    • If you aggregate on just the IP address, this is the limit on requests from any single IP address.
    • If you aggregate on the HTTP method and the query argument name "city", then this is the limit on requests for any single method, city pair.
    *)
}

A rate-based rule counts incoming requests and rate limits requests when they are coming at too fast a rate. The rule categorizes requests according to your aggregation criteria, collects them into aggregation instances, and counts and rate limits the requests for each instance.

If you change any of these settings in a rule that's currently in use, the change resets the rule's rate limiting counts. This can pause the rule's rate limiting activities for up to a minute.

You can specify individual aggregation keys, like IP address or HTTP method. You can also specify aggregation key combinations, like IP address and HTTP method, or HTTP method, query argument, and cookie.

Each unique set of values for the aggregation keys that you specify is a separate aggregation instance, with the value from each key contributing to the aggregation instance definition.

For example, assume the rule evaluates web requests with the following IP address and HTTP method values:

  • IP address 10.1.1.1, HTTP method POST
  • IP address 10.1.1.1, HTTP method GET
  • IP address 127.0.0.0, HTTP method POST
  • IP address 10.1.1.1, HTTP method GET

The rule would create different aggregation instances according to your aggregation criteria, for example:

  • If the aggregation criteria is just the IP address, then each individual address is an aggregation instance, and WAF counts requests separately for each. The aggregation instances and request counts for our example would be the following:

    • IP address 10.1.1.1: count 3
    • IP address 127.0.0.0: count 1
  • If the aggregation criteria is HTTP method, then each individual HTTP method is an aggregation instance. The aggregation instances and request counts for our example would be the following:

    • HTTP method POST: count 2
    • HTTP method GET: count 2
  • If the aggregation criteria is IP address and HTTP method, then each IP address and each HTTP method would contribute to the combined aggregation instance. The aggregation instances and request counts for our example would be the following:

    • IP address 10.1.1.1, HTTP method POST: count 1
    • IP address 10.1.1.1, HTTP method GET: count 2
    • IP address 127.0.0.0, HTTP method POST: count 1

For any n-tuple of aggregation keys, each unique combination of values for the keys defines a separate aggregation instance, which WAF counts and rate-limits individually.

You can optionally nest another statement inside the rate-based statement, to narrow the scope of the rule so that it only counts and rate limits requests that match the nested statement. You can use this nested scope-down statement in conjunction with your aggregation key specifications or you can just count and rate limit all requests that match the scope-down statement, without additional aggregation. When you choose to just manage all requests that match a scope-down statement, the aggregation instance is singular for the rule.

You cannot nest a RateBasedStatement inside another statement, for example inside a NotStatement or OrStatement. You can define a RateBasedStatement inside a web ACL and inside a rule group.

For additional information about the options, see Rate limiting web requests using rate-based rules in the WAF Developer Guide.

If you only aggregate on the individual IP address or forwarded IP address, you can retrieve the list of IP addresses that WAF is currently rate limiting for a rule through the API call GetRateBasedStatementManagedKeys. This option is not available for other aggregation configurations.

WAF tracks and manages web requests separately for each instance of a rate-based rule that you use. For example, if you provide the same rate-based rule settings in two web ACLs, each of the two rule statements represents a separate instance of the rate-based rule and gets its own tracking and management by WAF. If you define a rate-based rule inside a rule group, and then use that rule group in multiple places, each use creates a separate instance of the rate-based rule that gets its own tracking and management by WAF.

and statement = {
  1. asn_match_statement : asn_match_statement option;
    (*

    A rule statement that inspects web traffic based on the Autonomous System Number (ASN) associated with the request's IP address.

    For additional details, see ASN match rule statement in the WAF Developer Guide.

    *)
  2. regex_match_statement : regex_match_statement option;
    (*

    A rule statement used to search web request components for a match against a single regular expression.

    *)
  3. label_match_statement : label_match_statement option;
    (*

    A rule statement to match against labels that have been added to the web request by rules that have already run in the web ACL.

    The label match statement provides the label or namespace string to search for. The label string can represent a part or all of the fully qualified label name that had been added to the web request. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label. If you do not provide the fully qualified name in your label match string, WAF performs the search for labels that were added in the same context as the label match statement.

    *)
  4. managed_rule_group_statement : managed_rule_group_statement option;
    (*

    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 ListAvailableManagedRuleGroups.

    You cannot nest a ManagedRuleGroupStatement, for example for use inside a NotStatement or OrStatement. You cannot use a managed rule group 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.

    You are charged additional fees when you use the WAF Bot Control managed rule group AWSManagedRulesBotControlRuleSet, the WAF Fraud Control account takeover prevention (ATP) managed rule group AWSManagedRulesATPRuleSet, or the WAF Fraud Control account creation fraud prevention (ACFP) managed rule group AWSManagedRulesACFPRuleSet. For more information, see WAF Pricing.

    *)
  5. not_statement : not_statement option;
    (*

    A logical rule statement used to negate the results of another rule statement. You provide one Statement within the NotStatement.

    *)
  6. or_statement : or_statement option;
    (*

    A logical rule statement used to combine other rule statements with OR logic. You provide more than one Statement within the OrStatement.

    *)
  7. and_statement : and_statement option;
    (*

    A logical rule statement used to combine other rule statements with AND logic. You provide more than one Statement within the AndStatement.

    *)
  8. rate_based_statement : rate_based_statement option;
    (*

    A rate-based rule counts incoming requests and rate limits requests when they are coming at too fast a rate. The rule categorizes requests according to your aggregation criteria, collects them into aggregation instances, and counts and rate limits the requests for each instance.

    If you change any of these settings in a rule that's currently in use, the change resets the rule's rate limiting counts. This can pause the rule's rate limiting activities for up to a minute.

    You can specify individual aggregation keys, like IP address or HTTP method. You can also specify aggregation key combinations, like IP address and HTTP method, or HTTP method, query argument, and cookie.

    Each unique set of values for the aggregation keys that you specify is a separate aggregation instance, with the value from each key contributing to the aggregation instance definition.

    For example, assume the rule evaluates web requests with the following IP address and HTTP method values:

    • IP address 10.1.1.1, HTTP method POST
    • IP address 10.1.1.1, HTTP method GET
    • IP address 127.0.0.0, HTTP method POST
    • IP address 10.1.1.1, HTTP method GET

    The rule would create different aggregation instances according to your aggregation criteria, for example:

    • If the aggregation criteria is just the IP address, then each individual address is an aggregation instance, and WAF counts requests separately for each. The aggregation instances and request counts for our example would be the following:

      • IP address 10.1.1.1: count 3
      • IP address 127.0.0.0: count 1
    • If the aggregation criteria is HTTP method, then each individual HTTP method is an aggregation instance. The aggregation instances and request counts for our example would be the following:

      • HTTP method POST: count 2
      • HTTP method GET: count 2
    • If the aggregation criteria is IP address and HTTP method, then each IP address and each HTTP method would contribute to the combined aggregation instance. The aggregation instances and request counts for our example would be the following:

      • IP address 10.1.1.1, HTTP method POST: count 1
      • IP address 10.1.1.1, HTTP method GET: count 2
      • IP address 127.0.0.0, HTTP method POST: count 1

    For any n-tuple of aggregation keys, each unique combination of values for the keys defines a separate aggregation instance, which WAF counts and rate-limits individually.

    You can optionally nest another statement inside the rate-based statement, to narrow the scope of the rule so that it only counts and rate limits requests that match the nested statement. You can use this nested scope-down statement in conjunction with your aggregation key specifications or you can just count and rate limit all requests that match the scope-down statement, without additional aggregation. When you choose to just manage all requests that match a scope-down statement, the aggregation instance is singular for the rule.

    You cannot nest a RateBasedStatement inside another statement, for example inside a NotStatement or OrStatement. You can define a RateBasedStatement inside a web ACL and inside a rule group.

    For additional information about the options, see Rate limiting web requests using rate-based rules in the WAF Developer Guide.

    If you only aggregate on the individual IP address or forwarded IP address, you can retrieve the list of IP addresses that WAF is currently rate limiting for a rule through the API call GetRateBasedStatementManagedKeys. This option is not available for other aggregation configurations.

    WAF tracks and manages web requests separately for each instance of a rate-based rule that you use. For example, if you provide the same rate-based rule settings in two web ACLs, each of the two rule statements represents a separate instance of the rate-based rule and gets its own tracking and management by WAF. If you define a rate-based rule inside a rule group, and then use that rule group in multiple places, each use creates a separate instance of the rate-based rule that gets its own tracking and management by WAF.

    *)
  9. regex_pattern_set_reference_statement : regex_pattern_set_reference_statement option;
    (*

    A rule statement used to search web request components for matches with regular expressions. To use this, create a RegexPatternSet that specifies the expressions that you want to detect, then use the ARN of that set in this statement. A web request matches the pattern set rule statement if the request component matches any of the patterns in the set. To create a regex pattern set, see CreateRegexPatternSet.

    Each regex pattern set rule statement references a regex pattern set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.

    *)
  10. ip_set_reference_statement : ip_set_reference_statement option;
    (*

    A rule statement used to detect web requests coming from particular IP addresses or address ranges. To use this, create an IPSet that specifies the addresses you want to detect, then use the ARN of that set in this statement. To create an IP set, see CreateIPSet.

    Each IP set rule statement references an IP set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.

    *)
  11. rule_group_reference_statement : rule_group_reference_statement option;
    (*

    A rule statement used to run the rules that are defined in a RuleGroup. To use this, create a rule group with your rules, then provide the ARN of the rule group in this statement.

    You cannot nest a RuleGroupReferenceStatement, for example for use inside a NotStatement or OrStatement. You cannot use a rule group 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.

    *)
  12. geo_match_statement : geo_match_statement option;
    (*

    A rule statement that labels web requests by country and region and that matches against web requests based on country code. A geo match rule labels every request that it inspects regardless of whether it finds a match.

    • To manage requests only by country, you can use this statement by itself and specify the countries that you want to match against in the CountryCodes array.
    • Otherwise, configure your geo match rule with Count action so that it only labels requests. Then, add one or more label match rules to run after the geo match rule and configure them to match against the geographic labels and handle the requests as needed.

    WAF labels requests using the alpha-2 country and region codes from the International Organization for Standardization (ISO) 3166 standard. WAF determines the codes using either the IP address in the web request origin or, if you specify it, the address in the geo match ForwardedIPConfig.

    If you use the web request origin, the label formats are

    awswaf:clientip:geo:region:-

    and

    awswaf:clientip:geo:country:

    .

    If you use a forwarded IP address, the label formats are

    awswaf:forwardedip:geo:region:-

    and

    awswaf:forwardedip:geo:country:

    .

    For additional details, see Geographic match rule statement in the WAF Developer Guide.

    *)
  13. size_constraint_statement : size_constraint_statement option;
    (*

    A rule statement that compares a number of bytes against the size of a request component, using a comparison operator, such as greater than (>) or less than (<). For example, you can use a size constraint statement to look for query strings that are longer than 100 bytes.

    If you configure WAF to inspect the request body, WAF inspects only the number of bytes in the body up to the limit for the web ACL and protected resource type. If you know that the request body for your web requests should never exceed the inspection limit, you can use a size constraint statement to block requests that have a larger request body size. For more information about the inspection limits, see Body and JsonBody settings for the FieldToMatch data type.

    If you choose URI for the value of Part of the request to filter on, the slash (/) in the URI counts as one character. For example, the URI /logo.jpg is nine characters long.

    *)
  14. xss_match_statement : xss_match_statement option;
    (*

    A rule statement that inspects for cross-site scripting (XSS) attacks. In XSS attacks, the attacker uses vulnerabilities in a benign website as a vehicle to inject malicious client-site scripts into other legitimate web browsers.

    *)
  15. sqli_match_statement : sqli_match_statement option;
    (*

    A rule statement that inspects for malicious SQL code. Attackers insert malicious SQL code into web requests to do things like modify your database or extract data from it.

    *)
  16. byte_match_statement : byte_match_statement option;
    (*

    A rule statement that defines a string match search for WAF to apply to web requests. The byte match statement provides the bytes to search for, the location in requests that you want WAF to search, and other settings. The bytes to search for are typically a string that corresponds with ASCII characters. In the WAF console and the developer guide, this is called a string match statement.

    *)
}

The processing guidance for a Rule, used by WAF to determine whether a web request matches the rule.

For example specifications, see the examples section of CreateWebACL.

and statements = statement list
type nonrec none_action = unit
type nonrec override_action = {
  1. none : none_action option;
    (*

    Don't override the rule group evaluation result. This is the most common setting.

    *)
  2. count : count_action option;
    (*

    Override the rule group evaluation result to count only.

    This option is usually set to none. It does not affect how the rules in the rule group are evaluated. If you want the rules in the rule group to only count matches, do not use this and instead use the rule action override option, with Count action, in your rule group reference statement settings.

    *)
}

The action to use in the place of the action that results from the rule group evaluation. Set the override action to none to leave the result of the rule group alone. Set it to count to override the result to count only.

You can only use this for rule statements that reference a rule group, like RuleGroupReferenceStatement and ManagedRuleGroupStatement.

This option is usually set to none. It does not affect how the rules in the rule group are evaluated. If you want the rules in the rule group to only count matches, do not use this and instead use the rule action override option, with Count action, in your rule group reference statement settings.

type nonrec label_name = string
type nonrec label = {
  1. name : label_name;
    (*

    The label string.

    *)
}

A single label container. This is used as an element of a label array in multiple contexts, for example, in RuleLabels inside a Rule and in Labels inside a SampledHTTPRequest.

type nonrec labels = label list
type nonrec metric_name = string
type nonrec visibility_config = {
  1. metric_name : metric_name;
    (*

    A name of the Amazon CloudWatch metric dimension. The name can contain only the characters: A-Z, a-z, 0-9, - (hyphen), and _ (underscore). The name can be from one to 128 characters long. It can't contain whitespace or metric names that are reserved for WAF, for example All and Default_Action.

    *)
  2. cloud_watch_metrics_enabled : boolean_;
    (*

    Indicates whether the associated resource sends metrics to Amazon CloudWatch. For the list of available metrics, see WAF Metrics in the WAF Developer Guide.

    For web ACLs, the metrics are for web requests that have the web ACL default action applied. WAF applies the default action to web requests that pass the inspection of all rules in the web ACL without being either allowed or blocked. For more information, see The web ACL default action in the WAF Developer Guide.

    *)
  3. sampled_requests_enabled : boolean_;
    (*

    Indicates whether WAF should store a sampling of the web requests that match the rules. You can view the sampled requests through the WAF console.

    If you configure data protection for the web ACL, the protection applies to the web ACL's sampled web request data.

    Request sampling doesn't provide a field redaction option, and any field redaction that you specify in your logging configuration doesn't affect sampling. You can only exclude fields from request sampling by disabling sampling in the web ACL visibility configuration or by configuring data protection for the web ACL.

    *)
}

Defines and enables Amazon CloudWatch metrics and web request sample collection.

type nonrec time_window_second = int
type nonrec immunity_time_property = {
  1. immunity_time : time_window_second;
    (*

    The amount of time, in seconds, that a CAPTCHA or challenge timestamp is considered valid by WAF. The default setting is 300.

    For the Challenge action, the minimum setting is 300.

    *)
}

Used for CAPTCHA and challenge token settings. Determines how long a CAPTCHA or challenge timestamp remains valid after WAF updates it for a successful CAPTCHA or challenge response.

type nonrec captcha_config = {
  1. immunity_time_property : immunity_time_property option;
    (*

    Determines how long a CAPTCHA timestamp in the token remains valid after the client successfully solves a CAPTCHA puzzle.

    *)
}

Specifies how WAF should handle CAPTCHA evaluations. This is available at the web ACL level and in each rule.

type nonrec challenge_config = {
  1. immunity_time_property : immunity_time_property option;
    (*

    Determines how long a challenge timestamp in the token remains valid after the client successfully responds to a challenge.

    *)
}

Specifies how WAF should handle Challenge evaluations. This is available at the web ACL level and in each rule.

type nonrec rule = {
  1. challenge_config : challenge_config option;
    (*

    Specifies how WAF should handle Challenge evaluations. If you don't specify this, WAF uses the challenge configuration that's defined for the web ACL.

    *)
  2. captcha_config : captcha_config option;
    (*

    Specifies how WAF should handle CAPTCHA evaluations. If you don't specify this, WAF uses the CAPTCHA configuration that's defined for the web ACL.

    *)
  3. visibility_config : visibility_config;
    (*

    Defines and enables Amazon CloudWatch metrics and web request sample collection.

    If you change the name of a Rule after you create it and you want the rule's metric name to reflect the change, update the metric name as well. WAF doesn't automatically update the metric name.

    *)
  4. rule_labels : labels option;
    (*

    Labels to apply to web requests that match the rule match statement. WAF applies fully qualified labels to matching web requests. A fully qualified label is the concatenation of a label namespace and a rule label. The rule's rule group or web ACL defines the label namespace.

    Any rule that isn't a rule group reference statement or managed rule group statement can add labels to matching web requests.

    Rules that run after this rule in the web ACL can match against these labels using a LabelMatchStatement.

    For each label, provide a case-sensitive string containing optional namespaces and a label name, according to the following guidelines:

    • Separate each component of the label with a colon.
    • Each namespace or name can have up to 128 characters.
    • You can specify up to 5 namespaces in a label.
    • Don't use the following reserved words in your label specification: aws, waf, managed, rulegroup, webacl, regexpatternset, or ipset.

    For example, myLabelName or nameSpace1:nameSpace2:myLabelName.

    *)
  5. override_action : override_action option;
    (*

    The action to use in the place of the action that results from the rule group evaluation. Set the override action to none to leave the result of the rule group alone. Set it to count to override the result to count only.

    You can only use this for rule statements that reference a rule group, like RuleGroupReferenceStatement and ManagedRuleGroupStatement.

    This option is usually set to none. It does not affect how the rules in the rule group are evaluated. If you want the rules in the rule group to only count matches, do not use this and instead use the rule action override option, with Count action, in your rule group reference statement settings.

    *)
  6. action : rule_action option;
    (*

    The action that WAF should take on a web request when it matches the rule statement. Settings at the web ACL level can override the rule action setting.

    This is used only for rules whose statements do not reference a rule group. Rule statements that reference a rule group include RuleGroupReferenceStatement and ManagedRuleGroupStatement.

    You must specify either this Action setting or the rule OverrideAction setting, but not both:

    • If the rule statement does not reference a rule group, use this rule action setting and not the rule override action setting.
    • If the rule statement references a rule group, use the override action setting and not this action setting.
    *)
  7. statement : statement;
    (*

    The WAF processing statement for the rule, for example ByteMatchStatement or SizeConstraintStatement.

    *)
  8. priority : rule_priority;
    (*

    If you define more than one Rule in a WebACL, WAF evaluates each request against the Rules in order based on the value of Priority. WAF processes rules with lower priority first. The priorities don't need to be consecutive, but they must all be different.

    *)
  9. name : entity_name;
    (*

    The name of the rule.

    If you change the name of a Rule after you create it and you want the rule's metric name to reflect the change, update the metric name in the rule's VisibilityConfig settings. WAF doesn't automatically update the metric name when you update the rule name.

    *)
}

A single rule, which you can use in a WebACL or RuleGroup to identify web requests that you want to manage in some way. Each rule includes one top-level Statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

type nonrec rules = rule list
type nonrec field_to_protect_type =
  1. | BODY
  2. | QUERY_STRING
  3. | SINGLE_QUERY_ARGUMENT
  4. | SINGLE_HEADER
type nonrec field_to_protect_key_name = string
type nonrec field_to_protect_keys = field_to_protect_key_name list
type nonrec field_to_protect = {
  1. field_keys : field_to_protect_keys option;
    (*

    Specifies the keys to protect for the specified field type. If you don't specify any key, then all keys for the field type are protected.

    *)
  2. field_type : field_to_protect_type;
    (*

    Specifies the web request component type to protect.

    *)
}

Specifies a field type and keys to protect in stored web request data. This is part of the data protection configuration for a web ACL.

type nonrec data_protection_action =
  1. | HASH
  2. | SUBSTITUTION
type nonrec data_protection = {
  1. exclude_rate_based_details : boolean_ option;
    (*

    Specifies whether to also exclude any rate-based rule details from the data protection you have enabled for a given field. If you specify this exception, RateBasedDetails will show the value of the field. For additional information, see the log field rateBasedRuleList at Log fields for web ACL traffic in the WAF Developer Guide.

    Default: FALSE

    *)
  2. exclude_rule_match_details : boolean_ option;
    (*

    Specifies whether to also exclude any rule match details from the data protection you have enabled for a given field. WAF logs these details for non-terminating matching rules and for the terminating matching rule. For additional information, see Log fields for web ACL traffic in the WAF Developer Guide.

    Default: FALSE

    *)
  3. action : data_protection_action;
    (*

    Specifies how to protect the field. WAF can apply a one-way hash to the field or hard code a string substitution.

    • One-way hash example: ade099751dEXAMPLEHASH2ea9f3393f80dd5d3bEXAMPLEHASH966ae0d3cd5a1e
    • Substitution example: REDACTED
    *)
  4. field : field_to_protect;
    (*

    Specifies the field type and optional keys to apply the protection behavior to.

    *)
}

Specifies the protection behavior for a field type. This is part of the data protection configuration for a web ACL.

type nonrec data_protections = data_protection list
type nonrec data_protection_config = {
  1. data_protections : data_protections;
    (*

    An array of data protection configurations for specific web request field types. This is defined for each web ACL. WAF applies the specified protection to all web requests that the web ACL inspects.

    *)
}

Specifies data protection to apply to the web request data for the web ACL. This is a web ACL level data protection option.

The data protection that you configure for the web ACL alters the data that's available for any other data collection activity, including your WAF logging destinations, web ACL request sampling, and Amazon Security Lake data collection and management. Your other option for data protection is in the logging configuration, which only affects logging.

This is part of the data protection configuration for a web ACL.

type nonrec consumed_capacity = int
type nonrec firewall_manager_statement = {
  1. rule_group_reference_statement : rule_group_reference_statement option;
    (*

    A statement used by Firewall Manager to run the rules that are defined in a rule group. This is managed by Firewall Manager for an Firewall Manager WAF policy.

    *)
  2. managed_rule_group_statement : managed_rule_group_statement option;
    (*

    A statement used by Firewall Manager to run the rules that are defined in a managed rule group. This is managed by Firewall Manager for an Firewall Manager WAF policy.

    *)
}

The processing guidance for an Firewall Manager rule. This is like a regular rule Statement, but it can only contain a single rule group reference.

type nonrec firewall_manager_rule_group = {
  1. visibility_config : visibility_config;
    (*

    Defines and enables Amazon CloudWatch metrics and web request sample collection.

    *)
  2. override_action : override_action;
    (*

    The action to use in the place of the action that results from the rule group evaluation. Set the override action to none to leave the result of the rule group alone. Set it to count to override the result to count only.

    You can only use this for rule statements that reference a rule group, like RuleGroupReferenceStatement and ManagedRuleGroupStatement.

    This option is usually set to none. It does not affect how the rules in the rule group are evaluated. If you want the rules in the rule group to only count matches, do not use this and instead use the rule action override option, with Count action, in your rule group reference statement settings.

    *)
  3. firewall_manager_statement : firewall_manager_statement;
    (*

    The processing guidance for an Firewall Manager rule. This is like a regular rule Statement, but it can only contain a rule group reference.

    *)
  4. priority : rule_priority;
    (*

    If you define more than one rule group in the first or last Firewall Manager rule groups, WAF evaluates each request against the rule groups in order, starting from the lowest priority setting. The priorities don't need to be consecutive, but they must all be different.

    *)
  5. name : entity_name;
    (*

    The name of the rule group. You cannot change the name of a rule group after you create it.

    *)
}

A rule group that's defined for an Firewall Manager WAF policy.

type nonrec firewall_manager_rule_groups = firewall_manager_rule_group list
type nonrec response_content_type =
  1. | APPLICATION_JSON
  2. | TEXT_HTML
  3. | TEXT_PLAIN
type nonrec response_content = string
type nonrec custom_response_body = {
  1. content : response_content;
    (*

    The payload of the custom response.

    You can use JSON escape strings in JSON content. To do this, you must specify JSON content in the ContentType setting.

    For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

    *)
  2. content_type : response_content_type;
    (*

    The type of content in the payload that you are defining in the Content string.

    *)
}

The response body to use in a custom response to a web request. This is referenced by key from CustomResponse CustomResponseBodyKey.

type nonrec custom_response_bodies = (entity_name * custom_response_body) list
type nonrec token_domain = string
type nonrec token_domains = token_domain list
type nonrec size_inspection_limit =
  1. | KB_64
  2. | KB_48
  3. | KB_32
  4. | KB_16
type nonrec request_body_associated_resource_type_config = {
  1. default_size_inspection_limit : size_inspection_limit;
    (*

    Specifies the maximum size of the web request body component that an associated CloudFront, API Gateway, Amazon Cognito, App Runner, or Verified Access resource should send to WAF for inspection. This applies to statements in the web ACL that inspect the body or JSON body.

    Default: 16 KB (16,384 bytes)

    *)
}

Customizes the maximum size of the request body that your protected CloudFront, API Gateway, Amazon Cognito, App Runner, and Verified Access resources forward to WAF for inspection. The default size is 16 KB (16,384 bytes). You can change the setting for any of the available resource types.

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

Example JSON: { "API_GATEWAY": "KB_48", "APP_RUNNER_SERVICE": "KB_32" }

For Application Load Balancer and AppSync, the limit is fixed at 8 KB (8,192 bytes).

This is used in the AssociationConfig of the web ACL.

type nonrec associated_resource_type =
  1. | VERIFIED_ACCESS_INSTANCE
  2. | APP_RUNNER_SERVICE
  3. | COGNITO_USER_POOL
  4. | API_GATEWAY
  5. | CLOUDFRONT
type nonrec association_config = {
  1. request_body : request_body option;
    (*

    Customizes the maximum size of the request body that your protected CloudFront, API Gateway, Amazon Cognito, App Runner, and Verified Access resources forward to WAF for inspection. The default size is 16 KB (16,384 bytes). You can change the setting for any of the available resource types.

    You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

    Example JSON: { "API_GATEWAY": "KB_48", "APP_RUNNER_SERVICE": "KB_32" }

    For Application Load Balancer and AppSync, the limit is fixed at 8 KB (8,192 bytes).

    *)
}

Specifies custom configurations for the associations between the web ACL and protected resources.

Use this to customize the maximum size of the request body that your protected resources forward to WAF for inspection. You can customize this setting for CloudFront, API Gateway, Amazon Cognito, App Runner, or Verified Access resources. The default setting is 16 KB (16,384 bytes).

You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

For Application Load Balancer and AppSync, the limit is fixed at 8 KB (8,192 bytes).

type nonrec low_reputation_mode =
  1. | ALWAYS_ON
  2. | ACTIVE_UNDER_DDOS
type nonrec on_source_d_do_s_protection_config = {
  1. alb_low_reputation_mode : low_reputation_mode;
    (*

    The level of DDoS protection that applies to web ACLs associated with Application Load Balancers. ACTIVE_UNDER_DDOS protection is enabled by default whenever a web ACL is associated with an Application Load Balancer. In the event that an Application Load Balancer experiences high-load conditions or suspected DDoS attacks, the ACTIVE_UNDER_DDOS protection automatically rate limits traffic from known low reputation sources without disrupting Application Load Balancer availability. ALWAYS_ON protection provides constant, always-on monitoring of known low reputation sources for suspected DDoS attacks. While this provides a higher level of protection, there may be potential impacts on legitimate traffic.

    *)
}

Configures the level of DDoS protection that applies to web ACLs associated with Application Load Balancers.

type nonrec attribute_name = string
type nonrec attribute_value = string
type nonrec attribute_values = attribute_value list
type nonrec application_attribute = {
  1. values : attribute_values option;
    (*

    Specifies the attribute value.

    *)
  2. name : attribute_name option;
    (*

    Specifies the attribute name.

    *)
}

Application details defined during the web ACL creation process. Application attributes help WAF give recommendations for protection packs.

type nonrec application_attributes = application_attribute list
type nonrec application_config = {
  1. attributes : application_attributes option;
    (*

    Contains the attribute name and a list of values for that attribute.

    *)
}

A list of ApplicationAttributes that contains information about the application.

type nonrec web_ac_l = {
  1. application_config : application_config option;
    (*

    Returns a list of ApplicationAttributes.

    *)
  2. on_source_d_do_s_protection_config : on_source_d_do_s_protection_config option;
    (*

    Configures the level of DDoS protection that applies to web ACLs associated with Application Load Balancers.

    *)
  3. retrofitted_by_firewall_manager : boolean_ option;
    (*

    Indicates whether this web ACL was created by a customer account and then retrofitted by Firewall Manager. If true, then the web ACL is currently being managed by a Firewall Manager WAF policy, and only Firewall Manager can manage any Firewall Manager rule groups in the web ACL. See also the properties ManagedByFirewallManager, PreProcessFirewallManagerRuleGroups, and PostProcessFirewallManagerRuleGroups.

    *)
  4. association_config : association_config option;
    (*

    Specifies custom configurations for the associations between the web ACL and protected resources.

    Use this to customize the maximum size of the request body that your protected resources forward to WAF for inspection. You can customize this setting for CloudFront, API Gateway, Amazon Cognito, App Runner, or Verified Access resources. The default setting is 16 KB (16,384 bytes).

    You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

    For Application Load Balancer and AppSync, the limit is fixed at 8 KB (8,192 bytes).

    *)
  5. token_domains : token_domains option;
    (*

    Specifies the domains that WAF should accept in a web request token. This enables the use of tokens across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web Services resource that the web ACL is protecting. If you don't specify a list of token domains, WAF accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts the resource's host domain plus all domains in the token domain list, including their prefixed subdomains.

    *)
  6. challenge_config : challenge_config option;
    (*

    Specifies how WAF should handle challenge evaluations for rules that don't have their own ChallengeConfig settings. If you don't specify this, WAF uses its default settings for ChallengeConfig.

    *)
  7. captcha_config : captcha_config option;
    (*

    Specifies how WAF should handle CAPTCHA evaluations for rules that don't have their own CaptchaConfig settings. If you don't specify this, WAF uses its default settings for CaptchaConfig.

    *)
  8. custom_response_bodies : custom_response_bodies option;
    (*

    A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the web ACL, and then use them in the rules and default actions that you define in the web ACL.

    For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

    For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

    *)
  9. label_namespace : label_name option;
    (*

    The label namespace prefix for this web ACL. All labels added by rules in this web ACL have this prefix.

    • The syntax for the label namespace prefix for a web ACL is the following:

      awswaf::webacl::
    • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

      :
    *)
  10. managed_by_firewall_manager : boolean_ option;
    (*

    Indicates whether this web ACL was created by Firewall Manager and is being managed by Firewall Manager. If true, then only Firewall Manager can delete the web ACL or any Firewall Manager rule groups in the web ACL. See also the properties RetrofittedByFirewallManager, PreProcessFirewallManagerRuleGroups, and PostProcessFirewallManagerRuleGroups.

    *)
  11. post_process_firewall_manager_rule_groups : firewall_manager_rule_groups option;
    (*

    The last set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF policy and contains only rule group references. You can't alter these. Any rules and rule groups that you define for the web ACL are prioritized before these.

    In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.

    *)
  12. pre_process_firewall_manager_rule_groups : firewall_manager_rule_groups option;
    (*

    The first set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF policy and contains only rule group references. You can't alter these. Any rules and rule groups that you define for the web ACL are prioritized after these.

    In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.

    *)
  13. capacity : consumed_capacity option;
    (*

    The web ACL capacity units (WCUs) currently being used by this web ACL.

    WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

    *)
  14. data_protection_config : data_protection_config option;
    (*

    Specifies data protection to apply to the web request data for the web ACL. This is a web ACL level data protection option.

    The data protection that you configure for the web ACL alters the data that's available for any other data collection activity, including your WAF logging destinations, web ACL request sampling, and Amazon Security Lake data collection and management. Your other option for data protection is in the logging configuration, which only affects logging.

    *)
  15. visibility_config : visibility_config;
    (*

    Defines and enables Amazon CloudWatch metrics and web request sample collection.

    *)
  16. rules : rules option;
    (*

    The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

    *)
  17. description : entity_description option;
    (*

    A description of the web ACL that helps with identification.

    *)
  18. default_action : default_action;
    (*

    The action to perform if none of the Rules contained in the WebACL match.

    *)
  19. ar_n : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the web ACL that you want to associate with the resource.

    *)
  20. id : entity_id;
    (*

    A unique identifier for the WebACL. This ID is returned in the responses to create and list commands. You use this ID to do things like get, update, and delete a WebACL.

    *)
  21. name : entity_name;
    (*

    The name of the web ACL. You cannot change the name of a web ACL after you create it.

    *)
}

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 Rule, RuleGroup, and managed rule group. You can associate a web ACL with one or more Amazon Web Services resources to protect. The resource types include Amazon CloudFront distribution, Amazon API Gateway REST API, Application Load Balancer, AppSync GraphQL API, Amazon Cognito user pool, App Runner service, Amplify application, and Amazon Web Services Verified Access instance.

type nonrec error_message = string
type nonrec waf_unsupported_aggregate_key_type_exception = {
  1. message : error_message option;
}

The rule that you've named doesn't aggregate solely on the IP address or solely on the forwarded IP address. This call is only available for rate-based rules with an AggregateKeyType setting of IP or FORWARDED_IP.

type nonrec waf_unavailable_entity_exception = {
  1. message : error_message option;
}

WAF couldn’t retrieve a resource that you specified for this operation. If you've just created a resource that you're using in this operation, you might just need to wait a few minutes. It can take from a few seconds to a number of minutes for changes to propagate. Verify the resource specifications in your request parameters and then retry the operation.

type nonrec waf_tag_operation_internal_error_exception = {
  1. message : error_message option;
}

WAF couldn’t perform your tagging operation because of an internal error. Retry your request.

type nonrec waf_tag_operation_exception = {
  1. message : error_message option;
}

An error occurred during the tagging operation. Retry your request.

type nonrec waf_subscription_not_found_exception = {
  1. message : error_message option;
}

You tried to use a managed rule group that's available by subscription, but you aren't subscribed to it yet.

type nonrec waf_service_linked_role_error_exception = {
  1. message : error_message option;
}

WAF is not able to access the service linked role. This can be caused by a previous PutLoggingConfiguration 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 DeleteServiceLinkedRole request, which can lock the role for 15 minutes or more. If you recently made a call to DeleteServiceLinkedRole, 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.

type nonrec waf_optimistic_lock_exception = {
  1. message : error_message option;
}

WAF couldn’t save your changes because you tried to update or delete a resource that has changed since you last retrieved it. Get the resource again, make any changes you need to make to the new copy, and retry your operation.

type nonrec waf_nonexistent_item_exception = {
  1. message : error_message option;
}

WAF couldn’t perform the operation because your resource doesn't exist. If you've just created a resource that you're using in this operation, you might just need to wait a few minutes. It can take from a few seconds to a number of minutes for changes to propagate.

type nonrec waf_log_destination_permission_issue_exception = {
  1. message : error_message option;
}

The operation failed because you don't have the permissions that your logging configuration requires. For information, see Logging web ACL traffic information in the WAF Developer Guide.

type nonrec source_type = string
type nonrec waf_limits_exceeded_exception = {
  1. source_type : source_type option;
    (*

    Source type for the exception.

    *)
  2. message : error_message option;
}

WAF couldn’t perform the operation because you exceeded your resource limit. For example, the maximum number of WebACL objects that you can create for an Amazon Web Services account. For more information, see WAF quotas in the WAF Developer Guide.

type nonrec waf_invalid_resource_exception = {
  1. message : error_message option;
}

WAF couldn’t perform the operation because the resource that you requested isn’t valid. Check the resource, and try again.

type nonrec waf_invalid_permission_policy_exception = {
  1. message : error_message option;
}

The operation failed because the specified policy isn't in the proper format.

The policy specifications must conform to the following:

  • The policy must be composed using IAM Policy version 2012-10-17.
  • The policy must include specifications for Effect, Action, and Principal.
  • Effect must specify Allow.
  • Action must specify wafv2:CreateWebACL, wafv2:UpdateWebACL, and wafv2:PutFirewallManagerRuleGroups and may optionally specify wafv2:GetRuleGroup. WAF rejects any extra actions or wildcard actions in the policy.
  • The policy must not include a Resource parameter.

For more information, see IAM Policies.

type nonrec parameter_exception_field =
  1. | LOW_REPUTATION_MODE
  2. | DATA_PROTECTION_CONFIG
  3. | ACP_RULE_SET_RESPONSE_INSPECTION
  4. | CUSTOM_KEYS
  5. | SCOPE_DOWN
  6. | ASSOCIATED_RESOURCE_TYPE
  7. | ATP_RULE_SET_RESPONSE_INSPECTION
  8. | TOKEN_DOMAIN
  9. | CHALLENGE_CONFIG
  10. | OVERSIZE_HANDLING
  11. | MAP_MATCH_SCOPE
  12. | COOKIE_MATCH_PATTERN
  13. | HEADER_MATCH_PATTERN
  14. | PAYLOAD_TYPE
  15. | MANAGED_RULE_GROUP_CONFIG
  16. | LOG_DESTINATION
  17. | ASSOCIABLE_RESOURCE
  18. | CHANGE_PROPAGATION_STATUS
  19. | EXPIRE_TIMESTAMP
  20. | FILTER_CONDITION
  21. | LOGGING_FILTER
  22. | BODY_PARSING_FALLBACK_BEHAVIOR
  23. | JSON_MATCH_SCOPE
  24. | JSON_MATCH_PATTERN
  25. | CUSTOM_RESPONSE_BODY
  26. | CUSTOM_RESPONSE
  27. | RESPONSE_CONTENT_TYPE
  28. | CUSTOM_REQUEST_HANDLING
  29. | HEADER_NAME
  30. | IP_SET_FORWARDED_IP_CONFIG
  31. | FORWARDED_IP_CONFIG
  32. | POSITION
  33. | FALLBACK_BEHAVIOR
  34. | FIREWALL_MANAGER_STATEMENT
  35. | METRIC_NAME
  36. | TAG_KEYS
  37. | TAGS
  38. | RESOURCE_TYPE
  39. | RESOURCE_ARN
  40. | SCOPE_VALUE
  41. | OVERRIDE_ACTION
  42. | ENTITY_LIMIT
  43. | RULE_ACTION
  44. | DEFAULT_ACTION
  45. | SINGLE_HEADER
  46. | SINGLE_QUERY_ARGUMENT
  47. | TEXT_TRANSFORMATION
  48. | FIELD_TO_MATCH
  49. | IP_ADDRESS_VERSION
  50. | IP_ADDRESS
  51. | NOT_STATEMENT
  52. | OR_STATEMENT
  53. | AND_STATEMENT
  54. | LABEL_MATCH_STATEMENT
  55. | MANAGED_RULE_SET_STATEMENT
  56. | IP_SET_REFERENCE_STATEMENT
  57. | REGEX_PATTERN_REFERENCE_STATEMENT
  58. | RULE_GROUP_REFERENCE_STATEMENT
  59. | RATE_BASED_STATEMENT
  60. | GEO_MATCH_STATEMENT
  61. | SIZE_CONSTRAINT_STATEMENT
  62. | XSS_MATCH_STATEMENT
  63. | SQLI_MATCH_STATEMENT
  64. | BYTE_MATCH_STATEMENT
  65. | STATEMENT
  66. | EXCLUDED_RULE
  67. | RULE
  68. | MANAGED_RULE_SET
  69. | IP_SET
  70. | REGEX_PATTERN_SET
  71. | RULE_GROUP
  72. | WEB_ACL
type nonrec parameter_exception_parameter = string
type nonrec error_reason = string
type nonrec waf_invalid_parameter_exception = {
  1. reason : error_reason option;
    (*

    Additional information about the exception.

    *)
  2. parameter : parameter_exception_parameter option;
    (*

    The invalid parameter that resulted in the exception.

    *)
  3. field : parameter_exception_field option;
    (*

    The settings where the invalid parameter was found.

    *)
  4. message : error_message option;
}

The operation failed because WAF didn't recognize a parameter in the request. For example:

  • You specified a parameter name or value that isn't valid.
  • Your nested statement isn't valid. You might have tried to nest a statement that can’t be nested.
  • You tried to update a WebACL with a DefaultAction that isn't among the types available at DefaultAction.
  • Your request references an ARN that is malformed, or corresponds to a resource with which a web ACL can't be associated.
type nonrec waf_invalid_operation_exception = {
  1. message : error_message option;
}

The operation isn't valid.

type nonrec waf_internal_error_exception = {
  1. message : error_message option;
}

Your request is valid, but WAF couldn’t perform the operation because of a system problem. Retry your request.

type nonrec waf_expired_managed_rule_group_version_exception = {
  1. message : error_message option;
}

The operation failed because the specified version for the managed rule group has expired. You can retrieve the available versions for the managed rule group by calling ListAvailableManagedRuleGroupVersions.

type nonrec waf_duplicate_item_exception = {
  1. message : error_message option;
}

WAF couldn’t perform the operation because the resource that you tried to save is a duplicate of an existing one.

type nonrec waf_configuration_warning_exception = {
  1. message : error_message option;
}

The operation failed because you are inspecting the web request body, headers, or cookies without specifying how to handle oversize components. Rules that inspect the body must either provide an OversizeHandling configuration or they must be preceded by a SizeConstraintStatement that blocks the body content from being too large. Rules that inspect the headers or cookies must provide an OversizeHandling configuration.

Provide the handling configuration and retry your operation.

Alternately, you can suppress this warning by adding the following tag to the resource that you provide to this operation: Tag (key:WAF:OversizeFieldsHandlingConstraintOptOut, value:true).

type nonrec waf_associated_item_exception = {
  1. message : error_message option;
}

WAF couldn’t perform the operation because your resource is being used by another resource or it’s associated with another resource.

type nonrec time_window_day = int
type nonrec version_to_publish = {
  1. forecasted_lifetime : time_window_day option;
    (*

    The amount of time the vendor expects this version of the managed rule group to last, in days.

    *)
  2. associated_rule_group_arn : resource_arn option;
    (*

    The Amazon Resource Name (ARN) of the vendor's rule group that's used in the published managed rule group version.

    *)
}

A version of the named managed rule group, that the rule group's vendor publishes for use by customers.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

type nonrec versions_to_publish = (version_key_string * version_to_publish) list
type nonrec update_web_acl_response = {
  1. next_lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns this token to your update requests. You use NextLockToken in the same manner as you use LockToken.

    *)
}
type nonrec scope =
  1. | REGIONAL
  2. | CLOUDFRONT
type nonrec update_web_acl_request = {
  1. on_source_d_do_s_protection_config : on_source_d_do_s_protection_config option;
    (*

    Specifies the type of DDoS protection to apply to web request data for a web ACL. For most scenarios, it is recommended to use the default protection level, ACTIVE_UNDER_DDOS. If a web ACL is associated with multiple Application Load Balancers, the changes you make to DDoS protection in that web ACL will apply to all associated Application Load Balancers.

    *)
  2. association_config : association_config option;
    (*

    Specifies custom configurations for the associations between the web ACL and protected resources.

    Use this to customize the maximum size of the request body that your protected resources forward to WAF for inspection. You can customize this setting for CloudFront, API Gateway, Amazon Cognito, App Runner, or Verified Access resources. The default setting is 16 KB (16,384 bytes).

    You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

    For Application Load Balancer and AppSync, the limit is fixed at 8 KB (8,192 bytes).

    *)
  3. token_domains : token_domains option;
    (*

    Specifies the domains that WAF should accept in a web request token. This enables the use of tokens across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web Services resource that the web ACL is protecting. If you don't specify a list of token domains, WAF accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts the resource's host domain plus all domains in the token domain list, including their prefixed subdomains.

    Example JSON: "TokenDomains": { "mywebsite.com", "myotherwebsite.com" }

    Public suffixes aren't allowed. For example, you can't use gov.au or co.uk as token domains.

    *)
  4. challenge_config : challenge_config option;
    (*

    Specifies how WAF should handle challenge evaluations for rules that don't have their own ChallengeConfig settings. If you don't specify this, WAF uses its default settings for ChallengeConfig.

    *)
  5. captcha_config : captcha_config option;
    (*

    Specifies how WAF should handle CAPTCHA evaluations for rules that don't have their own CaptchaConfig settings. If you don't specify this, WAF uses its default settings for CaptchaConfig.

    *)
  6. custom_response_bodies : custom_response_bodies option;
    (*

    A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the web ACL, and then use them in the rules and default actions that you define in the web ACL.

    For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

    For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

    *)
  7. lock_token : lock_token;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  8. data_protection_config : data_protection_config option;
    (*

    Specifies data protection to apply to the web request data for the web ACL. This is a web ACL level data protection option.

    The data protection that you configure for the web ACL alters the data that's available for any other data collection activity, including your WAF logging destinations, web ACL request sampling, and Amazon Security Lake data collection and management. Your other option for data protection is in the logging configuration, which only affects logging.

    *)
  9. visibility_config : visibility_config;
    (*

    Defines and enables Amazon CloudWatch metrics and web request sample collection.

    *)
  10. rules : rules option;
    (*

    The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

    *)
  11. description : entity_description option;
    (*

    A description of the web ACL that helps with identification.

    *)
  12. default_action : default_action;
    (*

    The action to perform if none of the Rules contained in the WebACL match.

    *)
  13. id : entity_id;
    (*

    The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  14. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  15. name : entity_name;
    (*

    The name of the web ACL. You cannot change the name of a web ACL after you create it.

    *)
}
type nonrec update_rule_group_response = {
  1. next_lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns this token to your update requests. You use NextLockToken in the same manner as you use LockToken.

    *)
}
type nonrec update_rule_group_request = {
  1. custom_response_bodies : custom_response_bodies option;
    (*

    A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the rule group, and then use them in the rules that you define in the rule group.

    For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

    For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

    *)
  2. lock_token : lock_token;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  3. visibility_config : visibility_config;
    (*

    Defines and enables Amazon CloudWatch metrics and web request sample collection.

    *)
  4. rules : rules option;
    (*

    The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

    *)
  5. description : entity_description option;
    (*

    A description of the rule group that helps with identification.

    *)
  6. id : entity_id;
    (*

    A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  7. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  8. name : entity_name;
    (*

    The name of the rule group. You cannot change the name of a rule group after you create it.

    *)
}
type nonrec update_regex_pattern_set_response = {
  1. next_lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns this token to your update requests. You use NextLockToken in the same manner as you use LockToken.

    *)
}
type nonrec update_regex_pattern_set_request = {
  1. lock_token : lock_token;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  2. regular_expression_list : regular_expression_list;
  3. description : entity_description option;
    (*

    A description of the set that helps with identification.

    *)
  4. id : entity_id;
    (*

    A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  5. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  6. name : entity_name;
    (*

    The name of the set. You cannot change the name after you create the set.

    *)
}
type nonrec timestamp = Smaws_Lib.CoreTypes.Timestamp.t
type nonrec update_managed_rule_set_version_expiry_date_response = {
  1. next_lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  2. expiry_timestamp : timestamp option;
    (*

    The time that the version will expire.

    Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

    *)
  3. expiring_version : version_key_string option;
    (*

    The version that is set to expire.

    *)
}
type nonrec update_managed_rule_set_version_expiry_date_request = {
  1. expiry_timestamp : timestamp;
    (*

    The time that you want the version to expire.

    Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

    *)
  2. version_to_expire : version_key_string;
    (*

    The version that you want to remove from your list of offerings for the named managed rule group.

    *)
  3. lock_token : lock_token;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  4. id : entity_id;
    (*

    A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

    *)
  5. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  6. name : entity_name;
    (*

    The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

    This name is assigned to the corresponding managed rule group, which your customers can access and use.

    *)
}
type nonrec update_ip_set_response = {
  1. next_lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns this token to your update requests. You use NextLockToken in the same manner as you use LockToken.

    *)
}
type nonrec ip_address = string
type nonrec ip_addresses = ip_address list
type nonrec update_ip_set_request = {
  1. lock_token : lock_token;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  2. addresses : ip_addresses;
    (*

    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 /0.

    Example address strings:

    • For requests that originated from the IP address 192.0.2.44, specify 192.0.2.44/32.
    • For requests that originated from IP addresses from 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24.
    • For requests that originated from the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify 1111:0000:0000:0000:0000:0000:0000:0111/128.
    • 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 1111:0000:0000:0000:0000:0000:0000:0000/64.

    For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

    Example JSON Addresses specifications:

    • Empty array: "Addresses": []
    • Array with one address: "Addresses": ["192.0.2.44/32"]
    • Array with three addresses: "Addresses": ["192.0.2.44/32", "192.0.2.0/24", "192.0.0.0/16"]
    • INVALID specification: "Addresses": [""] INVALID
    *)
  3. description : entity_description option;
    (*

    A description of the IP set that helps with identification.

    *)
  4. id : entity_id;
    (*

    A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  5. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  6. name : entity_name;
    (*

    The name of the IP set. You cannot change the name of an IPSet after you create it.

    *)
}
type nonrec untag_resource_response = unit
type nonrec tag_key = string
type nonrec tag_key_list = tag_key list
type nonrec untag_resource_request = {
  1. tag_keys : tag_key_list;
    (*

    An array of keys identifying the tags to disassociate from the resource.

    *)
  2. resource_ar_n : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the resource.

    *)
}
type nonrec uri_string = string
type nonrec time_window = {
  1. end_time : timestamp;
    (*

    The end of the time range from which you want GetSampledRequests to return a sample of the requests that your Amazon Web Services resource received. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z". You can specify any time range in the previous three hours.

    *)
  2. start_time : timestamp;
    (*

    The beginning of the time range from which you want GetSampledRequests to return a sample of the requests that your Amazon Web Services resource received. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z". You can specify any time range in the previous three hours.

    *)
}

In a GetSampledRequests request, the StartTime and EndTime objects specify the time range for which you want WAF to return a sample of web requests.

You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z". You can specify any time range in the previous three hours.

In a GetSampledRequests response, the StartTime and EndTime objects specify the time range for which WAF actually returned a sample of web requests. WAF gets the specified number of requests from among the first 5,000 requests that your Amazon Web Services resource receives during the specified time period. If your resource receives more than 5,000 requests during that period, WAF stops sampling after the 5,000th request. In that case, EndTime is the time that WAF received the 5,000th request.

type nonrec tag_value = string
type nonrec tag_resource_response = unit
type nonrec tag = {
  1. value : tag_value;
    (*

    Part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive.

    *)
  2. key : tag_key;
    (*

    Part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case-sensitive.

    *)
}

A tag associated with an Amazon Web Services resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing or other management. Typically, the tag key represents a category, such as "environment", and the tag value represents a specific value within that category, such as "test," "development," or "production". Or you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can't manage or view tags through the WAF console.

type nonrec tag_list = tag list
type nonrec tag_resource_request = {
  1. tags : tag_list;
    (*

    An array of key:value pairs to associate with the resource.

    *)
  2. resource_ar_n : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the resource.

    *)
}
type nonrec tag_info_for_resource = {
  1. tag_list : tag_list option;
    (*

    The array of Tag objects defined for the resource.

    *)
  2. resource_ar_n : resource_arn option;
    (*

    The Amazon Resource Name (ARN) of the resource.

    *)
}

The collection of tagging definitions for an Amazon Web Services resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing or other management. Typically, the tag key represents a category, such as "environment", and the tag value represents a specific value within that category, such as "test," "development," or "production". Or you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can't manage or view tags through the WAF console.

type nonrec solve_timestamp = int
type nonrec ip_string = string
type nonrec country = string
type nonrec http_method = string
type nonrec http_version = string
type nonrec header_name = string
type nonrec header_value = string
type nonrec http_header = {
  1. value : header_value option;
    (*

    The value of the HTTP header.

    *)
  2. name : header_name option;
    (*

    The name of the HTTP header.

    *)
}

Part of the response from GetSampledRequests. This is a complex type that appears as Headers in the response syntax. HTTPHeader contains the names and values of all of the headers that appear in one of the web requests.

type nonrec http_headers = http_header list
type nonrec http_request = {
  1. headers : http_headers option;
    (*

    A complex type that contains the name and value for each header in the sampled web request.

    *)
  2. http_version : http_version option;
    (*

    The HTTP version specified in the sampled web request, for example, HTTP/1.1.

    *)
  3. method_ : http_method option;
    (*

    The HTTP method specified in the sampled web request.

    *)
  4. ur_i : uri_string option;
    (*

    The URI path of the request, which identifies the resource, for example, /images/daily-ad.jpg.

    *)
  5. country : country option;
    (*

    The two-letter country code for the country that the request originated from. For a current list of country codes, see the Wikipedia entry ISO 3166-1 alpha-2.

    *)
  6. client_i_p : ip_string option;
    (*

    The IP address that the request originated from. If the web ACL is associated with a CloudFront distribution, this is the value of one of the following fields in CloudFront access logs:

    • c-ip, if the viewer did not use an HTTP proxy or a load balancer to send the request
    • x-forwarded-for, if the viewer did use an HTTP proxy or a load balancer to send the request
    *)
}

Part of the response from GetSampledRequests. This is a complex type that appears as Request in the response syntax. HTTPRequest contains information about one of the web requests.

type nonrec sample_weight = int
type nonrec action = string
type nonrec response_code = int
type nonrec failure_reason =
  1. | TOKEN_DOMAIN_MISMATCH
  2. | TOKEN_INVALID
  3. | TOKEN_EXPIRED
  4. | TOKEN_MISSING
type nonrec captcha_response = {
  1. failure_reason : failure_reason option;
    (*

    The reason for failure, populated when the evaluation of the token fails.

    *)
  2. solve_timestamp : solve_timestamp option;
    (*

    The time that the CAPTCHA was last solved for the supplied token.

    *)
  3. response_code : response_code option;
    (*

    The HTTP response code indicating the status of the CAPTCHA token in the web request. If the token is missing, invalid, or expired, this code is 405 Method Not Allowed.

    *)
}

The result from the inspection of the web request for a valid CAPTCHA token.

type nonrec challenge_response = {
  1. failure_reason : failure_reason option;
    (*

    The reason for failure, populated when the evaluation of the token fails.

    *)
  2. solve_timestamp : solve_timestamp option;
    (*

    The time that the challenge was last solved for the supplied token.

    *)
  3. response_code : response_code option;
    (*

    The HTTP response code indicating the status of the challenge token in the web request. If the token is missing, invalid, or expired, this code is 202 Request Accepted.

    *)
}

The result from the inspection of the web request for a valid challenge token.

type nonrec sampled_http_request = {
  1. overridden_action : action option;
    (*

    Used only for rule group rules that have a rule action override in place in the web ACL. This is the action that the rule group rule is configured for, and not the action that was applied to the request. The action that WAF applied is the Action value.

    *)
  2. challenge_response : challenge_response option;
    (*

    The Challenge response for the request.

    *)
  3. captcha_response : captcha_response option;
    (*

    The CAPTCHA response for the request.

    *)
  4. labels : labels option;
    (*

    Labels applied to the web request by matching rules. WAF applies fully qualified labels to matching web requests. A fully qualified label is the concatenation of a label namespace and a rule label. The rule's rule group or web ACL defines the label namespace.

    For example, awswaf:111122223333:myRuleGroup:testRules:testNS1:testNS2:labelNameA or awswaf:managed:aws:managed-rule-set:header:encoding:utf8.

    *)
  5. response_code_sent : response_status_code option;
    (*

    The response code that was sent for the request.

    *)
  6. request_headers_inserted : http_headers option;
    (*

    Custom request headers inserted by WAF into the request, according to the custom request configuration for the matching rule action.

    *)
  7. rule_name_within_rule_group : entity_name option;
    (*

    The name of the Rule that the request matched. For managed rule groups, the format for this name is

    ##

    . For your own rule groups, the format for this name is

    #

    . If the rule is not in a rule group, this field is absent.

    *)
  8. action : action option;
    (*

    The action that WAF applied to the request.

    *)
  9. timestamp : timestamp option;
    (*

    The time at which WAF received the request from your Amazon Web Services resource, in Unix time format (in seconds).

    *)
  10. weight : sample_weight;
    (*

    A value that indicates how one result in the response relates proportionally to other results in the response. For example, a result that has a weight of 2 represents roughly twice as many web requests as a result that has a weight of 1.

    *)
  11. request : http_request;
    (*

    A complex type that contains detailed information about the request.

    *)
}

Represents a single sampled web request. The response from GetSampledRequests includes a SampledHTTPRequests complex type that appears as SampledRequests in the response syntax. SampledHTTPRequests contains an array of SampledHTTPRequest objects.

type nonrec sampled_http_requests = sampled_http_request list
type nonrec rule_summary = {
  1. action : rule_action option;
    (*

    The action that WAF should take on a web request when it matches a rule's statement. Settings at the web ACL level can override the rule action setting.

    *)
  2. name : entity_name option;
    (*

    The name of the rule.

    *)
}

High-level information about a Rule, returned by operations like DescribeManagedRuleGroup. This provides information like the ID, that you can use to retrieve and manage a RuleGroup, and the ARN, that you provide to the RuleGroupReferenceStatement to use the rule group in a Rule.

type nonrec rule_summaries = rule_summary list
type nonrec rule_group_summary = {
  1. ar_n : resource_arn option;
    (*

    The Amazon Resource Name (ARN) of the entity.

    *)
  2. lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  3. description : entity_description option;
    (*

    A description of the rule group that helps with identification.

    *)
  4. id : entity_id option;
    (*

    A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  5. name : entity_name option;
    (*

    The name of the data type instance. You cannot change the name after you create the instance.

    *)
}

High-level information about a RuleGroup, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RuleGroup, and the ARN, that you provide to the RuleGroupReferenceStatement to use the rule group in a Rule.

type nonrec rule_group_summaries = rule_group_summary list
type nonrec capacity_unit = int
type nonrec label_summary = {
  1. name : label_name option;
    (*

    An individual label specification.

    *)
}

List of labels used by one or more of the rules of a RuleGroup. This summary object is used for the following rule group lists:

  • AvailableLabels - Labels that rules add to matching requests. These labels are defined in the RuleLabels for a Rule.
  • ConsumedLabels - Labels that rules match against. These labels are defined in a LabelMatchStatement specification, in the Statement definition of a rule.
type nonrec label_summaries = label_summary list
type nonrec rule_group = {
  1. consumed_labels : label_summaries option;
    (*

    The labels that one or more rules in this rule group match against in label match statements. These labels are defined in a LabelMatchStatement specification, in the Statement definition of a rule.

    *)
  2. available_labels : label_summaries option;
    (*

    The labels that one or more rules in this rule group add to matching web requests. These labels are defined in the RuleLabels for a Rule.

    *)
  3. custom_response_bodies : custom_response_bodies option;
    (*

    A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the rule group, and then use them in the rules that you define in the rule group.

    For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

    For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

    *)
  4. label_namespace : label_name option;
    (*

    The label namespace prefix for this rule group. All labels added by rules in this rule group have this prefix.

    • The syntax for the label namespace prefix for your rule groups is the following:

      awswaf::rulegroup::
    • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

      :
    *)
  5. visibility_config : visibility_config;
    (*

    Defines and enables Amazon CloudWatch metrics and web request sample collection.

    *)
  6. rules : rules option;
    (*

    The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

    *)
  7. description : entity_description option;
    (*

    A description of the rule group that helps with identification.

    *)
  8. ar_n : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the entity.

    *)
  9. capacity : capacity_unit;
    (*

    The web ACL capacity units (WCUs) required for this rule group.

    When you create your own rule group, you define this, and you cannot change it after creation. When you add or modify the rules in a rule group, WAF enforces this limit. You can check the capacity for a set of rules using CheckCapacity.

    WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

    *)
  10. id : entity_id;
    (*

    A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  11. name : entity_name;
    (*

    The name of the rule group. You cannot change the name of a rule group after you create it.

    *)
}

A rule group defines a collection of rules to inspect and control web requests that you can use in a WebACL. When you create a rule group, you define an immutable capacity limit. If you update a rule group, you must stay within the capacity. This allows others to reuse the rule group with confidence in its capacity requirements.

type nonrec resource_type =
  1. | AMPLIFY
  2. | VERIFIED_ACCESS_INSTANCE
  3. | APP_RUNNER_SERVICE
  4. | COGNITIO_USER_POOL
  5. | APPSYNC
  6. | API_GATEWAY
  7. | APPLICATION_LOAD_BALANCER
type nonrec resource_arns = resource_arn list
type nonrec release_summary = {
  1. timestamp : timestamp option;
    (*

    The timestamp of the release.

    *)
  2. release_version : version_key_string option;
    (*

    The release version.

    *)
}

High level information for an SDK release.

type nonrec release_summaries = release_summary list
type nonrec release_notes = string
type nonrec regex_pattern_set_summary = {
  1. ar_n : resource_arn option;
    (*

    The Amazon Resource Name (ARN) of the entity.

    *)
  2. lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  3. description : entity_description option;
    (*

    A description of the set that helps with identification.

    *)
  4. id : entity_id option;
    (*

    A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  5. name : entity_name option;
    (*

    The name of the data type instance. You cannot change the name after you create the instance.

    *)
}

High-level information about a RegexPatternSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RegexPatternSet, and the ARN, that you provide to the RegexPatternSetReferenceStatement to use the pattern set in a Rule.

type nonrec regex_pattern_set_summaries = regex_pattern_set_summary list
type nonrec regex_pattern_set = {
  1. regular_expression_list : regular_expression_list option;
    (*

    The regular expression patterns in the set.

    *)
  2. description : entity_description option;
    (*

    A description of the set that helps with identification.

    *)
  3. ar_n : resource_arn option;
    (*

    The Amazon Resource Name (ARN) of the entity.

    *)
  4. id : entity_id option;
    (*

    A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  5. name : entity_name option;
    (*

    The name of the set. You cannot change the name after you create the set.

    *)
}

Contains one or more regular expressions.

WAF assigns an ARN to each RegexPatternSet that you create. To use a set in a rule, you provide the ARN to the Rule statement RegexPatternSetReferenceStatement.

type nonrec redacted_fields = field_to_match list
type nonrec ip_address_version =
  1. | IPV6
  2. | IPV4
type nonrec rate_based_statement_managed_keys_ip_set = {
  1. addresses : ip_addresses option;
    (*

    The IP addresses that are currently blocked.

    *)
  2. ip_address_version : ip_address_version option;
    (*

    The version of the IP addresses, either IPV4 or IPV6.

    *)
}

The set of IP addresses that are currently blocked for a RateBasedStatement. This is only available for rate-based rules that aggregate on just the IP address, with the AggregateKeyType set to IP or FORWARDED_IP.

A rate-based rule applies its rule action to requests from IP addresses that are in the rule's managed keys list and that match the rule's scope-down statement. When a rule has no scope-down statement, it applies the action to all requests from the IP addresses that are in the list. The rule applies its rule action to rate limit the matching requests. The action is usually Block but it can be any valid rule action except for Allow.

The maximum number of IP addresses that can be rate limited by a single rate-based rule instance is 10,000. If more than 10,000 addresses exceed the rate limit, WAF limits those with the highest rates.

type nonrec put_permission_policy_response = unit
type nonrec policy_string = string
type nonrec put_permission_policy_request = {
  1. policy : policy_string;
    (*

    The policy to attach to the specified rule group.

    The policy specifications must conform to the following:

    • The policy must be composed using IAM Policy version 2012-10-17.
    • The policy must include specifications for Effect, Action, and Principal.
    • Effect must specify Allow.
    • Action must specify wafv2:CreateWebACL, wafv2:UpdateWebACL, and wafv2:PutFirewallManagerRuleGroups and may optionally specify wafv2:GetRuleGroup. WAF rejects any extra actions or wildcard actions in the policy.
    • The policy must not include a Resource parameter.

    For more information, see IAM Policies.

    *)
  2. resource_arn : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the RuleGroup to which you want to attach the policy.

    *)
}
type nonrec put_managed_rule_set_versions_response = {
  1. next_lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
}
type nonrec put_managed_rule_set_versions_request = {
  1. versions_to_publish : versions_to_publish option;
    (*

    The versions of the named managed rule group that you want to offer to your customers.

    *)
  2. recommended_version : version_key_string option;
    (*

    The version of the named managed rule group that you'd like your customers to choose, from among your version offerings.

    *)
  3. lock_token : lock_token;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  4. id : entity_id;
    (*

    A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

    *)
  5. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  6. name : entity_name;
    (*

    The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

    This name is assigned to the corresponding managed rule group, which your customers can access and use.

    *)
}
type nonrec log_destination_configs = resource_arn list
type nonrec filter_behavior =
  1. | DROP
  2. | KEEP
type nonrec filter_requirement =
  1. | MEETS_ANY
  2. | MEETS_ALL
type nonrec action_value =
  1. | EXCLUDED_AS_COUNT
  2. | CHALLENGE
  3. | CAPTCHA
  4. | COUNT
  5. | BLOCK
  6. | ALLOW
type nonrec action_condition = {
  1. action : action_value;
    (*

    The action setting that a log record must contain in order to meet the condition. This is the action that WAF applied to the web request.

    For rule groups, this is either the configured rule action setting, or if you've applied a rule action override to the rule, it's the override action. The value EXCLUDED_AS_COUNT matches on excluded rules and also on rules that have a rule action override of Count.

    *)
}

A single action condition for a Condition in a logging filter.

type nonrec label_name_condition = {
  1. label_name : label_name;
    (*

    The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.

    *)
}

A single label name condition for a Condition in a logging filter.

type nonrec condition = {
  1. label_name_condition : label_name_condition option;
    (*

    A single label name condition. This is the fully qualified label name that a log record must contain in order to meet the condition. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.

    *)
  2. action_condition : action_condition option;
    (*

    A single action condition. This is the action setting that a log record must contain in order to meet the condition.

    *)
}

A single match condition for a Filter.

type nonrec conditions = condition list
type nonrec filter = {
  1. conditions : conditions;
    (*

    Match conditions for the filter.

    *)
  2. requirement : filter_requirement;
    (*

    Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.

    *)
  3. behavior : filter_behavior;
    (*

    How to handle logs that satisfy the filter's conditions and requirement.

    *)
}

A single logging filter, used in LoggingFilter.

type nonrec filters = filter list
type nonrec logging_filter = {
  1. default_behavior : filter_behavior;
    (*

    Default handling for logs that don't match any of the specified filtering conditions.

    *)
  2. filters : filters;
    (*

    The filters that you want to apply to the logs.

    *)
}

Filtering that specifies which web requests are kept in the logs and which are dropped, defined for a web ACL's LoggingConfiguration.

You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.

type nonrec log_type =
  1. | WAF_LOGS
type nonrec log_scope =
  1. | SECURITY_LAKE
  2. | CUSTOMER
type nonrec logging_configuration = {
  1. log_scope : log_scope option;
    (*

    The owner of the logging configuration, which must be set to CUSTOMER for the configurations that you manage.

    The log scope SECURITY_LAKE indicates a configuration that is managed through Amazon Security Lake. You can use Security Lake to collect log and event data from various sources for normalization, analysis, and management. For information, see Collecting data from Amazon Web Services services in the Amazon Security Lake user guide.

    Default: CUSTOMER

    *)
  2. log_type : log_type option;
    (*

    Used to distinguish between various logging options. Currently, there is one option.

    Default: WAF_LOGS

    *)
  3. logging_filter : logging_filter option;
    (*

    Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.

    *)
  4. managed_by_firewall_manager : boolean_ option;
    (*

    Indicates whether the logging configuration was created by Firewall Manager, as part of an WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.

    The logging configuration can be created by Firewall Manager for use with any web ACL that Firewall Manager is using for an WAF policy. Web ACLs that Firewall Manager creates and uses have their ManagedByFirewallManager property set to true. Web ACLs that were created by a customer account and then retrofitted by Firewall Manager for use by a policy have their RetrofittedByFirewallManager property set to true. For either case, any corresponding logging configuration will indicate ManagedByFirewallManager.

    *)
  5. redacted_fields : redacted_fields option;
    (*

    The parts of the request that you want to keep out of the logs.

    For example, if you redact the SingleHeader field, the HEADER field in the logs will be REDACTED for all rules that use the SingleHeader FieldToMatch setting.

    If you configure data protection for the web ACL, the protection applies to the data that WAF sends to the logs.

    Redaction applies only to the component that's specified in the rule's FieldToMatch setting, so the SingleHeader redaction doesn't apply to rules that use the Headers FieldToMatch.

    You can specify only the following fields for redaction: UriPath, QueryString, SingleHeader, and Method.

    This setting has no impact on request sampling. You can only exclude fields from request sampling by disabling sampling in the web ACL visibility configuration or by configuring data protection for the web ACL.

    *)
  6. log_destination_configs : log_destination_configs;
    (*

    The logging destination configuration that you want to associate with the web ACL.

    You can associate one logging destination to a web ACL.

    *)
  7. resource_arn : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.

    *)
}

Defines an association between logging destinations and a web ACL resource, for logging from WAF. As part of the association, you can specify parts of the standard logging fields to keep out of the logs and you can specify filters so that you log only a subset of the logging records.

If you configure data protection for the web ACL, the protection applies to the data that WAF sends to the logs.

You can define one logging destination per web ACL.

You can access information about the traffic that WAF inspects using the following steps:

  1. Create your logging destination. You can use an Amazon CloudWatch Logs log group, an Amazon Simple Storage Service (Amazon S3) bucket, or an Amazon Kinesis Data Firehose.

    The name that you give the destination must start with aws-waf-logs-. Depending on the type of destination, you might need to configure additional settings or permissions.

    For configuration requirements and pricing information for each destination type, see Logging web ACL traffic in the WAF Developer Guide.

  2. Associate your logging destination to your web ACL using a PutLoggingConfiguration request.

When you successfully enable logging using a PutLoggingConfiguration request, WAF creates an additional role or policy that is required to write logs to the logging destination. For an Amazon CloudWatch Logs log group, WAF creates a resource policy on the log group. For an Amazon S3 bucket, WAF creates a bucket policy. For an Amazon Kinesis Data Firehose, WAF creates a service-linked role.

For additional information about web ACL logging, see Logging web ACL traffic information in the WAF Developer Guide.

type nonrec put_logging_configuration_response = {
  1. logging_configuration : logging_configuration option;
}
type nonrec put_logging_configuration_request = {
  1. logging_configuration : logging_configuration;
}
type nonrec managed_rule_set_version = {
  1. expiry_timestamp : timestamp option;
    (*

    The time that this version is set to expire.

    Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

    *)
  2. last_update_timestamp : timestamp option;
    (*

    The last time that you updated this version.

    Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

    *)
  3. publish_timestamp : timestamp option;
    (*

    The time that you first published this version.

    Times are in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z".

    *)
  4. forecasted_lifetime : time_window_day option;
    (*

    The amount of time you expect this version of your managed rule group to last, in days.

    *)
  5. capacity : capacity_unit option;
    (*

    The web ACL capacity units (WCUs) required for this rule group.

    WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

    *)
  6. associated_rule_group_arn : resource_arn option;
    (*

    The Amazon Resource Name (ARN) of the vendor rule group that's used to define the published version of your managed rule group.

    *)
}

Information for a single version of a managed rule set.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

type nonrec published_versions = (version_key_string * managed_rule_set_version) list
type nonrec product_title = string
type nonrec product_id = string
type nonrec product_description = string
type nonrec population_size = int
type nonrec platform =
  1. | ANDROID
  2. | IOS
type nonrec pagination_limit = int
type nonrec output_url = string
type nonrec next_marker = string
type nonrec mobile_sdk_release = {
  1. tags : tag_list option;
    (*

    Tags that are associated with the release.

    *)
  2. release_notes : release_notes option;
    (*

    Notes describing the release.

    *)
  3. timestamp : timestamp option;
    (*

    The timestamp of the release.

    *)
  4. release_version : version_key_string option;
    (*

    The release version.

    *)
}

Information for a release of the mobile SDK, including release notes and tags.

The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see WAF client application integration in the WAF Developer Guide.

type nonrec managed_rule_set_summary = {
  1. label_namespace : label_name option;
    (*

    The label namespace prefix for the managed rule groups that are offered to customers from this managed rule set. All labels that are added by rules in the managed rule group have this prefix.

    • The syntax for the label namespace prefix for a managed rule group is the following:

      awswaf:managed::

      :

    • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

      :
    *)
  2. ar_n : resource_arn option;
    (*

    The Amazon Resource Name (ARN) of the entity.

    *)
  3. lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  4. description : entity_description option;
    (*

    A description of the set that helps with identification.

    *)
  5. id : entity_id option;
    (*

    A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

    *)
  6. name : entity_name option;
    (*

    The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

    This name is assigned to the corresponding managed rule group, which your customers can access and use.

    *)
}

High-level information for a managed rule set.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

type nonrec managed_rule_set_summaries = managed_rule_set_summary list
type nonrec managed_rule_set = {
  1. label_namespace : label_name option;
    (*

    The label namespace prefix for the managed rule groups that are offered to customers from this managed rule set. All labels that are added by rules in the managed rule group have this prefix.

    • The syntax for the label namespace prefix for a managed rule group is the following:

      awswaf:managed::

      :

    • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

      :
    *)
  2. recommended_version : version_key_string option;
    (*

    The version that you would like your customers to use.

    *)
  3. published_versions : published_versions option;
    (*

    The versions of this managed rule set that are available for use by customers.

    *)
  4. description : entity_description option;
    (*

    A description of the set that helps with identification.

    *)
  5. ar_n : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the entity.

    *)
  6. id : entity_id;
    (*

    A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

    *)
  7. name : entity_name;
    (*

    The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

    This name is assigned to the corresponding managed rule group, which your customers can access and use.

    *)
}

A set of rules that is managed by Amazon Web Services and Amazon Web Services Marketplace sellers to provide versioned managed rule groups for customers of WAF.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

type nonrec managed_rule_group_version = {
  1. last_update_timestamp : timestamp option;
    (*

    The date and time that the managed rule group owner updated the rule group version information.

    *)
  2. name : version_key_string option;
    (*

    The version name.

    *)
}

Describes a single version of a managed rule group.

type nonrec managed_rule_group_versions = managed_rule_group_version list
type nonrec managed_rule_group_summary = {
  1. description : entity_description option;
    (*

    The description of the managed rule group, provided by Amazon Web Services Managed Rules or the Amazon Web Services Marketplace seller who manages it.

    *)
  2. versioning_supported : boolean_ option;
    (*

    Indicates whether the managed rule group is versioned. If it is, you can retrieve the versions list by calling ListAvailableManagedRuleGroupVersions.

    *)
  3. name : entity_name option;
    (*

    The name of the managed rule group. You use this, along with the vendor name, to identify the rule group.

    *)
  4. vendor_name : vendor_name option;
    (*

    The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

    *)
}

High-level information about a managed rule group, returned by ListAvailableManagedRuleGroups. This provides information like the name and vendor name, that you provide when you add a ManagedRuleGroupStatement to a web ACL. Managed rule groups include Amazon Web Services Managed Rules rule groups and Amazon Web Services Marketplace managed rule groups. To use any Amazon Web Services Marketplace managed rule group, first subscribe to the rule group through Amazon Web Services Marketplace.

type nonrec managed_rule_group_summaries = managed_rule_group_summary list
type nonrec managed_product_descriptor = {
  1. is_advanced_managed_rule_set : boolean_ option;
    (*

    Indicates whether the rule group provides an advanced set of protections, such as the the Amazon Web Services Managed Rules rule groups that are used for WAF intelligent threat mitigation.

    *)
  2. is_versioning_supported : boolean_ option;
    (*

    Indicates whether the rule group is versioned.

    *)
  3. sns_topic_arn : resource_arn option;
    (*

    The Amazon resource name (ARN) of the Amazon Simple Notification Service SNS topic that's used to provide notification of changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide.

    *)
  4. product_description : product_description option;
    (*

    A short description of the managed rule group.

    *)
  5. product_title : product_title option;
    (*

    The display name for the managed rule group. For example, Anonymous IP list or Account takeover prevention.

    *)
  6. product_id : product_id option;
    (*

    A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  7. managed_rule_set_name : entity_name option;
    (*

    The name of the managed rule group. For example, AWSManagedRulesAnonymousIpList or AWSManagedRulesATPRuleSet.

    *)
  8. vendor_name : vendor_name option;
    (*

    The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

    *)
}

The properties of a managed product, such as an Amazon Web Services Managed Rules rule group or an Amazon Web Services Marketplace managed rule group.

type nonrec managed_product_descriptors = managed_product_descriptor list
type nonrec logging_configurations = logging_configuration list
type nonrec list_web_ac_ls_response = {
  1. web_ac_ls : web_acl_summaries option;
    (*

    Array of web ACLs. If you specified a Limit in your request, this might not be the full list.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
}
type nonrec list_web_ac_ls_request = {
  1. limit : pagination_limit option;
    (*

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec list_tags_for_resource_response = {
  1. tag_info_for_resource : tag_info_for_resource option;
    (*

    The collection of tagging definitions for the resource. If you specified a Limit in your request, this might not be the full list.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
}
type nonrec list_tags_for_resource_request = {
  1. resource_ar_n : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the resource.

    *)
  2. limit : pagination_limit option;
    (*

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

    *)
  3. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
}
type nonrec list_rule_groups_response = {
  1. rule_groups : rule_group_summaries option;
    (*

    Array of rule groups. If you specified a Limit in your request, this might not be the full list.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
}
type nonrec list_rule_groups_request = {
  1. limit : pagination_limit option;
    (*

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec list_resources_for_web_acl_response = {
  1. resource_arns : resource_arns option;
    (*

    The array of Amazon Resource Names (ARNs) of the associated resources.

    *)
}
type nonrec list_resources_for_web_acl_request = {
  1. resource_type : resource_type option;
    (*

    Retrieves the web ACLs that are used by the specified resource type.

    For Amazon CloudFront, don't use this call. Instead, use the CloudFront call ListDistributionsByWebACLId. For information, see ListDistributionsByWebACLId in the Amazon CloudFront API Reference.

    If you don't provide a resource type, the call uses the resource type APPLICATION_LOAD_BALANCER.

    Default: APPLICATION_LOAD_BALANCER

    *)
  2. web_acl_arn : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the web ACL.

    *)
}
type nonrec list_regex_pattern_sets_response = {
  1. regex_pattern_sets : regex_pattern_set_summaries option;
    (*

    Array of regex pattern sets. If you specified a Limit in your request, this might not be the full list.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
}
type nonrec list_regex_pattern_sets_request = {
  1. limit : pagination_limit option;
    (*

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec list_mobile_sdk_releases_response = {
  1. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
  2. release_summaries : release_summaries option;
    (*

    The high level information for the available SDK releases. If you specified a Limit in your request, this might not be the full list.

    *)
}
type nonrec list_mobile_sdk_releases_request = {
  1. limit : pagination_limit option;
    (*

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
  3. platform : platform;
    (*

    The device platform to retrieve the list for.

    *)
}
type nonrec list_max_items = int
type nonrec list_managed_rule_sets_response = {
  1. managed_rule_sets : managed_rule_set_summaries option;
    (*

    Your managed rule sets. If you specified a Limit in your request, this might not be the full list.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
}
type nonrec list_managed_rule_sets_request = {
  1. limit : pagination_limit option;
    (*

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec list_logging_configurations_response = {
  1. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
  2. logging_configurations : logging_configurations option;
    (*

    Array of logging configurations. If you specified a Limit in your request, this might not be the full list.

    *)
}
type nonrec list_logging_configurations_request = {
  1. log_scope : log_scope option;
    (*

    The owner of the logging configuration, which must be set to CUSTOMER for the configurations that you manage.

    The log scope SECURITY_LAKE indicates a configuration that is managed through Amazon Security Lake. You can use Security Lake to collect log and event data from various sources for normalization, analysis, and management. For information, see Collecting data from Amazon Web Services services in the Amazon Security Lake user guide.

    Default: CUSTOMER

    *)
  2. limit : pagination_limit option;
    (*

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

    *)
  3. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
  4. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec ip_set_summary = {
  1. ar_n : resource_arn option;
    (*

    The Amazon Resource Name (ARN) of the entity.

    *)
  2. lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  3. description : entity_description option;
    (*

    A description of the IP set that helps with identification.

    *)
  4. id : entity_id option;
    (*

    A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  5. name : entity_name option;
    (*

    The name of the IP set. You cannot change the name of an IPSet after you create it.

    *)
}

High-level information about an IPSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage an IPSet, and the ARN, that you provide to the IPSetReferenceStatement to use the address set in a Rule.

type nonrec ip_set_summaries = ip_set_summary list
type nonrec list_ip_sets_response = {
  1. ip_sets : ip_set_summaries option;
    (*

    Array of IPSets. If you specified a Limit in your request, this might not be the full list.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
}
type nonrec list_ip_sets_request = {
  1. limit : pagination_limit option;
    (*

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec list_available_managed_rule_groups_response = {
  1. managed_rule_groups : managed_rule_group_summaries option;
    (*

    Array of managed rule groups that you can use. If you specified a Limit in your request, this might not be the full list.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
}
type nonrec list_available_managed_rule_groups_request = {
  1. limit : pagination_limit option;
    (*

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec list_available_managed_rule_group_versions_response = {
  1. current_default_version : version_key_string option;
    (*

    The name of the version that's currently set as the default.

    *)
  2. versions : managed_rule_group_versions option;
    (*

    The versions that are currently available for the specified managed rule group. If you specified a Limit in your request, this might not be the full list.

    *)
  3. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
}
type nonrec list_available_managed_rule_group_versions_request = {
  1. limit : pagination_limit option;
    (*

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  4. name : entity_name;
    (*

    The name of the managed rule group. You use this, along with the vendor name, to identify the rule group.

    *)
  5. vendor_name : vendor_name;
    (*

    The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

    *)
}
type nonrec api_key = string
type nonrec api_key_version = int
type nonrec api_key_summary = {
  1. version : api_key_version option;
    (*

    Internal value used by WAF to manage the key.

    *)
  2. creation_timestamp : timestamp option;
    (*

    The date and time that the key was created.

    *)
  3. api_key : api_key option;
    (*

    The generated, encrypted API key. You can copy this for use in your JavaScript CAPTCHA integration.

    *)
  4. token_domains : token_domains option;
    (*

    The token domains that are defined in this API key.

    *)
}

Information for a single API key.

API keys are required for the integration of the CAPTCHA API in your JavaScript client applications. The API lets you customize the placement and characteristics of the CAPTCHA puzzle for your end users. For more information about the CAPTCHA JavaScript integration, see WAF client application integration in the WAF Developer Guide.

type nonrec api_key_summaries = api_key_summary list
type nonrec list_api_keys_response = {
  1. application_integration_ur_l : output_url option;
    (*

    The CAPTCHA application integration URL, for use in your JavaScript implementation.

    *)
  2. api_key_summaries : api_key_summaries option;
    (*

    The array of key summaries. If you specified a Limit in your request, this might not be the full list.

    *)
  3. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
}
type nonrec list_api_keys_request = {
  1. limit : pagination_limit option;
    (*

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

    *)
  2. next_marker : next_marker option;
    (*

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec ip_set = {
  1. addresses : ip_addresses;
    (*

    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 /0.

    Example address strings:

    • For requests that originated from the IP address 192.0.2.44, specify 192.0.2.44/32.
    • For requests that originated from IP addresses from 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24.
    • For requests that originated from the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify 1111:0000:0000:0000:0000:0000:0000:0111/128.
    • 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 1111:0000:0000:0000:0000:0000:0000:0000/64.

    For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

    Example JSON Addresses specifications:

    • Empty array: "Addresses": []
    • Array with one address: "Addresses": ["192.0.2.44/32"]
    • Array with three addresses: "Addresses": ["192.0.2.44/32", "192.0.2.0/24", "192.0.0.0/16"]
    • INVALID specification: "Addresses": [""] INVALID
    *)
  2. ip_address_version : ip_address_version;
    (*

    The version of the IP addresses, either IPV4 or IPV6.

    *)
  3. description : entity_description option;
    (*

    A description of the IP set that helps with identification.

    *)
  4. ar_n : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the entity.

    *)
  5. id : entity_id;
    (*

    A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  6. name : entity_name;
    (*

    The name of the IP set. You cannot change the name of an IPSet after you create it.

    *)
}

Contains zero or more IP addresses or blocks of IP addresses specified in Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges except for /0. For information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

WAF assigns an ARN to each IPSet that you create. To use an IP set in a rule, you provide the ARN to the Rule statement IPSetReferenceStatement.

type nonrec get_web_acl_response = {
  1. application_integration_ur_l : output_url option;
    (*

    The URL to use in SDK integrations with Amazon Web Services managed rule groups. For example, you can use the integration SDKs with the account takeover prevention managed rule group AWSManagedRulesATPRuleSet and the account creation fraud prevention managed rule group AWSManagedRulesACFPRuleSet. This is only populated if you are using a rule group in your web ACL that integrates with your applications in this way. For more information, see WAF client application integration in the WAF Developer Guide.

    *)
  2. lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  3. web_ac_l : web_ac_l option;
    (*

    The web ACL specification. You can modify the settings in this web ACL and use it to update this web ACL or create a new one.

    *)
}
type nonrec get_web_acl_request = {
  1. ar_n : resource_arn option;
    (*

    The Amazon Resource Name (ARN) of the web ACL that you want to retrieve.

    *)
  2. id : entity_id option;
    (*

    The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  3. scope : scope option;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  4. name : entity_name option;
    (*

    The name of the web ACL. You cannot change the name of a web ACL after you create it.

    *)
}
type nonrec get_web_acl_for_resource_response = {
  1. web_ac_l : web_ac_l option;
    (*

    The web ACL that is associated with the resource. If there is no associated resource, WAF returns a null web ACL.

    *)
}
type nonrec get_web_acl_for_resource_request = {
  1. resource_arn : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the resource whose web ACL you want to retrieve.

    The ARN must be in one of the following formats:

    • For an Application Load Balancer:

      arn:{i partition}:elasticloadbalancing:{i region}:{i account-id}:loadbalancer/app/{i load-balancer-name}/{i load-balancer-id} 
    • For an Amazon API Gateway REST API:

      arn:{i partition}:apigateway:{i region}::/restapis/{i api-id}/stages/{i stage-name} 
    • For an AppSync GraphQL API:

      arn:{i partition}:appsync:{i region}:{i account-id}:apis/{i GraphQLApiId} 
    • For an Amazon Cognito user pool:

      arn:{i partition}:cognito-idp:{i region}:{i account-id}:userpool/{i user-pool-id} 
    • For an App Runner service:

      arn:{i partition}:apprunner:{i region}:{i account-id}:service/{i apprunner-service-name}/{i apprunner-service-id} 
    • For an Amazon Web Services Verified Access instance:

      arn:{i partition}:ec2:{i region}:{i account-id}:verified-access-instance/{i instance-id} 
    • For an Amplify application:

      arn:{i partition}:amplify:{i region}:{i account-id}:apps/{i app-id} 
    *)
}
type nonrec get_sampled_requests_response = {
  1. time_window : time_window option;
    (*

    Usually, TimeWindow is the time range that you specified in the GetSampledRequests request. However, if your Amazon Web Services resource received more than 5,000 requests during the time range that you specified in the request, GetSampledRequests returns the time range for the first 5,000 requests. Times are in Coordinated Universal Time (UTC) format.

    *)
  2. population_size : population_size option;
    (*

    The total number of requests from which GetSampledRequests got a sample of MaxItems requests. If PopulationSize is less than MaxItems, the sample includes every request that your Amazon Web Services resource received during the specified time range.

    *)
  3. sampled_requests : sampled_http_requests option;
    (*

    A complex type that contains detailed information about each of the requests in the sample.

    *)
}
type nonrec get_sampled_requests_request = {
  1. max_items : list_max_items;
    (*

    The number of requests that you want WAF to return from among the first 5,000 requests that your Amazon Web Services resource received during the time range. If your resource received fewer requests than the value of MaxItems, GetSampledRequests returns information about all of them.

    *)
  2. time_window : time_window;
    (*

    The start date and time and the end date and time of the range for which you want GetSampledRequests to return a sample of requests. You must specify the times in Coordinated Universal Time (UTC) format. UTC format includes the special designator, Z. For example, "2016-09-27T14:50Z". You can specify any time range in the previous three hours. If you specify a start time that's earlier than three hours ago, WAF sets it to three hours ago.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  4. rule_metric_name : metric_name;
    (*

    The metric name assigned to the Rule or RuleGroup dimension for which you want a sample of requests.

    *)
  5. web_acl_arn : resource_arn;
    (*

    The Amazon resource name (ARN) of the WebACL for which you want a sample of requests.

    *)
}
type nonrec get_rule_group_response = {
  1. lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  2. rule_group : rule_group option;
}
type nonrec get_rule_group_request = {
  1. ar_n : resource_arn option;
    (*

    The Amazon Resource Name (ARN) of the entity.

    *)
  2. id : entity_id option;
    (*

    A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  3. scope : scope option;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  4. name : entity_name option;
    (*

    The name of the rule group. You cannot change the name of a rule group after you create it.

    *)
}
type nonrec get_regex_pattern_set_response = {
  1. lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  2. regex_pattern_set : regex_pattern_set option;
}
type nonrec get_regex_pattern_set_request = {
  1. id : entity_id;
    (*

    A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  2. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  3. name : entity_name;
    (*

    The name of the set. You cannot change the name after you create the set.

    *)
}
type nonrec get_rate_based_statement_managed_keys_response = {
  1. managed_keys_ip_v6 : rate_based_statement_managed_keys_ip_set option;
    (*

    The keys that are of Internet Protocol version 6 (IPv6).

    *)
  2. managed_keys_ip_v4 : rate_based_statement_managed_keys_ip_set option;
    (*

    The keys that are of Internet Protocol version 4 (IPv4).

    *)
}
type nonrec get_rate_based_statement_managed_keys_request = {
  1. rule_name : entity_name;
    (*

    The name of the rate-based rule to get the keys for. If you have the rule defined inside a rule group that you're using in your web ACL, also provide the name of the rule group reference statement in the request parameter RuleGroupRuleName.

    *)
  2. rule_group_rule_name : entity_name option;
    (*

    The name of the rule group reference statement in your web ACL. This is required only when you have the rate-based rule nested inside a rule group.

    *)
  3. web_acl_id : entity_id;
    (*

    The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  4. web_acl_name : entity_name;
    (*

    The name of the web ACL. You cannot change the name of a web ACL after you create it.

    *)
  5. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec get_permission_policy_response = {
  1. policy : policy_string option;
    (*

    The IAM policy that is attached to the specified rule group.

    *)
}
type nonrec get_permission_policy_request = {
  1. resource_arn : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the rule group for which you want to get the policy.

    *)
}
type nonrec get_mobile_sdk_release_response = {
  1. mobile_sdk_release : mobile_sdk_release option;
    (*

    Information for a specified SDK release, including release notes and tags.

    *)
}
type nonrec get_mobile_sdk_release_request = {
  1. release_version : version_key_string;
    (*

    The release version. For the latest available version, specify LATEST.

    *)
  2. platform : platform;
    (*

    The device platform.

    *)
}
type nonrec get_managed_rule_set_response = {
  1. lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  2. managed_rule_set : managed_rule_set option;
    (*

    The managed rule set that you requested.

    *)
}
type nonrec get_managed_rule_set_request = {
  1. id : entity_id;
    (*

    A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

    *)
  2. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  3. name : entity_name;
    (*

    The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

    This name is assigned to the corresponding managed rule group, which your customers can access and use.

    *)
}
type nonrec get_logging_configuration_response = {
  1. logging_configuration : logging_configuration option;
    (*

    The LoggingConfiguration for the specified web ACL.

    *)
}
type nonrec get_logging_configuration_request = {
  1. log_scope : log_scope option;
    (*

    The owner of the logging configuration, which must be set to CUSTOMER for the configurations that you manage.

    The log scope SECURITY_LAKE indicates a configuration that is managed through Amazon Security Lake. You can use Security Lake to collect log and event data from various sources for normalization, analysis, and management. For information, see Collecting data from Amazon Web Services services in the Amazon Security Lake user guide.

    Default: CUSTOMER

    *)
  2. log_type : log_type option;
    (*

    Used to distinguish between various logging options. Currently, there is one option.

    Default: WAF_LOGS

    *)
  3. resource_arn : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the web ACL for which you want to get the LoggingConfiguration.

    *)
}
type nonrec get_ip_set_response = {
  1. lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  2. ip_set : ip_set option;
}
type nonrec get_ip_set_request = {
  1. id : entity_id;
    (*

    A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  2. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  3. name : entity_name;
    (*

    The name of the IP set. You cannot change the name of an IPSet after you create it.

    *)
}
type nonrec get_decrypted_api_key_response = {
  1. creation_timestamp : timestamp option;
    (*

    The date and time that the key was created.

    *)
  2. token_domains : token_domains option;
    (*

    The token domains that are defined in this API key.

    *)
}
type nonrec get_decrypted_api_key_request = {
  1. api_key : api_key;
    (*

    The encrypted API key.

    *)
  2. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec download_url = string
type nonrec generate_mobile_sdk_release_url_response = {
  1. url : download_url option;
    (*

    The presigned download URL for the specified SDK release.

    *)
}
type nonrec generate_mobile_sdk_release_url_request = {
  1. release_version : version_key_string;
    (*

    The release version. For the latest available version, specify LATEST.

    *)
  2. platform : platform;
    (*

    The device platform.

    *)
}
type nonrec disassociate_web_acl_response = unit
type nonrec disassociate_web_acl_request = {
  1. resource_arn : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the resource to disassociate from the web ACL.

    The ARN must be in one of the following formats:

    • For an Application Load Balancer:

      arn:{i partition}:elasticloadbalancing:{i region}:{i account-id}:loadbalancer/app/{i load-balancer-name}/{i load-balancer-id} 
    • For an Amazon API Gateway REST API:

      arn:{i partition}:apigateway:{i region}::/restapis/{i api-id}/stages/{i stage-name} 
    • For an AppSync GraphQL API:

      arn:{i partition}:appsync:{i region}:{i account-id}:apis/{i GraphQLApiId} 
    • For an Amazon Cognito user pool:

      arn:{i partition}:cognito-idp:{i region}:{i account-id}:userpool/{i user-pool-id} 
    • For an App Runner service:

      arn:{i partition}:apprunner:{i region}:{i account-id}:service/{i apprunner-service-name}/{i apprunner-service-id} 
    • For an Amazon Web Services Verified Access instance:

      arn:{i partition}:ec2:{i region}:{i account-id}:verified-access-instance/{i instance-id} 
    • For an Amplify application:

      arn:{i partition}:amplify:{i region}:{i account-id}:apps/{i app-id} 
    *)
}
type nonrec describe_managed_rule_group_response = {
  1. consumed_labels : label_summaries option;
    (*

    The labels that one or more rules in this rule group match against in label match statements. These labels are defined in a LabelMatchStatement specification, in the Statement definition of a rule.

    *)
  2. available_labels : label_summaries option;
    (*

    The labels that one or more rules in this rule group add to matching web requests. These labels are defined in the RuleLabels for a Rule.

    *)
  3. label_namespace : label_name option;
    (*

    The label namespace prefix for this rule group. All labels added by rules in this rule group have this prefix.

    • The syntax for the label namespace prefix for a managed rule group is the following:

      awswaf:managed::

      :

    • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

      :
    *)
  4. rules : rule_summaries option;
  5. capacity : capacity_unit option;
    (*

    The web ACL capacity units (WCUs) required for this rule group.

    WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

    *)
  6. sns_topic_arn : resource_arn option;
    (*

    The Amazon resource name (ARN) of the Amazon Simple Notification Service SNS topic that's used to provide notification of changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide.

    *)
  7. version_name : version_key_string option;
    (*

    The managed rule group's version.

    *)
}
type nonrec describe_managed_rule_group_request = {
  1. version_name : version_key_string option;
    (*

    The version of the rule group. You can only use a version that is not scheduled for expiration. If you don't provide this, WAF uses the vendor's default version.

    *)
  2. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  3. name : entity_name;
    (*

    The name of the managed rule group. You use this, along with the vendor name, to identify the rule group.

    *)
  4. vendor_name : vendor_name;
    (*

    The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

    *)
}
type nonrec describe_managed_products_by_vendor_response = {
  1. managed_products : managed_product_descriptors option;
    (*

    High-level information for the managed rule groups owned by the specified vendor.

    *)
}
type nonrec describe_managed_products_by_vendor_request = {
  1. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  2. vendor_name : vendor_name;
    (*

    The name of the managed rule group vendor. You use this, along with the rule group name, to identify a rule group.

    *)
}
type nonrec describe_all_managed_products_response = {
  1. managed_products : managed_product_descriptors option;
    (*

    High-level information for the Amazon Web Services Managed Rules rule groups and Amazon Web Services Marketplace managed rule groups.

    *)
}
type nonrec describe_all_managed_products_request = {
  1. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec delete_web_acl_response = unit
type nonrec delete_web_acl_request = {
  1. lock_token : lock_token;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  2. id : entity_id;
    (*

    The unique identifier for the web ACL. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  4. name : entity_name;
    (*

    The name of the web ACL. You cannot change the name of a web ACL after you create it.

    *)
}
type nonrec delete_rule_group_response = unit
type nonrec delete_rule_group_request = {
  1. lock_token : lock_token;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  2. id : entity_id;
    (*

    A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  4. name : entity_name;
    (*

    The name of the rule group. You cannot change the name of a rule group after you create it.

    *)
}
type nonrec delete_regex_pattern_set_response = unit
type nonrec delete_regex_pattern_set_request = {
  1. lock_token : lock_token;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  2. id : entity_id;
    (*

    A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  4. name : entity_name;
    (*

    The name of the set. You cannot change the name after you create the set.

    *)
}
type nonrec delete_permission_policy_response = unit
type nonrec delete_permission_policy_request = {
  1. resource_arn : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the rule group from which you want to delete the policy.

    You must be the owner of the rule group to perform this operation.

    *)
}
type nonrec delete_logging_configuration_response = unit
type nonrec delete_logging_configuration_request = {
  1. log_scope : log_scope option;
    (*

    The owner of the logging configuration, which must be set to CUSTOMER for the configurations that you manage.

    The log scope SECURITY_LAKE indicates a configuration that is managed through Amazon Security Lake. You can use Security Lake to collect log and event data from various sources for normalization, analysis, and management. For information, see Collecting data from Amazon Web Services services in the Amazon Security Lake user guide.

    Default: CUSTOMER

    *)
  2. log_type : log_type option;
    (*

    Used to distinguish between various logging options. Currently, there is one option.

    Default: WAF_LOGS

    *)
  3. resource_arn : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the web ACL from which you want to delete the LoggingConfiguration.

    *)
}
type nonrec delete_ip_set_response = unit
type nonrec delete_ip_set_request = {
  1. lock_token : lock_token;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  2. id : entity_id;
    (*

    A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  3. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  4. name : entity_name;
    (*

    The name of the IP set. You cannot change the name of an IPSet after you create it.

    *)
}
type nonrec delete_firewall_manager_rule_groups_response = {
  1. next_web_acl_lock_token : lock_token option;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
}
type nonrec delete_firewall_manager_rule_groups_request = {
  1. web_acl_lock_token : lock_token;
    (*

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

    *)
  2. web_acl_arn : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the web ACL.

    *)
}
type nonrec delete_api_key_response = unit
type nonrec delete_api_key_request = {
  1. api_key : api_key;
    (*

    The encrypted API key that you want to delete.

    *)
  2. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec create_web_acl_response = {
  1. summary : web_acl_summary option;
    (*

    High-level information about a WebACL, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a WebACL, and the ARN, that you provide to operations like AssociateWebACL.

    *)
}
type nonrec create_web_acl_request = {
  1. application_config : application_config option;
    (*

    Configures the ability for the WAF console to store and retrieve application attributes during the web ACL creation process. Application attributes help WAF give recommendations for protection packs.

    *)
  2. on_source_d_do_s_protection_config : on_source_d_do_s_protection_config option;
    (*

    Specifies the type of DDoS protection to apply to web request data for a web ACL. For most scenarios, it is recommended to use the default protection level, ACTIVE_UNDER_DDOS. If a web ACL is associated with multiple Application Load Balancers, the changes you make to DDoS protection in that web ACL will apply to all associated Application Load Balancers.

    *)
  3. association_config : association_config option;
    (*

    Specifies custom configurations for the associations between the web ACL and protected resources.

    Use this to customize the maximum size of the request body that your protected resources forward to WAF for inspection. You can customize this setting for CloudFront, API Gateway, Amazon Cognito, App Runner, or Verified Access resources. The default setting is 16 KB (16,384 bytes).

    You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.

    For Application Load Balancer and AppSync, the limit is fixed at 8 KB (8,192 bytes).

    *)
  4. token_domains : token_domains option;
    (*

    Specifies the domains that WAF should accept in a web request token. This enables the use of tokens across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web Services resource that the web ACL is protecting. If you don't specify a list of token domains, WAF accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts the resource's host domain plus all domains in the token domain list, including their prefixed subdomains.

    Example JSON: "TokenDomains": { "mywebsite.com", "myotherwebsite.com" }

    Public suffixes aren't allowed. For example, you can't use gov.au or co.uk as token domains.

    *)
  5. challenge_config : challenge_config option;
    (*

    Specifies how WAF should handle challenge evaluations for rules that don't have their own ChallengeConfig settings. If you don't specify this, WAF uses its default settings for ChallengeConfig.

    *)
  6. captcha_config : captcha_config option;
    (*

    Specifies how WAF should handle CAPTCHA evaluations for rules that don't have their own CaptchaConfig settings. If you don't specify this, WAF uses its default settings for CaptchaConfig.

    *)
  7. custom_response_bodies : custom_response_bodies option;
    (*

    A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the web ACL, and then use them in the rules and default actions that you define in the web ACL.

    For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

    For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

    *)
  8. tags : tag_list option;
    (*

    An array of key:value pairs to associate with the resource.

    *)
  9. data_protection_config : data_protection_config option;
    (*

    Specifies data protection to apply to the web request data for the web ACL. This is a web ACL level data protection option.

    The data protection that you configure for the web ACL alters the data that's available for any other data collection activity, including your WAF logging destinations, web ACL request sampling, and Amazon Security Lake data collection and management. Your other option for data protection is in the logging configuration, which only affects logging.

    *)
  10. visibility_config : visibility_config;
    (*

    Defines and enables Amazon CloudWatch metrics and web request sample collection.

    *)
  11. rules : rules option;
    (*

    The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

    *)
  12. description : entity_description option;
    (*

    A description of the web ACL that helps with identification.

    *)
  13. default_action : default_action;
    (*

    The action to perform if none of the Rules contained in the WebACL match.

    *)
  14. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  15. name : entity_name;
    (*

    The name of the web ACL. You cannot change the name of a web ACL after you create it.

    *)
}
type nonrec create_rule_group_response = {
  1. summary : rule_group_summary option;
    (*

    High-level information about a RuleGroup, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RuleGroup, and the ARN, that you provide to the RuleGroupReferenceStatement to use the rule group in a Rule.

    *)
}
type nonrec create_rule_group_request = {
  1. custom_response_bodies : custom_response_bodies option;
    (*

    A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the rule group, and then use them in the rules that you define in the rule group.

    For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.

    For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.

    *)
  2. tags : tag_list option;
    (*

    An array of key:value pairs to associate with the resource.

    *)
  3. visibility_config : visibility_config;
    (*

    Defines and enables Amazon CloudWatch metrics and web request sample collection.

    *)
  4. rules : rules option;
    (*

    The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.

    *)
  5. description : entity_description option;
    (*

    A description of the rule group that helps with identification.

    *)
  6. capacity : capacity_unit;
    (*

    The web ACL capacity units (WCUs) required for this rule group.

    When you create your own rule group, you define this, and you cannot change it after creation. When you add or modify the rules in a rule group, WAF enforces this limit. You can check the capacity for a set of rules using CheckCapacity.

    WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.

    *)
  7. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  8. name : entity_name;
    (*

    The name of the rule group. You cannot change the name of a rule group after you create it.

    *)
}
type nonrec create_regex_pattern_set_response = {
  1. summary : regex_pattern_set_summary option;
    (*

    High-level information about a RegexPatternSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RegexPatternSet, and the ARN, that you provide to the RegexPatternSetReferenceStatement to use the pattern set in a Rule.

    *)
}
type nonrec create_regex_pattern_set_request = {
  1. tags : tag_list option;
    (*

    An array of key:value pairs to associate with the resource.

    *)
  2. regular_expression_list : regular_expression_list;
    (*

    Array of regular expression strings.

    *)
  3. description : entity_description option;
    (*

    A description of the set that helps with identification.

    *)
  4. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  5. name : entity_name;
    (*

    The name of the set. You cannot change the name after you create the set.

    *)
}
type nonrec create_ip_set_response = {
  1. summary : ip_set_summary option;
    (*

    High-level information about an IPSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage an IPSet, and the ARN, that you provide to the IPSetReferenceStatement to use the address set in a Rule.

    *)
}
type nonrec create_ip_set_request = {
  1. tags : tag_list option;
    (*

    An array of key:value pairs to associate with the resource.

    *)
  2. addresses : ip_addresses;
    (*

    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 /0.

    Example address strings:

    • For requests that originated from the IP address 192.0.2.44, specify 192.0.2.44/32.
    • For requests that originated from IP addresses from 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24.
    • For requests that originated from the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify 1111:0000:0000:0000:0000:0000:0000:0111/128.
    • 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 1111:0000:0000:0000:0000:0000:0000:0000/64.

    For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

    Example JSON Addresses specifications:

    • Empty array: "Addresses": []
    • Array with one address: "Addresses": ["192.0.2.44/32"]
    • Array with three addresses: "Addresses": ["192.0.2.44/32", "192.0.2.0/24", "192.0.0.0/16"]
    • INVALID specification: "Addresses": [""] INVALID
    *)
  3. ip_address_version : ip_address_version;
    (*

    The version of the IP addresses, either IPV4 or IPV6.

    *)
  4. description : entity_description option;
    (*

    A description of the IP set that helps with identification.

    *)
  5. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
  6. name : entity_name;
    (*

    The name of the IP set. You cannot change the name of an IPSet after you create it.

    *)
}
type nonrec create_api_key_response = {
  1. api_key : api_key option;
    (*

    The generated, encrypted API key. You can copy this for use in your JavaScript CAPTCHA integration.

    *)
}
type nonrec api_key_token_domains = token_domain list
type nonrec create_api_key_request = {
  1. token_domains : api_key_token_domains;
    (*

    The client application domains that you want to use this API key for.

    Example JSON: "TokenDomains": ["abc.com", "store.abc.com"]

    Public suffixes aren't allowed. For example, you can't use gov.au or co.uk as token domains.

    *)
  2. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec check_capacity_response = {
  1. capacity : consumed_capacity option;
    (*

    The capacity required by the rules and scope.

    *)
}
type nonrec check_capacity_request = {
  1. rules : rules;
    (*

    An array of Rule that you're configuring to use in a rule group or web ACL.

    *)
  2. scope : scope;
    (*

    Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. For an Amplify application, use CLOUDFRONT.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
    *)
}
type nonrec associate_web_acl_response = unit
type nonrec associate_web_acl_request = {
  1. resource_arn : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the resource to associate with the web ACL.

    The ARN must be in one of the following formats:

    • For an Application Load Balancer:

      arn:{i partition}:elasticloadbalancing:{i region}:{i account-id}:loadbalancer/app/{i load-balancer-name}/{i load-balancer-id} 
    • For an Amazon API Gateway REST API:

      arn:{i partition}:apigateway:{i region}::/restapis/{i api-id}/stages/{i stage-name} 
    • For an AppSync GraphQL API:

      arn:{i partition}:appsync:{i region}:{i account-id}:apis/{i GraphQLApiId} 
    • For an Amazon Cognito user pool:

      arn:{i partition}:cognito-idp:{i region}:{i account-id}:userpool/{i user-pool-id} 
    • For an App Runner service:

      arn:{i partition}:apprunner:{i region}:{i account-id}:service/{i apprunner-service-name}/{i apprunner-service-id} 
    • For an Amazon Web Services Verified Access instance:

      arn:{i partition}:ec2:{i region}:{i account-id}:verified-access-instance/{i instance-id} 
    • For an Amplify application:

      arn:{i partition}:amplify:{i region}:{i account-id}:apps/{i app-id} 
    *)
  2. web_acl_arn : resource_arn;
    (*

    The Amazon Resource Name (ARN) of the web ACL that you want to associate with the resource.

    *)
}