Smaws_Client_WAF.CreateRule
val request :
Smaws_Lib.Context.t ->
create_rule_request ->
(create_rule_response,
[> Smaws_Lib.Protocols.AwsJson.error
| `WAFBadRequestException of waf_bad_request_exception
| `WAFDisallowedNameException of waf_disallowed_name_exception
| `WAFInternalErrorException of waf_internal_error_exception
| `WAFInvalidParameterException of waf_invalid_parameter_exception
| `WAFLimitsExceededException of waf_limits_exceeded_exception
| `WAFStaleDataException of waf_stale_data_exception
| `WAFTagOperationException of waf_tag_operation_exception
| `WAFTagOperationInternalErrorException of
waf_tag_operation_internal_error_exception ])
Stdlib.result
This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide.
For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Developer Guide. With the latest version, AWS WAF has a single set of endpoints for regional and global use.
Creates a Rule
, which contains the IPSet
objects, ByteMatchSet
objects, and other predicates that identify the requests that you want to block. If you add more than one predicate to a Rule
, a request must match all of the specifications to be allowed or blocked. For example, suppose that you add the following to a Rule
:
IPSet
that matches the IP address 192.0.2.44/32
ByteMatchSet
that matches BadBot
in the User-Agent
headerYou then add the Rule
to a WebACL
and specify that you want to blocks requests that satisfy the Rule
. For a request to be blocked, it must come from the IP address 192.0.2.44 and the User-Agent
header in the request must contain the value BadBot
.
To create and configure a Rule
, perform the following steps:
Rule
. For more information, see CreateByteMatchSet
, CreateIPSet
, and CreateSqlInjectionMatchSet
.GetChangeToken
to get the change token that you provide in the ChangeToken
parameter of a CreateRule
request.CreateRule
request.GetChangeToken
to get the change token that you provide in the ChangeToken
parameter of an UpdateRule
request.UpdateRule
request to specify the predicates that you want to include in the Rule
.WebACL
that contains the Rule
. For more information, see CreateWebACL
.For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.