Smaws_Client_WAF.CreateRule
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.
val request :
Smaws_Lib.Context.t ->
Types.create_rule_request ->
(Types.create_rule_response,
[> Smaws_Lib.Protocols.AwsJson.error
| `WAFBadRequestException of Types.waf_bad_request_exception
| `WAFDisallowedNameException of Types.waf_disallowed_name_exception
| `WAFInternalErrorException of Types.waf_internal_error_exception
| `WAFInvalidParameterException of Types.waf_invalid_parameter_exception
| `WAFLimitsExceededException of Types.waf_limits_exceeded_exception
| `WAFStaleDataException of Types.waf_stale_data_exception
| `WAFTagOperationException of Types.waf_tag_operation_exception
| `WAFTagOperationInternalErrorException of
Types.waf_tag_operation_internal_error_exception ])
Stdlib.result