{ "version": "2.0", "service": "

This is the AWS WAF API Reference for using AWS WAF with Amazon CloudFront. The AWS WAF actions and data types listed in the reference are available for protecting Amazon CloudFront distributions. You can use these actions and data types via the endpoint waf.amazonaws.com. This guide is for developers who need detailed information about the AWS WAF API actions, data types, and errors. For detailed information about AWS WAF features and an overview of how to use the AWS WAF API, see the AWS WAF Developer Guide.

", "operations": { "CreateByteMatchSet": "

Creates a ByteMatchSet. You then use UpdateByteMatchSet to identify the part of a web request that you want AWS WAF to inspect, such as the values of the User-Agent header or the query string. For example, you can create a ByteMatchSet that matches any requests with User-Agent headers that contain the string BadBot. You can then configure AWS WAF to reject those requests.

To create and configure a ByteMatchSet, perform the following steps:

  1. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a CreateByteMatchSet request.

  2. Submit a CreateByteMatchSet request.

  3. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateByteMatchSet request.

  4. Submit an UpdateByteMatchSet request to specify the part of the request that you want AWS WAF to inspect (for example, the header or the URI) and the value that you want AWS WAF to watch for.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "CreateGeoMatchSet": "

Creates an GeoMatchSet, which you use to specify which web requests you want to allow or block based on the country that the requests originate from. For example, if you're receiving a lot of requests from one or more countries and you want to block the requests, you can create an GeoMatchSet that contains those countries and then configure AWS WAF to block the requests.

To create and configure a GeoMatchSet, perform the following steps:

  1. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a CreateGeoMatchSet request.

  2. Submit a CreateGeoMatchSet request.

  3. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateGeoMatchSet request.

  4. Submit an UpdateGeoMatchSetSet request to specify the countries that you want AWS WAF to watch for.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "CreateIPSet": "

Creates an IPSet, which you use to specify which web requests you want to allow or block based on the IP addresses that the requests originate from. For example, if you're receiving a lot of requests from one or more individual IP addresses or one or more ranges of IP addresses and you want to block the requests, you can create an IPSet that contains those IP addresses and then configure AWS WAF to block the requests.

To create and configure an IPSet, perform the following steps:

  1. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a CreateIPSet request.

  2. Submit a CreateIPSet request.

  3. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateIPSet request.

  4. Submit an UpdateIPSet request to specify the IP addresses that you want AWS WAF to watch for.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "CreateRateBasedRule": "

Creates a RateBasedRule. The RateBasedRule contains a RateLimit, which specifies the maximum number of requests that AWS WAF allows from a specified IP address in a five-minute period. The RateBasedRule also contains the IPSet objects, ByteMatchSet objects, and other predicates that identify the requests that you want to count or block if these requests exceed the RateLimit.

If you add more than one predicate to a RateBasedRule, a request not only must exceed the RateLimit, but it also must match all the specifications to be counted or blocked. For example, suppose you add the following to a RateBasedRule:

Further, you specify a RateLimit of 15,000.

You then add the RateBasedRule to a WebACL and specify that you want to block requests that meet the conditions in 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. Further, requests that match these two conditions must be received at a rate of more than 15,000 requests every five minutes. If both conditions are met and the rate is exceeded, AWS WAF blocks the requests. If the rate drops below 15,000 for a five-minute period, AWS WAF no longer blocks the requests.

As a second example, suppose you want to limit requests to a particular page on your site. To do this, you could add the following to a RateBasedRule:

Further, you specify a RateLimit of 15,000.

By adding this RateBasedRule to a WebACL, you could limit requests to your login page without affecting the rest of your site.

To create and configure a RateBasedRule, perform the following steps:

  1. Create and update the predicates that you want to include in the rule. For more information, see CreateByteMatchSet, CreateIPSet, and CreateSqlInjectionMatchSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a CreateRule request.

  3. Submit a CreateRateBasedRule request.

  4. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateRule request.

  5. Submit an UpdateRateBasedRule request to specify the predicates that you want to include in the rule.

  6. Create and update a WebACL that contains the RateBasedRule. 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.

", "CreateRegexMatchSet": "

Creates a RegexMatchSet. You then use UpdateRegexMatchSet to identify the part of a web request that you want AWS WAF to inspect, such as the values of the User-Agent header or the query string. For example, you can create a RegexMatchSet that contains a RegexMatchTuple that looks for any requests with User-Agent headers that match a RegexPatternSet with pattern B[a@]dB[o0]t. You can then configure AWS WAF to reject those requests.

To create and configure a RegexMatchSet, perform the following steps:

  1. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a CreateRegexMatchSet request.

  2. Submit a CreateRegexMatchSet request.

  3. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateRegexMatchSet request.

  4. Submit an UpdateRegexMatchSet request to specify the part of the request that you want AWS WAF to inspect (for example, the header or the URI) and the value, using a RegexPatternSet, that you want AWS WAF to watch for.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "CreateRegexPatternSet": "

Creates a RegexPatternSet. You then use UpdateRegexPatternSet to specify the regular expression (regex) pattern that you want AWS WAF to search for, such as B[a@]dB[o0]t. You can then configure AWS WAF to reject those requests.

To create and configure a RegexPatternSet, perform the following steps:

  1. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a CreateRegexPatternSet request.

  2. Submit a CreateRegexPatternSet request.

  3. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateRegexPatternSet request.

  4. Submit an UpdateRegexPatternSet request to specify the string that you want AWS WAF to watch for.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "CreateRule": "

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 you add the following to a Rule:

You 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:

  1. Create and update the predicates that you want to include in the Rule. For more information, see CreateByteMatchSet, CreateIPSet, and CreateSqlInjectionMatchSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a CreateRule request.

  3. Submit a CreateRule request.

  4. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateRule request.

  5. Submit an UpdateRule request to specify the predicates that you want to include in the Rule.

  6. Create and update a 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.

", "CreateRuleGroup": "

Creates a RuleGroup. A rule group is a collection of predefined rules that you add to a web ACL. You use UpdateRuleGroup to add rules to the rule group.

Rule groups are subject to the following limits:

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "CreateSizeConstraintSet": "

Creates a SizeConstraintSet. You then use UpdateSizeConstraintSet to identify the part of a web request that you want AWS WAF to check for length, such as the length of the User-Agent header or the length of the query string. For example, you can create a SizeConstraintSet that matches any requests that have a query string that is longer than 100 bytes. You can then configure AWS WAF to reject those requests.

To create and configure a SizeConstraintSet, perform the following steps:

  1. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a CreateSizeConstraintSet request.

  2. Submit a CreateSizeConstraintSet request.

  3. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateSizeConstraintSet request.

  4. Submit an UpdateSizeConstraintSet request to specify the part of the request that you want AWS WAF to inspect (for example, the header or the URI) and the value that you want AWS WAF to watch for.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "CreateSqlInjectionMatchSet": "

Creates a SqlInjectionMatchSet, which you use to allow, block, or count requests that contain snippets of SQL code in a specified part of web requests. AWS WAF searches for character sequences that are likely to be malicious strings.

To create and configure a SqlInjectionMatchSet, perform the following steps:

  1. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a CreateSqlInjectionMatchSet request.

  2. Submit a CreateSqlInjectionMatchSet request.

  3. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateSqlInjectionMatchSet request.

  4. Submit an UpdateSqlInjectionMatchSet request to specify the parts of web requests in which you want to allow, block, or count malicious SQL code.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "CreateWebACL": "

Creates a WebACL, which contains the Rules that identify the CloudFront web requests that you want to allow, block, or count. AWS WAF evaluates Rules in order based on the value of Priority for each Rule.

You also specify a default action, either ALLOW or BLOCK. If a web request doesn't match any of the Rules in a WebACL, AWS WAF responds to the request with the default action.

To create and configure a WebACL, perform the following steps:

  1. Create and update the ByteMatchSet objects and other predicates that you want to include in Rules. For more information, see CreateByteMatchSet, UpdateByteMatchSet, CreateIPSet, UpdateIPSet, CreateSqlInjectionMatchSet, and UpdateSqlInjectionMatchSet.

  2. Create and update the Rules that you want to include in the WebACL. For more information, see CreateRule and UpdateRule.

  3. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a CreateWebACL request.

  4. Submit a CreateWebACL request.

  5. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateWebACL request.

  6. Submit an UpdateWebACL request to specify the Rules that you want to include in the WebACL, to specify the default action, and to associate the WebACL with a CloudFront distribution.

For more information about how to use the AWS WAF API, see the AWS WAF Developer Guide.

", "CreateXssMatchSet": "

Creates an XssMatchSet, which you use to allow, block, or count requests that contain cross-site scripting attacks in the specified part of web requests. AWS WAF searches for character sequences that are likely to be malicious strings.

To create and configure an XssMatchSet, perform the following steps:

  1. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a CreateXssMatchSet request.

  2. Submit a CreateXssMatchSet request.

  3. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateXssMatchSet request.

  4. Submit an UpdateXssMatchSet request to specify the parts of web requests in which you want to allow, block, or count cross-site scripting attacks.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "DeleteByteMatchSet": "

Permanently deletes a ByteMatchSet. You can't delete a ByteMatchSet if it's still used in any Rules or if it still includes any ByteMatchTuple objects (any filters).

If you just want to remove a ByteMatchSet from a Rule, use UpdateRule.

To permanently delete a ByteMatchSet, perform the following steps:

  1. Update the ByteMatchSet to remove filters, if any. For more information, see UpdateByteMatchSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a DeleteByteMatchSet request.

  3. Submit a DeleteByteMatchSet request.

", "DeleteGeoMatchSet": "

Permanently deletes a GeoMatchSet. You can't delete a GeoMatchSet if it's still used in any Rules or if it still includes any countries.

If you just want to remove a GeoMatchSet from a Rule, use UpdateRule.

To permanently delete a GeoMatchSet from AWS WAF, perform the following steps:

  1. Update the GeoMatchSet to remove any countries. For more information, see UpdateGeoMatchSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a DeleteGeoMatchSet request.

  3. Submit a DeleteGeoMatchSet request.

", "DeleteIPSet": "

Permanently deletes an IPSet. You can't delete an IPSet if it's still used in any Rules or if it still includes any IP addresses.

If you just want to remove an IPSet from a Rule, use UpdateRule.

To permanently delete an IPSet from AWS WAF, perform the following steps:

  1. Update the IPSet to remove IP address ranges, if any. For more information, see UpdateIPSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a DeleteIPSet request.

  3. Submit a DeleteIPSet request.

", "DeleteRateBasedRule": "

Permanently deletes a RateBasedRule. You can't delete a rule if it's still used in any WebACL objects or if it still includes any predicates, such as ByteMatchSet objects.

If you just want to remove a rule from a WebACL, use UpdateWebACL.

To permanently delete a RateBasedRule from AWS WAF, perform the following steps:

  1. Update the RateBasedRule to remove predicates, if any. For more information, see UpdateRateBasedRule.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a DeleteRateBasedRule request.

  3. Submit a DeleteRateBasedRule request.

", "DeleteRegexMatchSet": "

Permanently deletes a RegexMatchSet. You can't delete a RegexMatchSet if it's still used in any Rules or if it still includes any RegexMatchTuples objects (any filters).

If you just want to remove a RegexMatchSet from a Rule, use UpdateRule.

To permanently delete a RegexMatchSet, perform the following steps:

  1. Update the RegexMatchSet to remove filters, if any. For more information, see UpdateRegexMatchSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a DeleteRegexMatchSet request.

  3. Submit a DeleteRegexMatchSet request.

", "DeleteRegexPatternSet": "

Permanently deletes a RegexPatternSet. You can't delete a RegexPatternSet if it's still used in any RegexMatchSet or if the RegexPatternSet is not empty.

", "DeleteRule": "

Permanently deletes a Rule. You can't delete a Rule if it's still used in any WebACL objects or if it still includes any predicates, such as ByteMatchSet objects.

If you just want to remove a Rule from a WebACL, use UpdateWebACL.

To permanently delete a Rule from AWS WAF, perform the following steps:

  1. Update the Rule to remove predicates, if any. For more information, see UpdateRule.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a DeleteRule request.

  3. Submit a DeleteRule request.

", "DeleteRuleGroup": "

Permanently deletes a RuleGroup. You can't delete a RuleGroup if it's still used in any WebACL objects or if it still includes any rules.

If you just want to remove a RuleGroup from a WebACL, use UpdateWebACL.

To permanently delete a RuleGroup from AWS WAF, perform the following steps:

  1. Update the RuleGroup to remove rules, if any. For more information, see UpdateRuleGroup.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a DeleteRuleGroup request.

  3. Submit a DeleteRuleGroup request.

", "DeleteSizeConstraintSet": "

Permanently deletes a SizeConstraintSet. You can't delete a SizeConstraintSet if it's still used in any Rules or if it still includes any SizeConstraint objects (any filters).

If you just want to remove a SizeConstraintSet from a Rule, use UpdateRule.

To permanently delete a SizeConstraintSet, perform the following steps:

  1. Update the SizeConstraintSet to remove filters, if any. For more information, see UpdateSizeConstraintSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a DeleteSizeConstraintSet request.

  3. Submit a DeleteSizeConstraintSet request.

", "DeleteSqlInjectionMatchSet": "

Permanently deletes a SqlInjectionMatchSet. You can't delete a SqlInjectionMatchSet if it's still used in any Rules or if it still contains any SqlInjectionMatchTuple objects.

If you just want to remove a SqlInjectionMatchSet from a Rule, use UpdateRule.

To permanently delete a SqlInjectionMatchSet from AWS WAF, perform the following steps:

  1. Update the SqlInjectionMatchSet to remove filters, if any. For more information, see UpdateSqlInjectionMatchSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a DeleteSqlInjectionMatchSet request.

  3. Submit a DeleteSqlInjectionMatchSet request.

", "DeleteWebACL": "

Permanently deletes a WebACL. You can't delete a WebACL if it still contains any Rules.

To delete a WebACL, perform the following steps:

  1. Update the WebACL to remove Rules, if any. For more information, see UpdateWebACL.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a DeleteWebACL request.

  3. Submit a DeleteWebACL request.

", "DeleteXssMatchSet": "

Permanently deletes an XssMatchSet. You can't delete an XssMatchSet if it's still used in any Rules or if it still contains any XssMatchTuple objects.

If you just want to remove an XssMatchSet from a Rule, use UpdateRule.

To permanently delete an XssMatchSet from AWS WAF, perform the following steps:

  1. Update the XssMatchSet to remove filters, if any. For more information, see UpdateXssMatchSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a DeleteXssMatchSet request.

  3. Submit a DeleteXssMatchSet request.

", "GetByteMatchSet": "

Returns the ByteMatchSet specified by ByteMatchSetId.

", "GetChangeToken": "

When you want to create, update, or delete AWS WAF objects, get a change token and include the change token in the create, update, or delete request. Change tokens ensure that your application doesn't submit conflicting requests to AWS WAF.

Each create, update, or delete request must use a unique change token. If your application submits a GetChangeToken request and then submits a second GetChangeToken request before submitting a create, update, or delete request, the second GetChangeToken request returns the same value as the first GetChangeToken request.

When you use a change token in a create, update, or delete request, the status of the change token changes to PENDING, which indicates that AWS WAF is propagating the change to all AWS WAF servers. Use GetChangeTokenStatus to determine the status of your change token.

", "GetChangeTokenStatus": "

Returns the status of a ChangeToken that you got by calling GetChangeToken. ChangeTokenStatus is one of the following values:

", "GetGeoMatchSet": "

Returns the GeoMatchSet that is specified by GeoMatchSetId.

", "GetIPSet": "

Returns the IPSet that is specified by IPSetId.

", "GetRateBasedRule": "

Returns the RateBasedRule that is specified by the RuleId that you included in the GetRateBasedRule request.

", "GetRateBasedRuleManagedKeys": "

Returns an array of IP addresses currently being blocked by the RateBasedRule that is specified by the RuleId. The maximum number of managed keys that will be blocked is 10,000. If more than 10,000 addresses exceed the rate limit, the 10,000 addresses with the highest rates will be blocked.

", "GetRegexMatchSet": "

Returns the RegexMatchSet specified by RegexMatchSetId.

", "GetRegexPatternSet": "

Returns the RegexPatternSet specified by RegexPatternSetId.

", "GetRule": "

Returns the Rule that is specified by the RuleId that you included in the GetRule request.

", "GetRuleGroup": "

Returns the RuleGroup that is specified by the RuleGroupId that you included in the GetRuleGroup request.

To view the rules in a rule group, use ListActivatedRulesInRuleGroup.

", "GetSampledRequests": "

Gets detailed information about a specified number of requests--a sample--that AWS WAF randomly selects from among the first 5,000 requests that your AWS resource received during a time range that you choose. You can specify a sample size of up to 500 requests, and you can specify any time range in the previous three hours.

GetSampledRequests returns a time range, which is usually the time range that you specified. However, if your resource (such as a CloudFront distribution) received 5,000 requests before the specified time range elapsed, GetSampledRequests returns an updated time range. This new time range indicates the actual period during which AWS WAF selected the requests in the sample.

", "GetSizeConstraintSet": "

Returns the SizeConstraintSet specified by SizeConstraintSetId.

", "GetSqlInjectionMatchSet": "

Returns the SqlInjectionMatchSet that is specified by SqlInjectionMatchSetId.

", "GetWebACL": "

Returns the WebACL that is specified by WebACLId.

", "GetXssMatchSet": "

Returns the XssMatchSet that is specified by XssMatchSetId.

", "ListActivatedRulesInRuleGroup": "

Returns an array of ActivatedRule objects.

", "ListByteMatchSets": "

Returns an array of ByteMatchSetSummary objects.

", "ListGeoMatchSets": "

Returns an array of GeoMatchSetSummary objects in the response.

", "ListIPSets": "

Returns an array of IPSetSummary objects in the response.

", "ListRateBasedRules": "

Returns an array of RuleSummary objects.

", "ListRegexMatchSets": "

Returns an array of RegexMatchSetSummary objects.

", "ListRegexPatternSets": "

Returns an array of RegexPatternSetSummary objects.

", "ListRuleGroups": "

Returns an array of RuleGroup objects.

", "ListRules": "

Returns an array of RuleSummary objects.

", "ListSizeConstraintSets": "

Returns an array of SizeConstraintSetSummary objects.

", "ListSqlInjectionMatchSets": "

Returns an array of SqlInjectionMatchSet objects.

", "ListSubscribedRuleGroups": "

Returns an array of RuleGroup objects that you are subscribed to.

", "ListWebACLs": "

Returns an array of WebACLSummary objects in the response.

", "ListXssMatchSets": "

Returns an array of XssMatchSet objects.

", "UpdateByteMatchSet": "

Inserts or deletes ByteMatchTuple objects (filters) in a ByteMatchSet. For each ByteMatchTuple object, you specify the following values:

For example, you can add a ByteMatchSetUpdate object that matches web requests in which User-Agent headers contain the string BadBot. You can then configure AWS WAF to block those requests.

To create and configure a ByteMatchSet, perform the following steps:

  1. Create a ByteMatchSet. For more information, see CreateByteMatchSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateByteMatchSet request.

  3. Submit an UpdateByteMatchSet request to specify the part of the request that you want AWS WAF to inspect (for example, the header or the URI) and the value that you want AWS WAF to watch for.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "UpdateGeoMatchSet": "

Inserts or deletes GeoMatchConstraint objects in an GeoMatchSet. For each GeoMatchConstraint object, you specify the following values:

To create and configure an GeoMatchSet, perform the following steps:

  1. Submit a CreateGeoMatchSet request.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateGeoMatchSet request.

  3. Submit an UpdateGeoMatchSet request to specify the country that you want AWS WAF to watch for.

When you update an GeoMatchSet, you specify the country that you want to add and/or the country that you want to delete. If you want to change a country, you delete the existing country and add the new one.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "UpdateIPSet": "

Inserts or deletes IPSetDescriptor objects in an IPSet. For each IPSetDescriptor object, you specify the following values:

AWS WAF supports /8, /16, /24, and /32 IP address ranges for IPv4, and /24, /32, /48, /56, /64 and /128 for IPv6. For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

IPv6 addresses can be represented using any of the following formats:

You use an IPSet to specify which web requests you want to allow or block based on the IP addresses that the requests originated from. For example, if you're receiving a lot of requests from one or a small number of IP addresses and you want to block the requests, you can create an IPSet that specifies those IP addresses, and then configure AWS WAF to block the requests.

To create and configure an IPSet, perform the following steps:

  1. Submit a CreateIPSet request.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateIPSet request.

  3. Submit an UpdateIPSet request to specify the IP addresses that you want AWS WAF to watch for.

When you update an IPSet, you specify the IP addresses that you want to add and/or the IP addresses that you want to delete. If you want to change an IP address, you delete the existing IP address and add the new one.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "UpdateRateBasedRule": "

Inserts or deletes Predicate objects in a rule and updates the RateLimit in the rule.

Each Predicate object identifies a predicate, such as a ByteMatchSet or an IPSet, that specifies the web requests that you want to block or count. The RateLimit specifies the number of requests every five minutes that triggers the rule.

If you add more than one predicate to a RateBasedRule, a request must match all the predicates and exceed the RateLimit to be counted or blocked. For example, suppose you add the following to a RateBasedRule:

Further, you specify a RateLimit of 15,000.

You then add the RateBasedRule to a WebACL and specify that you want to block 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. Further, requests that match these two conditions much be received at a rate of more than 15,000 every five minutes. If the rate drops below this limit, AWS WAF no longer blocks the requests.

As a second example, suppose you want to limit requests to a particular page on your site. To do this, you could add the following to a RateBasedRule:

Further, you specify a RateLimit of 15,000.

By adding this RateBasedRule to a WebACL, you could limit requests to your login page without affecting the rest of your site.

", "UpdateRegexMatchSet": "

Inserts or deletes RegexMatchTuple objects (filters) in a RegexMatchSet. For each RegexMatchSetUpdate object, you specify the following values:

For example, you can create a RegexPatternSet that matches any requests with User-Agent headers that contain the string B[a@]dB[o0]t. You can then configure AWS WAF to reject those requests.

To create and configure a RegexMatchSet, perform the following steps:

  1. Create a RegexMatchSet. For more information, see CreateRegexMatchSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateRegexMatchSet request.

  3. Submit an UpdateRegexMatchSet request to specify the part of the request that you want AWS WAF to inspect (for example, the header or the URI) and the identifier of the RegexPatternSet that contain the regular expression patters you want AWS WAF to watch for.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "UpdateRegexPatternSet": "

Inserts or deletes RegexPatternString objects in a RegexPatternSet. For each RegexPatternString object, you specify the following values:

For example, you can create a RegexPatternString such as B[a@]dB[o0]t. AWS WAF will match this RegexPatternString to:

To create and configure a RegexPatternSet, perform the following steps:

  1. Create a RegexPatternSet. For more information, see CreateRegexPatternSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateRegexPatternSet request.

  3. Submit an UpdateRegexPatternSet request to specify the regular expression pattern that you want AWS WAF to watch for.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "UpdateRule": "

Inserts or deletes Predicate objects in a Rule. Each Predicate object identifies a predicate, such as a ByteMatchSet or an IPSet, that specifies the web requests that you want to allow, block, or count. If you add more than one predicate to a Rule, a request must match all of the specifications to be allowed, blocked, or counted. For example, suppose you add the following to a Rule:

You then add the Rule to a WebACL and specify that you want to block requests that satisfy the Rule. For a request to be blocked, the User-Agent header in the request must contain the value BadBot and the request must originate from the IP address 192.0.2.44.

To create and configure a Rule, perform the following steps:

  1. Create and update the predicates that you want to include in the Rule.

  2. Create the Rule. See CreateRule.

  3. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateRule request.

  4. Submit an UpdateRule request to add predicates to the Rule.

  5. Create and update a WebACL that contains the Rule. See CreateWebACL.

If you want to replace one ByteMatchSet or IPSet with another, you delete the existing one and add the new one.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "UpdateRuleGroup": "

Inserts or deletes ActivatedRule objects in a RuleGroup.

You can only insert REGULAR rules into a rule group.

You can have a maximum of ten rules per rule group.

To create and configure a RuleGroup, perform the following steps:

  1. Create and update the Rules that you want to include in the RuleGroup. See CreateRule.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateRuleGroup request.

  3. Submit an UpdateRuleGroup request to add Rules to the RuleGroup.

  4. Create and update a WebACL that contains the RuleGroup. See CreateWebACL.

If you want to replace one Rule with another, you delete the existing one and add the new one.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "UpdateSizeConstraintSet": "

Inserts or deletes SizeConstraint objects (filters) in a SizeConstraintSet. For each SizeConstraint object, you specify the following values:

For example, you can add a SizeConstraintSetUpdate object that matches web requests in which the length of the User-Agent header is greater than 100 bytes. You can then configure AWS WAF to block those requests.

To create and configure a SizeConstraintSet, perform the following steps:

  1. Create a SizeConstraintSet. For more information, see CreateSizeConstraintSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateSizeConstraintSet request.

  3. Submit an UpdateSizeConstraintSet request to specify the part of the request that you want AWS WAF to inspect (for example, the header or the URI) and the value that you want AWS WAF to watch for.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "UpdateSqlInjectionMatchSet": "

Inserts or deletes SqlInjectionMatchTuple objects (filters) in a SqlInjectionMatchSet. For each SqlInjectionMatchTuple object, you specify the following values:

You use SqlInjectionMatchSet objects to specify which CloudFront requests you want to allow, block, or count. For example, if you're receiving requests that contain snippets of SQL code in the query string and you want to block the requests, you can create a SqlInjectionMatchSet with the applicable settings, and then configure AWS WAF to block the requests.

To create and configure a SqlInjectionMatchSet, perform the following steps:

  1. Submit a CreateSqlInjectionMatchSet request.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateIPSet request.

  3. Submit an UpdateSqlInjectionMatchSet request to specify the parts of web requests that you want AWS WAF to inspect for snippets of SQL code.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "UpdateWebACL": "

Inserts or deletes ActivatedRule objects in a WebACL. Each Rule identifies web requests that you want to allow, block, or count. When you update a WebACL, you specify the following values:

To create and configure a WebACL, perform the following steps:

  1. Create and update the predicates that you want to include in Rules. For more information, see CreateByteMatchSet, UpdateByteMatchSet, CreateIPSet, UpdateIPSet, CreateSqlInjectionMatchSet, and UpdateSqlInjectionMatchSet.

  2. Create and update the Rules that you want to include in the WebACL. For more information, see CreateRule and UpdateRule.

  3. Create a WebACL. See CreateWebACL.

  4. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateWebACL request.

  5. Submit an UpdateWebACL request to specify the Rules that you want to include in the WebACL, to specify the default action, and to associate the WebACL with a CloudFront distribution.

Be aware that if you try to add a RATE_BASED rule to a web ACL without setting the rule type when first creating the rule, the UpdateWebACL request will fail because the request tries to add a REGULAR rule (the default rule type) with the specified ID, which does not exist.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

", "UpdateXssMatchSet": "

Inserts or deletes XssMatchTuple objects (filters) in an XssMatchSet. For each XssMatchTuple object, you specify the following values:

You use XssMatchSet objects to specify which CloudFront requests you want to allow, block, or count. For example, if you're receiving requests that contain cross-site scripting attacks in the request body and you want to block the requests, you can create an XssMatchSet with the applicable settings, and then configure AWS WAF to block the requests.

To create and configure an XssMatchSet, perform the following steps:

  1. Submit a CreateXssMatchSet request.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateIPSet request.

  3. Submit an UpdateXssMatchSet request to specify the parts of web requests that you want AWS WAF to inspect for cross-site scripting attacks.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

" }, "shapes": { "Action": { "base": null, "refs": { "SampledHTTPRequest$Action": "

The action for the Rule that the request matched: ALLOW, BLOCK, or COUNT.

" } }, "ActivatedRule": { "base": "

The ActivatedRule object in an UpdateWebACL request specifies a Rule that you want to insert or delete, the priority of the Rule in the WebACL, and the action that you want AWS WAF to take when a web request matches the Rule (ALLOW, BLOCK, or COUNT).

To specify whether to insert or delete a Rule, use the Action parameter in the WebACLUpdate data type.

", "refs": { "ActivatedRules$member": null, "RuleGroupUpdate$ActivatedRule": "

The ActivatedRule object specifies a Rule that you want to insert or delete, the priority of the Rule in the WebACL, and the action that you want AWS WAF to take when a web request matches the Rule (ALLOW, BLOCK, or COUNT).

", "WebACLUpdate$ActivatedRule": "

The ActivatedRule object in an UpdateWebACL request specifies a Rule that you want to insert or delete, the priority of the Rule in the WebACL, and the action that you want AWS WAF to take when a web request matches the Rule (ALLOW, BLOCK, or COUNT).

" } }, "ActivatedRules": { "base": null, "refs": { "ListActivatedRulesInRuleGroupResponse$ActivatedRules": "

An array of ActivatedRules objects.

", "WebACL$Rules": "

An array that contains the action for each Rule in a WebACL, the priority of the Rule, and the ID of the Rule.

" } }, "ByteMatchSet": { "base": "

In a GetByteMatchSet request, ByteMatchSet is a complex type that contains the ByteMatchSetId and Name of a ByteMatchSet, and the values that you specified when you updated the ByteMatchSet.

A complex type that contains ByteMatchTuple objects, which specify the parts of web requests that you want AWS WAF to inspect and the values that you want AWS WAF to search for. If a ByteMatchSet contains more than one ByteMatchTuple object, a request needs to match the settings in only one ByteMatchTuple to be considered a match.

", "refs": { "CreateByteMatchSetResponse$ByteMatchSet": "

A ByteMatchSet that contains no ByteMatchTuple objects.

", "GetByteMatchSetResponse$ByteMatchSet": "

Information about the ByteMatchSet that you specified in the GetByteMatchSet request. For more information, see the following topics:

" } }, "ByteMatchSetSummaries": { "base": null, "refs": { "ListByteMatchSetsResponse$ByteMatchSets": "

An array of ByteMatchSetSummary objects.

" } }, "ByteMatchSetSummary": { "base": "

Returned by ListByteMatchSets. Each ByteMatchSetSummary object includes the Name and ByteMatchSetId for one ByteMatchSet.

", "refs": { "ByteMatchSetSummaries$member": null } }, "ByteMatchSetUpdate": { "base": "

In an UpdateByteMatchSet request, ByteMatchSetUpdate specifies whether to insert or delete a ByteMatchTuple and includes the settings for the ByteMatchTuple.

", "refs": { "ByteMatchSetUpdates$member": null } }, "ByteMatchSetUpdates": { "base": null, "refs": { "UpdateByteMatchSetRequest$Updates": "

An array of ByteMatchSetUpdate objects that you want to insert into or delete from a ByteMatchSet. For more information, see the applicable data types:

" } }, "ByteMatchTargetString": { "base": null, "refs": { "ByteMatchTuple$TargetString": "

The value that you want AWS WAF to search for. AWS WAF searches for the specified string in the part of web requests that you specified in FieldToMatch. The maximum length of the value is 50 bytes.

Valid values depend on the values that you specified for FieldToMatch:

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

If you're using the AWS WAF API

Specify a base64-encoded version of the value. The maximum length of the value before you base64-encode it is 50 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 TargetString.

If you're using the AWS CLI or one of the AWS SDKs

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

" } }, "ByteMatchTuple": { "base": "

The bytes (typically a string that corresponds with ASCII characters) that you want AWS WAF to search for in web requests, the location in requests that you want AWS WAF to search, and other settings.

", "refs": { "ByteMatchSetUpdate$ByteMatchTuple": "

Information about the part of a web request that you want AWS WAF to inspect and the value that you want AWS WAF to search for. If you specify DELETE for the value of Action, the ByteMatchTuple values must exactly match the values in the ByteMatchTuple that you want to delete from the ByteMatchSet.

", "ByteMatchTuples$member": null } }, "ByteMatchTuples": { "base": null, "refs": { "ByteMatchSet$ByteMatchTuples": "

Specifies the bytes (typically a string that corresponds with ASCII characters) that you want AWS WAF to search for in web requests, the location in requests that you want AWS WAF to search, and other settings.

" } }, "ChangeAction": { "base": null, "refs": { "ByteMatchSetUpdate$Action": "

Specifies whether to insert or delete a ByteMatchTuple.

", "GeoMatchSetUpdate$Action": "

Specifies whether to insert or delete a country with UpdateGeoMatchSet.

", "IPSetUpdate$Action": "

Specifies whether to insert or delete an IP address with UpdateIPSet.

", "RegexMatchSetUpdate$Action": "

Specifies whether to insert or delete a RegexMatchTuple.

", "RegexPatternSetUpdate$Action": "

Specifies whether to insert or delete a RegexPatternString.

", "RuleGroupUpdate$Action": "

Specify INSERT to add an ActivatedRule to a RuleGroup. Use DELETE to remove an ActivatedRule from a RuleGroup.

", "RuleUpdate$Action": "

Specify INSERT to add a Predicate to a Rule. Use DELETE to remove a Predicate from a Rule.

", "SizeConstraintSetUpdate$Action": "

Specify INSERT to add a SizeConstraintSetUpdate to a SizeConstraintSet. Use DELETE to remove a SizeConstraintSetUpdate from a SizeConstraintSet.

", "SqlInjectionMatchSetUpdate$Action": "

Specify INSERT to add a SqlInjectionMatchSetUpdate to a SqlInjectionMatchSet. Use DELETE to remove a SqlInjectionMatchSetUpdate from a SqlInjectionMatchSet.

", "WebACLUpdate$Action": "

Specifies whether to insert a Rule into or delete a Rule from a WebACL.

", "XssMatchSetUpdate$Action": "

Specify INSERT to add a XssMatchSetUpdate to an XssMatchSet. Use DELETE to remove a XssMatchSetUpdate from an XssMatchSet.

" } }, "ChangeToken": { "base": null, "refs": { "CreateByteMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "CreateByteMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the CreateByteMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "CreateGeoMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "CreateGeoMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the CreateGeoMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "CreateIPSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "CreateIPSetResponse$ChangeToken": "

The ChangeToken that you used to submit the CreateIPSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "CreateRateBasedRuleRequest$ChangeToken": "

The ChangeToken that you used to submit the CreateRateBasedRule request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "CreateRateBasedRuleResponse$ChangeToken": "

The ChangeToken that you used to submit the CreateRateBasedRule request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "CreateRegexMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "CreateRegexMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the CreateRegexMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "CreateRegexPatternSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "CreateRegexPatternSetResponse$ChangeToken": "

The ChangeToken that you used to submit the CreateRegexPatternSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "CreateRuleGroupRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "CreateRuleGroupResponse$ChangeToken": "

The ChangeToken that you used to submit the CreateRuleGroup request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "CreateRuleRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "CreateRuleResponse$ChangeToken": "

The ChangeToken that you used to submit the CreateRule request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "CreateSizeConstraintSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "CreateSizeConstraintSetResponse$ChangeToken": "

The ChangeToken that you used to submit the CreateSizeConstraintSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "CreateSqlInjectionMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "CreateSqlInjectionMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the CreateSqlInjectionMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "CreateWebACLRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "CreateWebACLResponse$ChangeToken": "

The ChangeToken that you used to submit the CreateWebACL request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "CreateXssMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "CreateXssMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the CreateXssMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "DeleteByteMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "DeleteByteMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the DeleteByteMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "DeleteGeoMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "DeleteGeoMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the DeleteGeoMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "DeleteIPSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "DeleteIPSetResponse$ChangeToken": "

The ChangeToken that you used to submit the DeleteIPSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "DeleteRateBasedRuleRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "DeleteRateBasedRuleResponse$ChangeToken": "

The ChangeToken that you used to submit the DeleteRateBasedRule request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "DeleteRegexMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "DeleteRegexMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the DeleteRegexMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "DeleteRegexPatternSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "DeleteRegexPatternSetResponse$ChangeToken": "

The ChangeToken that you used to submit the DeleteRegexPatternSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "DeleteRuleGroupRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "DeleteRuleGroupResponse$ChangeToken": "

The ChangeToken that you used to submit the DeleteRuleGroup request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "DeleteRuleRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "DeleteRuleResponse$ChangeToken": "

The ChangeToken that you used to submit the DeleteRule request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "DeleteSizeConstraintSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "DeleteSizeConstraintSetResponse$ChangeToken": "

The ChangeToken that you used to submit the DeleteSizeConstraintSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "DeleteSqlInjectionMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "DeleteSqlInjectionMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the DeleteSqlInjectionMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "DeleteWebACLRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "DeleteWebACLResponse$ChangeToken": "

The ChangeToken that you used to submit the DeleteWebACL request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "DeleteXssMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "DeleteXssMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the DeleteXssMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "GetChangeTokenResponse$ChangeToken": "

The ChangeToken that you used in the request. Use this value in a GetChangeTokenStatus request to get the current status of the request.

", "GetChangeTokenStatusRequest$ChangeToken": "

The change token for which you want to get the status. This change token was previously returned in the GetChangeToken response.

", "UpdateByteMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "UpdateByteMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the UpdateByteMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "UpdateGeoMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "UpdateGeoMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the UpdateGeoMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "UpdateIPSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "UpdateIPSetResponse$ChangeToken": "

The ChangeToken that you used to submit the UpdateIPSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "UpdateRateBasedRuleRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "UpdateRateBasedRuleResponse$ChangeToken": "

The ChangeToken that you used to submit the UpdateRateBasedRule request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "UpdateRegexMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "UpdateRegexMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the UpdateRegexMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "UpdateRegexPatternSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "UpdateRegexPatternSetResponse$ChangeToken": "

The ChangeToken that you used to submit the UpdateRegexPatternSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "UpdateRuleGroupRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "UpdateRuleGroupResponse$ChangeToken": "

The ChangeToken that you used to submit the UpdateRuleGroup request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "UpdateRuleRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "UpdateRuleResponse$ChangeToken": "

The ChangeToken that you used to submit the UpdateRule request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "UpdateSizeConstraintSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "UpdateSizeConstraintSetResponse$ChangeToken": "

The ChangeToken that you used to submit the UpdateSizeConstraintSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "UpdateSqlInjectionMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "UpdateSqlInjectionMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the UpdateSqlInjectionMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "UpdateWebACLRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "UpdateWebACLResponse$ChangeToken": "

The ChangeToken that you used to submit the UpdateWebACL request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

", "UpdateXssMatchSetRequest$ChangeToken": "

The value returned by the most recent call to GetChangeToken.

", "UpdateXssMatchSetResponse$ChangeToken": "

The ChangeToken that you used to submit the UpdateXssMatchSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

" } }, "ChangeTokenStatus": { "base": null, "refs": { "GetChangeTokenStatusResponse$ChangeTokenStatus": "

The status of the change token.

" } }, "ComparisonOperator": { "base": null, "refs": { "SizeConstraint$ComparisonOperator": "

The type of comparison you want AWS WAF to perform. AWS WAF uses this in combination with the provided Size and FieldToMatch to build an expression in the form of \"Size ComparisonOperator size in bytes of FieldToMatch\". If that expression is true, the SizeConstraint is considered to match.

EQ: Used to test if the Size is equal to the size of the FieldToMatch

NE: Used to test if the Size is not equal to the size of the FieldToMatch

LE: Used to test if the Size is less than or equal to the size of the FieldToMatch

LT: Used to test if the Size is strictly less than the size of the FieldToMatch

GE: Used to test if the Size is greater than or equal to the size of the FieldToMatch

GT: Used to test if the Size is strictly greater than the size of the FieldToMatch

" } }, "Country": { "base": null, "refs": { "HTTPRequest$Country": "

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.

" } }, "CreateByteMatchSetRequest": { "base": null, "refs": { } }, "CreateByteMatchSetResponse": { "base": null, "refs": { } }, "CreateGeoMatchSetRequest": { "base": null, "refs": { } }, "CreateGeoMatchSetResponse": { "base": null, "refs": { } }, "CreateIPSetRequest": { "base": null, "refs": { } }, "CreateIPSetResponse": { "base": null, "refs": { } }, "CreateRateBasedRuleRequest": { "base": null, "refs": { } }, "CreateRateBasedRuleResponse": { "base": null, "refs": { } }, "CreateRegexMatchSetRequest": { "base": null, "refs": { } }, "CreateRegexMatchSetResponse": { "base": null, "refs": { } }, "CreateRegexPatternSetRequest": { "base": null, "refs": { } }, "CreateRegexPatternSetResponse": { "base": null, "refs": { } }, "CreateRuleGroupRequest": { "base": null, "refs": { } }, "CreateRuleGroupResponse": { "base": null, "refs": { } }, "CreateRuleRequest": { "base": null, "refs": { } }, "CreateRuleResponse": { "base": null, "refs": { } }, "CreateSizeConstraintSetRequest": { "base": null, "refs": { } }, "CreateSizeConstraintSetResponse": { "base": null, "refs": { } }, "CreateSqlInjectionMatchSetRequest": { "base": "

A request to create a SqlInjectionMatchSet.

", "refs": { } }, "CreateSqlInjectionMatchSetResponse": { "base": "

The response to a CreateSqlInjectionMatchSet request.

", "refs": { } }, "CreateWebACLRequest": { "base": null, "refs": { } }, "CreateWebACLResponse": { "base": null, "refs": { } }, "CreateXssMatchSetRequest": { "base": "

A request to create an XssMatchSet.

", "refs": { } }, "CreateXssMatchSetResponse": { "base": "

The response to a CreateXssMatchSet request.

", "refs": { } }, "DeleteByteMatchSetRequest": { "base": null, "refs": { } }, "DeleteByteMatchSetResponse": { "base": null, "refs": { } }, "DeleteGeoMatchSetRequest": { "base": null, "refs": { } }, "DeleteGeoMatchSetResponse": { "base": null, "refs": { } }, "DeleteIPSetRequest": { "base": null, "refs": { } }, "DeleteIPSetResponse": { "base": null, "refs": { } }, "DeleteRateBasedRuleRequest": { "base": null, "refs": { } }, "DeleteRateBasedRuleResponse": { "base": null, "refs": { } }, "DeleteRegexMatchSetRequest": { "base": null, "refs": { } }, "DeleteRegexMatchSetResponse": { "base": null, "refs": { } }, "DeleteRegexPatternSetRequest": { "base": null, "refs": { } }, "DeleteRegexPatternSetResponse": { "base": null, "refs": { } }, "DeleteRuleGroupRequest": { "base": null, "refs": { } }, "DeleteRuleGroupResponse": { "base": null, "refs": { } }, "DeleteRuleRequest": { "base": null, "refs": { } }, "DeleteRuleResponse": { "base": null, "refs": { } }, "DeleteSizeConstraintSetRequest": { "base": null, "refs": { } }, "DeleteSizeConstraintSetResponse": { "base": null, "refs": { } }, "DeleteSqlInjectionMatchSetRequest": { "base": "

A request to delete a SqlInjectionMatchSet from AWS WAF.

", "refs": { } }, "DeleteSqlInjectionMatchSetResponse": { "base": "

The response to a request to delete a SqlInjectionMatchSet from AWS WAF.

", "refs": { } }, "DeleteWebACLRequest": { "base": null, "refs": { } }, "DeleteWebACLResponse": { "base": null, "refs": { } }, "DeleteXssMatchSetRequest": { "base": "

A request to delete an XssMatchSet from AWS WAF.

", "refs": { } }, "DeleteXssMatchSetResponse": { "base": "

The response to a request to delete an XssMatchSet from AWS WAF.

", "refs": { } }, "FieldToMatch": { "base": "

Specifies where in a web request to look for TargetString.

", "refs": { "ByteMatchTuple$FieldToMatch": "

The part of a web request that you want AWS WAF to search, such as a specified header or a query string. For more information, see FieldToMatch.

", "RegexMatchTuple$FieldToMatch": "

Specifies where in a web request to look for the RegexPatternSet.

", "SizeConstraint$FieldToMatch": "

Specifies where in a web request to look for the size constraint.

", "SqlInjectionMatchTuple$FieldToMatch": "

Specifies where in a web request to look for snippets of malicious SQL code.

", "XssMatchTuple$FieldToMatch": "

Specifies where in a web request to look for cross-site scripting attacks.

" } }, "GeoMatchConstraint": { "base": "

The country from which web requests originate that you want AWS WAF to search for.

", "refs": { "GeoMatchConstraints$member": null, "GeoMatchSetUpdate$GeoMatchConstraint": "

The country from which web requests originate that you want AWS WAF to search for.

" } }, "GeoMatchConstraintType": { "base": null, "refs": { "GeoMatchConstraint$Type": "

The type of geographical area you want AWS WAF to search for. Currently Country is the only valid value.

" } }, "GeoMatchConstraintValue": { "base": null, "refs": { "GeoMatchConstraint$Value": "

The country that you want AWS WAF to search for.

" } }, "GeoMatchConstraints": { "base": null, "refs": { "GeoMatchSet$GeoMatchConstraints": "

An array of GeoMatchConstraint objects, which contain the country that you want AWS WAF to search for.

" } }, "GeoMatchSet": { "base": "

Contains one or more countries that AWS WAF will search for.

", "refs": { "CreateGeoMatchSetResponse$GeoMatchSet": "

The GeoMatchSet returned in the CreateGeoMatchSet response. The GeoMatchSet contains no GeoMatchConstraints.

", "GetGeoMatchSetResponse$GeoMatchSet": "

Information about the GeoMatchSet that you specified in the GetGeoMatchSet request. This includes the Type, which for a GeoMatchContraint is always Country, as well as the Value, which is the identifier for a specific country.

" } }, "GeoMatchSetSummaries": { "base": null, "refs": { "ListGeoMatchSetsResponse$GeoMatchSets": "

An array of GeoMatchSetSummary objects.

" } }, "GeoMatchSetSummary": { "base": "

Contains the identifier and the name of the GeoMatchSet.

", "refs": { "GeoMatchSetSummaries$member": null } }, "GeoMatchSetUpdate": { "base": "

Specifies the type of update to perform to an GeoMatchSet with UpdateGeoMatchSet.

", "refs": { "GeoMatchSetUpdates$member": null } }, "GeoMatchSetUpdates": { "base": null, "refs": { "UpdateGeoMatchSetRequest$Updates": "

An array of GeoMatchSetUpdate objects that you want to insert into or delete from an GeoMatchSet. For more information, see the applicable data types:

" } }, "GetByteMatchSetRequest": { "base": null, "refs": { } }, "GetByteMatchSetResponse": { "base": null, "refs": { } }, "GetChangeTokenRequest": { "base": null, "refs": { } }, "GetChangeTokenResponse": { "base": null, "refs": { } }, "GetChangeTokenStatusRequest": { "base": null, "refs": { } }, "GetChangeTokenStatusResponse": { "base": null, "refs": { } }, "GetGeoMatchSetRequest": { "base": null, "refs": { } }, "GetGeoMatchSetResponse": { "base": null, "refs": { } }, "GetIPSetRequest": { "base": null, "refs": { } }, "GetIPSetResponse": { "base": null, "refs": { } }, "GetRateBasedRuleManagedKeysRequest": { "base": null, "refs": { } }, "GetRateBasedRuleManagedKeysResponse": { "base": null, "refs": { } }, "GetRateBasedRuleRequest": { "base": null, "refs": { } }, "GetRateBasedRuleResponse": { "base": null, "refs": { } }, "GetRegexMatchSetRequest": { "base": null, "refs": { } }, "GetRegexMatchSetResponse": { "base": null, "refs": { } }, "GetRegexPatternSetRequest": { "base": null, "refs": { } }, "GetRegexPatternSetResponse": { "base": null, "refs": { } }, "GetRuleGroupRequest": { "base": null, "refs": { } }, "GetRuleGroupResponse": { "base": null, "refs": { } }, "GetRuleRequest": { "base": null, "refs": { } }, "GetRuleResponse": { "base": null, "refs": { } }, "GetSampledRequestsMaxItems": { "base": null, "refs": { "GetSampledRequestsRequest$MaxItems": "

The number of requests that you want AWS WAF to return from among the first 5,000 requests that your AWS resource received during the time range. If your resource received fewer requests than the value of MaxItems, GetSampledRequests returns information about all of them.

" } }, "GetSampledRequestsRequest": { "base": null, "refs": { } }, "GetSampledRequestsResponse": { "base": null, "refs": { } }, "GetSizeConstraintSetRequest": { "base": null, "refs": { } }, "GetSizeConstraintSetResponse": { "base": null, "refs": { } }, "GetSqlInjectionMatchSetRequest": { "base": "

A request to get a SqlInjectionMatchSet.

", "refs": { } }, "GetSqlInjectionMatchSetResponse": { "base": "

The response to a GetSqlInjectionMatchSet request.

", "refs": { } }, "GetWebACLRequest": { "base": null, "refs": { } }, "GetWebACLResponse": { "base": null, "refs": { } }, "GetXssMatchSetRequest": { "base": "

A request to get an XssMatchSet.

", "refs": { } }, "GetXssMatchSetResponse": { "base": "

The response to a GetXssMatchSet request.

", "refs": { } }, "HTTPHeader": { "base": "

The response from a GetSampledRequests request includes an HTTPHeader 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 that were returned by GetSampledRequests.

", "refs": { "HTTPHeaders$member": null } }, "HTTPHeaders": { "base": null, "refs": { "HTTPRequest$Headers": "

A complex type that contains two values for each header in the sampled web request: the name of the header and the value of the header.

" } }, "HTTPMethod": { "base": null, "refs": { "HTTPRequest$Method": "

The HTTP method specified in the sampled web request. CloudFront supports the following methods: DELETE, GET, HEAD, OPTIONS, PATCH, POST, and PUT.

" } }, "HTTPRequest": { "base": "

The response from a GetSampledRequests request includes an HTTPRequest complex type that appears as Request in the response syntax. HTTPRequest contains information about one of the web requests that were returned by GetSampledRequests.

", "refs": { "SampledHTTPRequest$Request": "

A complex type that contains detailed information about the request.

" } }, "HTTPVersion": { "base": null, "refs": { "HTTPRequest$HTTPVersion": "

The HTTP version specified in the sampled web request, for example, HTTP/1.1.

" } }, "HeaderName": { "base": null, "refs": { "HTTPHeader$Name": "

The name of one of the headers in the sampled web request.

" } }, "HeaderValue": { "base": null, "refs": { "HTTPHeader$Value": "

The value of one of the headers in the sampled web request.

" } }, "IPSet": { "base": "

Contains one or more IP addresses or blocks of IP addresses specified in Classless Inter-Domain Routing (CIDR) notation. AWS WAF supports /8, /16, /24, and /32 IP address ranges for IPv4, and /24, /32, /48, /56, /64 and /128 for IPv6.

To specify an individual IP address, you specify the four-part IP address followed by a /32, for example, 192.0.2.0/31. To block a range of IP addresses, you can specify a /128, /64, /56, /48, /32, /24, /16, or /8 CIDR. For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

", "refs": { "CreateIPSetResponse$IPSet": "

The IPSet returned in the CreateIPSet response.

", "GetIPSetResponse$IPSet": "

Information about the IPSet that you specified in the GetIPSet request. For more information, see the following topics:

" } }, "IPSetDescriptor": { "base": "

Specifies the IP address type (IPV4 or IPV6) and the IP address range (in CIDR format) that web requests originate from.

", "refs": { "IPSetDescriptors$member": null, "IPSetUpdate$IPSetDescriptor": "

The IP address type (IPV4 or IPV6) and the IP address range (in CIDR notation) that web requests originate from.

" } }, "IPSetDescriptorType": { "base": null, "refs": { "IPSetDescriptor$Type": "

Specify IPV4 or IPV6.

" } }, "IPSetDescriptorValue": { "base": null, "refs": { "IPSetDescriptor$Value": "

Specify an IPv4 address by using CIDR notation. For example:

For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

Specify an IPv6 address by using CIDR notation. For example:

" } }, "IPSetDescriptors": { "base": null, "refs": { "IPSet$IPSetDescriptors": "

The IP address type (IPV4 or IPV6) and the IP address range (in CIDR notation) that web requests originate from. If the WebACL is associated with a CloudFront distribution and the viewer did not use an HTTP proxy or a load balancer to send the request, this is the value of the c-ip field in the CloudFront access logs.

" } }, "IPSetSummaries": { "base": null, "refs": { "ListIPSetsResponse$IPSets": "

An array of IPSetSummary objects.

" } }, "IPSetSummary": { "base": "

Contains the identifier and the name of the IPSet.

", "refs": { "IPSetSummaries$member": null } }, "IPSetUpdate": { "base": "

Specifies the type of update to perform to an IPSet with UpdateIPSet.

", "refs": { "IPSetUpdates$member": null } }, "IPSetUpdates": { "base": null, "refs": { "UpdateIPSetRequest$Updates": "

An array of IPSetUpdate objects that you want to insert into or delete from an IPSet. For more information, see the applicable data types:

" } }, "IPString": { "base": null, "refs": { "HTTPRequest$ClientIP": "

The IP address that the request originated from. If the WebACL is associated with a CloudFront distribution, this is the value of one of the following fields in CloudFront access logs:

" } }, "ListActivatedRulesInRuleGroupRequest": { "base": null, "refs": { } }, "ListActivatedRulesInRuleGroupResponse": { "base": null, "refs": { } }, "ListByteMatchSetsRequest": { "base": null, "refs": { } }, "ListByteMatchSetsResponse": { "base": null, "refs": { } }, "ListGeoMatchSetsRequest": { "base": null, "refs": { } }, "ListGeoMatchSetsResponse": { "base": null, "refs": { } }, "ListIPSetsRequest": { "base": null, "refs": { } }, "ListIPSetsResponse": { "base": null, "refs": { } }, "ListRateBasedRulesRequest": { "base": null, "refs": { } }, "ListRateBasedRulesResponse": { "base": null, "refs": { } }, "ListRegexMatchSetsRequest": { "base": null, "refs": { } }, "ListRegexMatchSetsResponse": { "base": null, "refs": { } }, "ListRegexPatternSetsRequest": { "base": null, "refs": { } }, "ListRegexPatternSetsResponse": { "base": null, "refs": { } }, "ListRuleGroupsRequest": { "base": null, "refs": { } }, "ListRuleGroupsResponse": { "base": null, "refs": { } }, "ListRulesRequest": { "base": null, "refs": { } }, "ListRulesResponse": { "base": null, "refs": { } }, "ListSizeConstraintSetsRequest": { "base": null, "refs": { } }, "ListSizeConstraintSetsResponse": { "base": null, "refs": { } }, "ListSqlInjectionMatchSetsRequest": { "base": "

A request to list the SqlInjectionMatchSet objects created by the current AWS account.

", "refs": { } }, "ListSqlInjectionMatchSetsResponse": { "base": "

The response to a ListSqlInjectionMatchSets request.

", "refs": { } }, "ListSubscribedRuleGroupsRequest": { "base": null, "refs": { } }, "ListSubscribedRuleGroupsResponse": { "base": null, "refs": { } }, "ListWebACLsRequest": { "base": null, "refs": { } }, "ListWebACLsResponse": { "base": null, "refs": { } }, "ListXssMatchSetsRequest": { "base": "

A request to list the XssMatchSet objects created by the current AWS account.

", "refs": { } }, "ListXssMatchSetsResponse": { "base": "

The response to a ListXssMatchSets request.

", "refs": { } }, "ManagedKey": { "base": null, "refs": { "ManagedKeys$member": null } }, "ManagedKeys": { "base": null, "refs": { "GetRateBasedRuleManagedKeysResponse$ManagedKeys": "

An array of IP addresses that currently are blocked by the specified RateBasedRule.

" } }, "MatchFieldData": { "base": null, "refs": { "FieldToMatch$Data": "

When the value of Type is HEADER, enter the name of the header that you want AWS WAF to search, for example, User-Agent or Referer. If the value of Type is any other value, omit Data.

The name of the header is not case sensitive.

" } }, "MatchFieldType": { "base": null, "refs": { "FieldToMatch$Type": "

The part of the web request that you want AWS WAF to search for a specified string. Parts of a request that you can search include the following:

" } }, "MetricName": { "base": null, "refs": { "CreateRateBasedRuleRequest$MetricName": "

A friendly name or description for the metrics for this RateBasedRule. The name can contain only alphanumeric characters (A-Z, a-z, 0-9); the name can't contain whitespace. You can't change the name of the metric after you create the RateBasedRule.

", "CreateRuleGroupRequest$MetricName": "

A friendly name or description for the metrics for this RuleGroup. The name can contain only alphanumeric characters (A-Z, a-z, 0-9); the name can't contain whitespace. You can't change the name of the metric after you create the RuleGroup.

", "CreateRuleRequest$MetricName": "

A friendly name or description for the metrics for this Rule. The name can contain only alphanumeric characters (A-Z, a-z, 0-9); the name can't contain whitespace. You can't change the name of the metric after you create the Rule.

", "CreateWebACLRequest$MetricName": "

A friendly name or description for the metrics for this WebACL. The name can contain only alphanumeric characters (A-Z, a-z, 0-9); the name can't contain whitespace. You can't change MetricName after you create the WebACL.

", "RateBasedRule$MetricName": "

A friendly name or description for the metrics for a RateBasedRule. The name can contain only alphanumeric characters (A-Z, a-z, 0-9); the name can't contain whitespace. You can't change the name of the metric after you create the RateBasedRule.

", "Rule$MetricName": "

A friendly name or description for the metrics for this Rule. The name can contain only alphanumeric characters (A-Z, a-z, 0-9); the name can't contain whitespace. You can't change MetricName after you create the Rule.

", "RuleGroup$MetricName": "

A friendly name or description for the metrics for this RuleGroup. The name can contain only alphanumeric characters (A-Z, a-z, 0-9); the name can't contain whitespace. You can't change the name of the metric after you create the RuleGroup.

", "SubscribedRuleGroupSummary$MetricName": "

A friendly name or description for the metrics for this RuleGroup. The name can contain only alphanumeric characters (A-Z, a-z, 0-9); the name can't contain whitespace. You can't change the name of the metric after you create the RuleGroup.

", "WebACL$MetricName": "

A friendly name or description for the metrics for this WebACL. The name can contain only alphanumeric characters (A-Z, a-z, 0-9); the name can't contain whitespace. You can't change MetricName after you create the WebACL.

" } }, "Negated": { "base": null, "refs": { "Predicate$Negated": "

Set Negated to False if you want AWS WAF to allow, block, or count requests based on the settings in the specified ByteMatchSet, IPSet, SqlInjectionMatchSet, XssMatchSet, RegexMatchSet, GeoMatchSet, or SizeConstraintSet. For example, if an IPSet includes the IP address 192.0.2.44, AWS WAF will allow or block requests based on that IP address.

Set Negated to True if you want AWS WAF to allow or block a request based on the negation of the settings in the ByteMatchSet, IPSet, SqlInjectionMatchSet, XssMatchSet, RegexMatchSet, GeoMatchSet, or SizeConstraintSet. For example, if an IPSet includes the IP address 192.0.2.44, AWS WAF will allow, block, or count requests based on all IP addresses except 192.0.2.44.

" } }, "NextMarker": { "base": null, "refs": { "GetRateBasedRuleManagedKeysRequest$NextMarker": "

A null value and not currently used. Do not include this in your request.

", "GetRateBasedRuleManagedKeysResponse$NextMarker": "

A null value and not currently used.

", "ListActivatedRulesInRuleGroupRequest$NextMarker": "

If you specify a value for Limit and you have more ActivatedRules than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of ActivatedRules. For the second and subsequent ListActivatedRulesInRuleGroup requests, specify the value of NextMarker from the previous response to get information about another batch of ActivatedRules.

", "ListActivatedRulesInRuleGroupResponse$NextMarker": "

If you have more ActivatedRules than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more ActivatedRules, submit another ListActivatedRulesInRuleGroup request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListByteMatchSetsRequest$NextMarker": "

If you specify a value for Limit and you have more ByteMatchSets than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of ByteMatchSets. For the second and subsequent ListByteMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of ByteMatchSets.

", "ListByteMatchSetsResponse$NextMarker": "

If you have more ByteMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more ByteMatchSet objects, submit another ListByteMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListGeoMatchSetsRequest$NextMarker": "

If you specify a value for Limit and you have more GeoMatchSets than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of GeoMatchSet objects. For the second and subsequent ListGeoMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of GeoMatchSet objects.

", "ListGeoMatchSetsResponse$NextMarker": "

If you have more GeoMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more GeoMatchSet objects, submit another ListGeoMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListIPSetsRequest$NextMarker": "

If you specify a value for Limit and you have more IPSets than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of IPSets. For the second and subsequent ListIPSets requests, specify the value of NextMarker from the previous response to get information about another batch of IPSets.

", "ListIPSetsResponse$NextMarker": "

If you have more IPSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more IPSet objects, submit another ListIPSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListRateBasedRulesRequest$NextMarker": "

If you specify a value for Limit and you have more Rules than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of Rules. For the second and subsequent ListRateBasedRules requests, specify the value of NextMarker from the previous response to get information about another batch of Rules.

", "ListRateBasedRulesResponse$NextMarker": "

If you have more Rules than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more Rules, submit another ListRateBasedRules request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListRegexMatchSetsRequest$NextMarker": "

If you specify a value for Limit and you have more RegexMatchSet objects than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of ByteMatchSets. For the second and subsequent ListRegexMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of RegexMatchSet objects.

", "ListRegexMatchSetsResponse$NextMarker": "

If you have more RegexMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more RegexMatchSet objects, submit another ListRegexMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListRegexPatternSetsRequest$NextMarker": "

If you specify a value for Limit and you have more RegexPatternSet objects than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of RegexPatternSet objects. For the second and subsequent ListRegexPatternSets requests, specify the value of NextMarker from the previous response to get information about another batch of RegexPatternSet objects.

", "ListRegexPatternSetsResponse$NextMarker": "

If you have more RegexPatternSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more RegexPatternSet objects, submit another ListRegexPatternSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListRuleGroupsRequest$NextMarker": "

If you specify a value for Limit and you have more RuleGroups than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of RuleGroups. For the second and subsequent ListRuleGroups requests, specify the value of NextMarker from the previous response to get information about another batch of RuleGroups.

", "ListRuleGroupsResponse$NextMarker": "

If you have more RuleGroups than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more RuleGroups, submit another ListRuleGroups request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListRulesRequest$NextMarker": "

If you specify a value for Limit and you have more Rules than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of Rules. For the second and subsequent ListRules requests, specify the value of NextMarker from the previous response to get information about another batch of Rules.

", "ListRulesResponse$NextMarker": "

If you have more Rules than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more Rules, submit another ListRules request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListSizeConstraintSetsRequest$NextMarker": "

If you specify a value for Limit and you have more SizeConstraintSets than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of SizeConstraintSets. For the second and subsequent ListSizeConstraintSets requests, specify the value of NextMarker from the previous response to get information about another batch of SizeConstraintSets.

", "ListSizeConstraintSetsResponse$NextMarker": "

If you have more SizeConstraintSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more SizeConstraintSet objects, submit another ListSizeConstraintSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListSqlInjectionMatchSetsRequest$NextMarker": "

If you specify a value for Limit and you have more SqlInjectionMatchSet objects than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of SqlInjectionMatchSets. For the second and subsequent ListSqlInjectionMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of SqlInjectionMatchSets.

", "ListSqlInjectionMatchSetsResponse$NextMarker": "

If you have more SqlInjectionMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more SqlInjectionMatchSet objects, submit another ListSqlInjectionMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListSubscribedRuleGroupsRequest$NextMarker": "

If you specify a value for Limit and you have more ByteMatchSetssubscribed rule groups than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of subscribed rule groups. For the second and subsequent ListSubscribedRuleGroupsRequest requests, specify the value of NextMarker from the previous response to get information about another batch of subscribed rule groups.

", "ListSubscribedRuleGroupsResponse$NextMarker": "

If you have more objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more objects, submit another ListSubscribedRuleGroups request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListWebACLsRequest$NextMarker": "

If you specify a value for Limit and you have more WebACL objects than the number that you specify for Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of WebACL objects. For the second and subsequent ListWebACLs requests, specify the value of NextMarker from the previous response to get information about another batch of WebACL objects.

", "ListWebACLsResponse$NextMarker": "

If you have more WebACL objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more WebACL objects, submit another ListWebACLs request, and specify the NextMarker value from the response in the NextMarker value in the next request.

", "ListXssMatchSetsRequest$NextMarker": "

If you specify a value for Limit and you have more XssMatchSet objects than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of XssMatchSets. For the second and subsequent ListXssMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of XssMatchSets.

", "ListXssMatchSetsResponse$NextMarker": "

If you have more XssMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more XssMatchSet objects, submit another ListXssMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

" } }, "PaginationLimit": { "base": null, "refs": { "ListActivatedRulesInRuleGroupRequest$Limit": "

Specifies the number of ActivatedRules that you want AWS WAF to return for this request. If you have more ActivatedRules than the number that you specify for Limit, the response includes a NextMarker value that you can use to get another batch of ActivatedRules.

", "ListByteMatchSetsRequest$Limit": "

Specifies the number of ByteMatchSet objects that you want AWS WAF to return for this request. If you have more ByteMatchSets objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of ByteMatchSet objects.

", "ListGeoMatchSetsRequest$Limit": "

Specifies the number of GeoMatchSet objects that you want AWS WAF to return for this request. If you have more GeoMatchSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of GeoMatchSet objects.

", "ListIPSetsRequest$Limit": "

Specifies the number of IPSet objects that you want AWS WAF to return for this request. If you have more IPSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of IPSet objects.

", "ListRateBasedRulesRequest$Limit": "

Specifies the number of Rules that you want AWS WAF to return for this request. If you have more Rules than the number that you specify for Limit, the response includes a NextMarker value that you can use to get another batch of Rules.

", "ListRegexMatchSetsRequest$Limit": "

Specifies the number of RegexMatchSet objects that you want AWS WAF to return for this request. If you have more RegexMatchSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of RegexMatchSet objects.

", "ListRegexPatternSetsRequest$Limit": "

Specifies the number of RegexPatternSet objects that you want AWS WAF to return for this request. If you have more RegexPatternSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of RegexPatternSet objects.

", "ListRuleGroupsRequest$Limit": "

Specifies the number of RuleGroups that you want AWS WAF to return for this request. If you have more RuleGroups than the number that you specify for Limit, the response includes a NextMarker value that you can use to get another batch of RuleGroups.

", "ListRulesRequest$Limit": "

Specifies the number of Rules that you want AWS WAF to return for this request. If you have more Rules than the number that you specify for Limit, the response includes a NextMarker value that you can use to get another batch of Rules.

", "ListSizeConstraintSetsRequest$Limit": "

Specifies the number of SizeConstraintSet objects that you want AWS WAF to return for this request. If you have more SizeConstraintSets objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of SizeConstraintSet objects.

", "ListSqlInjectionMatchSetsRequest$Limit": "

Specifies the number of SqlInjectionMatchSet objects that you want AWS WAF to return for this request. If you have more SqlInjectionMatchSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of Rules.

", "ListSubscribedRuleGroupsRequest$Limit": "

Specifies the number of subscribed rule groups that you want AWS WAF to return for this request. If you have more objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of objects.

", "ListWebACLsRequest$Limit": "

Specifies the number of WebACL objects that you want AWS WAF to return for this request. If you have more WebACL objects than the number that you specify for Limit, the response includes a NextMarker value that you can use to get another batch of WebACL objects.

", "ListXssMatchSetsRequest$Limit": "

Specifies the number of XssMatchSet objects that you want AWS WAF to return for this request. If you have more XssMatchSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of Rules.

" } }, "ParameterExceptionField": { "base": null, "refs": { "WAFInvalidParameterException$field": null } }, "ParameterExceptionParameter": { "base": null, "refs": { "WAFInvalidParameterException$parameter": null } }, "ParameterExceptionReason": { "base": null, "refs": { "WAFInvalidParameterException$reason": null } }, "PopulationSize": { "base": null, "refs": { "GetSampledRequestsResponse$PopulationSize": "

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 AWS resource received during the specified time range.

" } }, "PositionalConstraint": { "base": null, "refs": { "ByteMatchTuple$PositionalConstraint": "

Within the portion of a web request that you want to search (for example, in the query string, if any), specify where you want AWS WAF to search. Valid values include the following:

CONTAINS

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

CONTAINS_WORD

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

EXACTLY

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

STARTS_WITH

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

ENDS_WITH

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

" } }, "Predicate": { "base": "

Specifies the ByteMatchSet, IPSet, SqlInjectionMatchSet, XssMatchSet, RegexMatchSet, GeoMatchSet, and SizeConstraintSet objects that you want to add to a Rule and, for each object, indicates whether you want to negate the settings, for example, requests that do NOT originate from the IP address 192.0.2.44.

", "refs": { "Predicates$member": null, "RuleUpdate$Predicate": "

The ID of the Predicate (such as an IPSet) that you want to add to a Rule.

" } }, "PredicateType": { "base": null, "refs": { "Predicate$Type": "

The type of predicate in a Rule, such as ByteMatchSet or IPSet.

" } }, "Predicates": { "base": null, "refs": { "RateBasedRule$MatchPredicates": "

The Predicates object contains one Predicate element for each ByteMatchSet, IPSet, or SqlInjectionMatchSet object that you want to include in a RateBasedRule.

", "Rule$Predicates": "

The Predicates object contains one Predicate element for each ByteMatchSet, IPSet, or SqlInjectionMatchSet object that you want to include in a Rule.

" } }, "RateBasedRule": { "base": "

A RateBasedRule is identical to a regular Rule, with one addition: a RateBasedRule counts the number of requests that arrive from a specified IP address every five minutes. For example, based on recent requests that you've seen from an attacker, you might create a RateBasedRule that includes the following conditions:

In the rule, you also define the rate limit as 15,000.

Requests that meet both of these conditions and exceed 15,000 requests every five minutes trigger the rule's action (block or count), which is defined in the web ACL.

", "refs": { "CreateRateBasedRuleResponse$Rule": "

The RateBasedRule that is returned in the CreateRateBasedRule response.

", "GetRateBasedRuleResponse$Rule": "

Information about the RateBasedRule that you specified in the GetRateBasedRule request.

" } }, "RateKey": { "base": null, "refs": { "CreateRateBasedRuleRequest$RateKey": "

The field that AWS WAF uses to determine if requests are likely arriving from a single source and thus subject to rate monitoring. The only valid value for RateKey is IP. IP indicates that requests that arrive from the same IP address are subject to the RateLimit that is specified in the RateBasedRule.

", "RateBasedRule$RateKey": "

The field that AWS WAF uses to determine if requests are likely arriving from single source and thus subject to rate monitoring. The only valid value for RateKey is IP. IP indicates that requests arriving from the same IP address are subject to the RateLimit that is specified in the RateBasedRule.

" } }, "RateLimit": { "base": null, "refs": { "CreateRateBasedRuleRequest$RateLimit": "

The maximum number of requests, which have an identical value in the field that is specified by RateKey, allowed in a five-minute period. If the number of requests exceeds the RateLimit and the other predicates specified in the rule are also met, AWS WAF triggers the action that is specified for this rule.

", "RateBasedRule$RateLimit": "

The maximum number of requests, which have an identical value in the field specified by the RateKey, allowed in a five-minute period. If the number of requests exceeds the RateLimit and the other predicates specified in the rule are also met, AWS WAF triggers the action that is specified for this rule.

", "UpdateRateBasedRuleRequest$RateLimit": "

The maximum number of requests, which have an identical value in the field specified by the RateKey, allowed in a five-minute period. If the number of requests exceeds the RateLimit and the other predicates specified in the rule are also met, AWS WAF triggers the action that is specified for this rule.

" } }, "RegexMatchSet": { "base": "

In a GetRegexMatchSet request, RegexMatchSet is a complex type that contains the RegexMatchSetId and Name of a RegexMatchSet, and the values that you specified when you updated the RegexMatchSet.

The values are contained in a RegexMatchTuple object, which specify the parts of web requests that you want AWS WAF to inspect and the values that you want AWS WAF to search for. If a RegexMatchSet contains more than one RegexMatchTuple object, a request needs to match the settings in only one ByteMatchTuple to be considered a match.

", "refs": { "CreateRegexMatchSetResponse$RegexMatchSet": "

A RegexMatchSet that contains no RegexMatchTuple objects.

", "GetRegexMatchSetResponse$RegexMatchSet": "

Information about the RegexMatchSet that you specified in the GetRegexMatchSet request. For more information, see RegexMatchTuple.

" } }, "RegexMatchSetSummaries": { "base": null, "refs": { "ListRegexMatchSetsResponse$RegexMatchSets": "

An array of RegexMatchSetSummary objects.

" } }, "RegexMatchSetSummary": { "base": "

Returned by ListRegexMatchSets. Each RegexMatchSetSummary object includes the Name and RegexMatchSetId for one RegexMatchSet.

", "refs": { "RegexMatchSetSummaries$member": null } }, "RegexMatchSetUpdate": { "base": "

In an UpdateRegexMatchSet request, RegexMatchSetUpdate specifies whether to insert or delete a RegexMatchTuple and includes the settings for the RegexMatchTuple.

", "refs": { "RegexMatchSetUpdates$member": null } }, "RegexMatchSetUpdates": { "base": null, "refs": { "UpdateRegexMatchSetRequest$Updates": "

An array of RegexMatchSetUpdate objects that you want to insert into or delete from a RegexMatchSet. For more information, see RegexMatchTuple.

" } }, "RegexMatchTuple": { "base": "

The regular expression pattern that you want AWS WAF to search for in web requests, the location in requests that you want AWS WAF to search, and other settings. Each RegexMatchTuple object contains:

", "refs": { "RegexMatchSetUpdate$RegexMatchTuple": "

Information about the part of a web request that you want AWS WAF to inspect and the identifier of the regular expression (regex) pattern that you want AWS WAF to search for. If you specify DELETE for the value of Action, the RegexMatchTuple values must exactly match the values in the RegexMatchTuple that you want to delete from the RegexMatchSet.

", "RegexMatchTuples$member": null } }, "RegexMatchTuples": { "base": null, "refs": { "RegexMatchSet$RegexMatchTuples": "

Contains an array of RegexMatchTuple objects. Each RegexMatchTuple object contains:

" } }, "RegexPatternSet": { "base": "

The RegexPatternSet specifies the regular expression (regex) pattern that you want AWS WAF to search for, such as B[a@]dB[o0]t. You can then configure AWS WAF to reject those requests.

", "refs": { "CreateRegexPatternSetResponse$RegexPatternSet": "

A RegexPatternSet that contains no objects.

", "GetRegexPatternSetResponse$RegexPatternSet": "

Information about the RegexPatternSet that you specified in the GetRegexPatternSet request, including the identifier of the pattern set and the regular expression patterns you want AWS WAF to search for.

" } }, "RegexPatternSetSummaries": { "base": null, "refs": { "ListRegexPatternSetsResponse$RegexPatternSets": "

An array of RegexPatternSetSummary objects.

" } }, "RegexPatternSetSummary": { "base": "

Returned by ListRegexPatternSets. Each RegexPatternSetSummary object includes the Name and RegexPatternSetId for one RegexPatternSet.

", "refs": { "RegexPatternSetSummaries$member": null } }, "RegexPatternSetUpdate": { "base": "

In an UpdateRegexPatternSet request, RegexPatternSetUpdate specifies whether to insert or delete a RegexPatternString and includes the settings for the RegexPatternString.

", "refs": { "RegexPatternSetUpdates$member": null } }, "RegexPatternSetUpdates": { "base": null, "refs": { "UpdateRegexPatternSetRequest$Updates": "

An array of RegexPatternSetUpdate objects that you want to insert into or delete from a RegexPatternSet.

" } }, "RegexPatternString": { "base": null, "refs": { "RegexPatternSetUpdate$RegexPatternString": "

Specifies the regular expression (regex) pattern that you want AWS WAF to search for, such as B[a@]dB[o0]t.

", "RegexPatternStrings$member": null } }, "RegexPatternStrings": { "base": null, "refs": { "RegexPatternSet$RegexPatternStrings": "

Specifies the regular expression (regex) patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t.

" } }, "ResourceId": { "base": null, "refs": { "ActivatedRule$RuleId": "

The RuleId for a Rule. You use RuleId to get more information about a Rule (see GetRule), update a Rule (see UpdateRule), insert a Rule into a WebACL or delete a one from a WebACL (see UpdateWebACL), or delete a Rule from AWS WAF (see DeleteRule).

RuleId is returned by CreateRule and by ListRules.

", "ByteMatchSet$ByteMatchSetId": "

The ByteMatchSetId for a ByteMatchSet. You use ByteMatchSetId to get information about a ByteMatchSet (see GetByteMatchSet), update a ByteMatchSet (see UpdateByteMatchSet), insert a ByteMatchSet into a Rule or delete one from a Rule (see UpdateRule), and delete a ByteMatchSet from AWS WAF (see DeleteByteMatchSet).

ByteMatchSetId is returned by CreateByteMatchSet and by ListByteMatchSets.

", "ByteMatchSetSummary$ByteMatchSetId": "

The ByteMatchSetId for a ByteMatchSet. You use ByteMatchSetId to get information about a ByteMatchSet, update a ByteMatchSet, remove a ByteMatchSet from a Rule, and delete a ByteMatchSet from AWS WAF.

ByteMatchSetId is returned by CreateByteMatchSet and by ListByteMatchSets.

", "DeleteByteMatchSetRequest$ByteMatchSetId": "

The ByteMatchSetId of the ByteMatchSet that you want to delete. ByteMatchSetId is returned by CreateByteMatchSet and by ListByteMatchSets.

", "DeleteGeoMatchSetRequest$GeoMatchSetId": "

The GeoMatchSetID of the GeoMatchSet that you want to delete. GeoMatchSetId is returned by CreateGeoMatchSet and by ListGeoMatchSets.

", "DeleteIPSetRequest$IPSetId": "

The IPSetId of the IPSet that you want to delete. IPSetId is returned by CreateIPSet and by ListIPSets.

", "DeleteRateBasedRuleRequest$RuleId": "

The RuleId of the RateBasedRule that you want to delete. RuleId is returned by CreateRateBasedRule and by ListRateBasedRules.

", "DeleteRegexMatchSetRequest$RegexMatchSetId": "

The RegexMatchSetId of the RegexMatchSet that you want to delete. RegexMatchSetId is returned by CreateRegexMatchSet and by ListRegexMatchSets.

", "DeleteRegexPatternSetRequest$RegexPatternSetId": "

The RegexPatternSetId of the RegexPatternSet that you want to delete. RegexPatternSetId is returned by CreateRegexPatternSet and by ListRegexPatternSets.

", "DeleteRuleGroupRequest$RuleGroupId": "

The RuleGroupId of the RuleGroup that you want to delete. RuleGroupId is returned by CreateRuleGroup and by ListRuleGroups.

", "DeleteRuleRequest$RuleId": "

The RuleId of the Rule that you want to delete. RuleId is returned by CreateRule and by ListRules.

", "DeleteSizeConstraintSetRequest$SizeConstraintSetId": "

The SizeConstraintSetId of the SizeConstraintSet that you want to delete. SizeConstraintSetId is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.

", "DeleteSqlInjectionMatchSetRequest$SqlInjectionMatchSetId": "

The SqlInjectionMatchSetId of the SqlInjectionMatchSet that you want to delete. SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.

", "DeleteWebACLRequest$WebACLId": "

The WebACLId of the WebACL that you want to delete. WebACLId is returned by CreateWebACL and by ListWebACLs.

", "DeleteXssMatchSetRequest$XssMatchSetId": "

The XssMatchSetId of the XssMatchSet that you want to delete. XssMatchSetId is returned by CreateXssMatchSet and by ListXssMatchSets.

", "GeoMatchSet$GeoMatchSetId": "

The GeoMatchSetId for an GeoMatchSet. You use GeoMatchSetId to get information about a GeoMatchSet (see GeoMatchSet), update a GeoMatchSet (see UpdateGeoMatchSet), insert a GeoMatchSet into a Rule or delete one from a Rule (see UpdateRule), and delete a GeoMatchSet from AWS WAF (see DeleteGeoMatchSet).

GeoMatchSetId is returned by CreateGeoMatchSet and by ListGeoMatchSets.

", "GeoMatchSetSummary$GeoMatchSetId": "

The GeoMatchSetId for an GeoMatchSet. You can use GeoMatchSetId in a GetGeoMatchSet request to get detailed information about an GeoMatchSet.

", "GetByteMatchSetRequest$ByteMatchSetId": "

The ByteMatchSetId of the ByteMatchSet that you want to get. ByteMatchSetId is returned by CreateByteMatchSet and by ListByteMatchSets.

", "GetGeoMatchSetRequest$GeoMatchSetId": "

The GeoMatchSetId of the GeoMatchSet that you want to get. GeoMatchSetId is returned by CreateGeoMatchSet and by ListGeoMatchSets.

", "GetIPSetRequest$IPSetId": "

The IPSetId of the IPSet that you want to get. IPSetId is returned by CreateIPSet and by ListIPSets.

", "GetRateBasedRuleManagedKeysRequest$RuleId": "

The RuleId of the RateBasedRule for which you want to get a list of ManagedKeys. RuleId is returned by CreateRateBasedRule and by ListRateBasedRules.

", "GetRateBasedRuleRequest$RuleId": "

The RuleId of the RateBasedRule that you want to get. RuleId is returned by CreateRateBasedRule and by ListRateBasedRules.

", "GetRegexMatchSetRequest$RegexMatchSetId": "

The RegexMatchSetId of the RegexMatchSet that you want to get. RegexMatchSetId is returned by CreateRegexMatchSet and by ListRegexMatchSets.

", "GetRegexPatternSetRequest$RegexPatternSetId": "

The RegexPatternSetId of the RegexPatternSet that you want to get. RegexPatternSetId is returned by CreateRegexPatternSet and by ListRegexPatternSets.

", "GetRuleGroupRequest$RuleGroupId": "

The RuleGroupId of the RuleGroup that you want to get. RuleGroupId is returned by CreateRuleGroup and by ListRuleGroups.

", "GetRuleRequest$RuleId": "

The RuleId of the Rule that you want to get. RuleId is returned by CreateRule and by ListRules.

", "GetSampledRequestsRequest$WebAclId": "

The WebACLId of the WebACL for which you want GetSampledRequests to return a sample of requests.

", "GetSampledRequestsRequest$RuleId": "

RuleId is one of three values:

", "GetSizeConstraintSetRequest$SizeConstraintSetId": "

The SizeConstraintSetId of the SizeConstraintSet that you want to get. SizeConstraintSetId is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.

", "GetSqlInjectionMatchSetRequest$SqlInjectionMatchSetId": "

The SqlInjectionMatchSetId of the SqlInjectionMatchSet that you want to get. SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.

", "GetWebACLRequest$WebACLId": "

The WebACLId of the WebACL that you want to get. WebACLId is returned by CreateWebACL and by ListWebACLs.

", "GetXssMatchSetRequest$XssMatchSetId": "

The XssMatchSetId of the XssMatchSet that you want to get. XssMatchSetId is returned by CreateXssMatchSet and by ListXssMatchSets.

", "IPSet$IPSetId": "

The IPSetId for an IPSet. You use IPSetId to get information about an IPSet (see GetIPSet), update an IPSet (see UpdateIPSet), insert an IPSet into a Rule or delete one from a Rule (see UpdateRule), and delete an IPSet from AWS WAF (see DeleteIPSet).

IPSetId is returned by CreateIPSet and by ListIPSets.

", "IPSetSummary$IPSetId": "

The IPSetId for an IPSet. You can use IPSetId in a GetIPSet request to get detailed information about an IPSet.

", "ListActivatedRulesInRuleGroupRequest$RuleGroupId": "

The RuleGroupId of the RuleGroup for which you want to get a list of ActivatedRule objects.

", "Predicate$DataId": "

A unique identifier for a predicate in a Rule, such as ByteMatchSetId or IPSetId. The ID is returned by the corresponding Create or List command.

", "RateBasedRule$RuleId": "

A unique identifier for a RateBasedRule. You use RuleId to get more information about a RateBasedRule (see GetRateBasedRule), update a RateBasedRule (see UpdateRateBasedRule), insert a RateBasedRule into a WebACL or delete one from a WebACL (see UpdateWebACL), or delete a RateBasedRule from AWS WAF (see DeleteRateBasedRule).

", "RegexMatchSet$RegexMatchSetId": "

The RegexMatchSetId for a RegexMatchSet. You use RegexMatchSetId to get information about a RegexMatchSet (see GetRegexMatchSet), update a RegexMatchSet (see UpdateRegexMatchSet), insert a RegexMatchSet into a Rule or delete one from a Rule (see UpdateRule), and delete a RegexMatchSet from AWS WAF (see DeleteRegexMatchSet).

RegexMatchSetId is returned by CreateRegexMatchSet and by ListRegexMatchSets.

", "RegexMatchSetSummary$RegexMatchSetId": "

The RegexMatchSetId for a RegexMatchSet. You use RegexMatchSetId to get information about a RegexMatchSet, update a RegexMatchSet, remove a RegexMatchSet from a Rule, and delete a RegexMatchSet from AWS WAF.

RegexMatchSetId is returned by CreateRegexMatchSet and by ListRegexMatchSets.

", "RegexMatchTuple$RegexPatternSetId": "

The RegexPatternSetId for a RegexPatternSet. You use RegexPatternSetId to get information about a RegexPatternSet (see GetRegexPatternSet), update a RegexPatternSet (see UpdateRegexPatternSet), insert a RegexPatternSet into a RegexMatchSet or delete one from a RegexMatchSet (see UpdateRegexMatchSet), and delete an RegexPatternSet from AWS WAF (see DeleteRegexPatternSet).

RegexPatternSetId is returned by CreateRegexPatternSet and by ListRegexPatternSets.

", "RegexPatternSet$RegexPatternSetId": "

The identifier for the RegexPatternSet. You use RegexPatternSetId to get information about a RegexPatternSet, update a RegexPatternSet, remove a RegexPatternSet from a RegexMatchSet, and delete a RegexPatternSet from AWS WAF.

RegexMatchSetId is returned by CreateRegexPatternSet and by ListRegexPatternSets.

", "RegexPatternSetSummary$RegexPatternSetId": "

The RegexPatternSetId for a RegexPatternSet. You use RegexPatternSetId to get information about a RegexPatternSet, update a RegexPatternSet, remove a RegexPatternSet from a RegexMatchSet, and delete a RegexPatternSet from AWS WAF.

RegexPatternSetId is returned by CreateRegexPatternSet and by ListRegexPatternSets.

", "Rule$RuleId": "

A unique identifier for a Rule. You use RuleId to get more information about a Rule (see GetRule), update a Rule (see UpdateRule), insert a Rule into a WebACL or delete a one from a WebACL (see UpdateWebACL), or delete a Rule from AWS WAF (see DeleteRule).

RuleId is returned by CreateRule and by ListRules.

", "RuleGroup$RuleGroupId": "

A unique identifier for a RuleGroup. You use RuleGroupId to get more information about a RuleGroup (see GetRuleGroup), update a RuleGroup (see UpdateRuleGroup), insert a RuleGroup into a WebACL or delete a one from a WebACL (see UpdateWebACL), or delete a RuleGroup from AWS WAF (see DeleteRuleGroup).

RuleGroupId is returned by CreateRuleGroup and by ListRuleGroups.

", "RuleGroupSummary$RuleGroupId": "

A unique identifier for a RuleGroup. You use RuleGroupId to get more information about a RuleGroup (see GetRuleGroup), update a RuleGroup (see UpdateRuleGroup), insert a RuleGroup into a WebACL or delete one from a WebACL (see UpdateWebACL), or delete a RuleGroup from AWS WAF (see DeleteRuleGroup).

RuleGroupId is returned by CreateRuleGroup and by ListRuleGroups.

", "RuleSummary$RuleId": "

A unique identifier for a Rule. You use RuleId to get more information about a Rule (see GetRule), update a Rule (see UpdateRule), insert a Rule into a WebACL or delete one from a WebACL (see UpdateWebACL), or delete a Rule from AWS WAF (see DeleteRule).

RuleId is returned by CreateRule and by ListRules.

", "SampledHTTPRequest$RuleWithinRuleGroup": "

This value is returned if the GetSampledRequests request specifies the ID of a RuleGroup rather than the ID of an individual rule. RuleWithinRuleGroup is the rule within the specified RuleGroup that matched the request listed in the response.

", "SizeConstraintSet$SizeConstraintSetId": "

A unique identifier for a SizeConstraintSet. You use SizeConstraintSetId to get information about a SizeConstraintSet (see GetSizeConstraintSet), update a SizeConstraintSet (see UpdateSizeConstraintSet), insert a SizeConstraintSet into a Rule or delete one from a Rule (see UpdateRule), and delete a SizeConstraintSet from AWS WAF (see DeleteSizeConstraintSet).

SizeConstraintSetId is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.

", "SizeConstraintSetSummary$SizeConstraintSetId": "

A unique identifier for a SizeConstraintSet. You use SizeConstraintSetId to get information about a SizeConstraintSet (see GetSizeConstraintSet), update a SizeConstraintSet (see UpdateSizeConstraintSet), insert a SizeConstraintSet into a Rule or delete one from a Rule (see UpdateRule), and delete a SizeConstraintSet from AWS WAF (see DeleteSizeConstraintSet).

SizeConstraintSetId is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.

", "SqlInjectionMatchSet$SqlInjectionMatchSetId": "

A unique identifier for a SqlInjectionMatchSet. You use SqlInjectionMatchSetId to get information about a SqlInjectionMatchSet (see GetSqlInjectionMatchSet), update a SqlInjectionMatchSet (see UpdateSqlInjectionMatchSet), insert a SqlInjectionMatchSet into a Rule or delete one from a Rule (see UpdateRule), and delete a SqlInjectionMatchSet from AWS WAF (see DeleteSqlInjectionMatchSet).

SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.

", "SqlInjectionMatchSetSummary$SqlInjectionMatchSetId": "

A unique identifier for a SqlInjectionMatchSet. You use SqlInjectionMatchSetId to get information about a SqlInjectionMatchSet (see GetSqlInjectionMatchSet), update a SqlInjectionMatchSet (see UpdateSqlInjectionMatchSet), insert a SqlInjectionMatchSet into a Rule or delete one from a Rule (see UpdateRule), and delete a SqlInjectionMatchSet from AWS WAF (see DeleteSqlInjectionMatchSet).

SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.

", "SubscribedRuleGroupSummary$RuleGroupId": "

A unique identifier for a RuleGroup.

", "UpdateByteMatchSetRequest$ByteMatchSetId": "

The ByteMatchSetId of the ByteMatchSet that you want to update. ByteMatchSetId is returned by CreateByteMatchSet and by ListByteMatchSets.

", "UpdateGeoMatchSetRequest$GeoMatchSetId": "

The GeoMatchSetId of the GeoMatchSet that you want to update. GeoMatchSetId is returned by CreateGeoMatchSet and by ListGeoMatchSets.

", "UpdateIPSetRequest$IPSetId": "

The IPSetId of the IPSet that you want to update. IPSetId is returned by CreateIPSet and by ListIPSets.

", "UpdateRateBasedRuleRequest$RuleId": "

The RuleId of the RateBasedRule that you want to update. RuleId is returned by CreateRateBasedRule and by ListRateBasedRules.

", "UpdateRegexMatchSetRequest$RegexMatchSetId": "

The RegexMatchSetId of the RegexMatchSet that you want to update. RegexMatchSetId is returned by CreateRegexMatchSet and by ListRegexMatchSets.

", "UpdateRegexPatternSetRequest$RegexPatternSetId": "

The RegexPatternSetId of the RegexPatternSet that you want to update. RegexPatternSetId is returned by CreateRegexPatternSet and by ListRegexPatternSets.

", "UpdateRuleGroupRequest$RuleGroupId": "

The RuleGroupId of the RuleGroup that you want to update. RuleGroupId is returned by CreateRuleGroup and by ListRuleGroups.

", "UpdateRuleRequest$RuleId": "

The RuleId of the Rule that you want to update. RuleId is returned by CreateRule and by ListRules.

", "UpdateSizeConstraintSetRequest$SizeConstraintSetId": "

The SizeConstraintSetId of the SizeConstraintSet that you want to update. SizeConstraintSetId is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.

", "UpdateSqlInjectionMatchSetRequest$SqlInjectionMatchSetId": "

The SqlInjectionMatchSetId of the SqlInjectionMatchSet that you want to update. SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.

", "UpdateWebACLRequest$WebACLId": "

The WebACLId of the WebACL that you want to update. WebACLId is returned by CreateWebACL and by ListWebACLs.

", "UpdateXssMatchSetRequest$XssMatchSetId": "

The XssMatchSetId of the XssMatchSet that you want to update. XssMatchSetId is returned by CreateXssMatchSet and by ListXssMatchSets.

", "WebACL$WebACLId": "

A unique identifier for a WebACL. You use WebACLId to get information about a WebACL (see GetWebACL), update a WebACL (see UpdateWebACL), and delete a WebACL from AWS WAF (see DeleteWebACL).

WebACLId is returned by CreateWebACL and by ListWebACLs.

", "WebACLSummary$WebACLId": "

A unique identifier for a WebACL. You use WebACLId to get information about a WebACL (see GetWebACL), update a WebACL (see UpdateWebACL), and delete a WebACL from AWS WAF (see DeleteWebACL).

WebACLId is returned by CreateWebACL and by ListWebACLs.

", "XssMatchSet$XssMatchSetId": "

A unique identifier for an XssMatchSet. You use XssMatchSetId to get information about an XssMatchSet (see GetXssMatchSet), update an XssMatchSet (see UpdateXssMatchSet), insert an XssMatchSet into a Rule or delete one from a Rule (see UpdateRule), and delete an XssMatchSet from AWS WAF (see DeleteXssMatchSet).

XssMatchSetId is returned by CreateXssMatchSet and by ListXssMatchSets.

", "XssMatchSetSummary$XssMatchSetId": "

A unique identifier for an XssMatchSet. You use XssMatchSetId to get information about a XssMatchSet (see GetXssMatchSet), update an XssMatchSet (see UpdateXssMatchSet), insert an XssMatchSet into a Rule or delete one from a Rule (see UpdateRule), and delete an XssMatchSet from AWS WAF (see DeleteXssMatchSet).

XssMatchSetId is returned by CreateXssMatchSet and by ListXssMatchSets.

" } }, "ResourceName": { "base": null, "refs": { "ByteMatchSet$Name": "

A friendly name or description of the ByteMatchSet. You can't change Name after you create a ByteMatchSet.

", "ByteMatchSetSummary$Name": "

A friendly name or description of the ByteMatchSet. You can't change Name after you create a ByteMatchSet.

", "CreateByteMatchSetRequest$Name": "

A friendly name or description of the ByteMatchSet. You can't change Name after you create a ByteMatchSet.

", "CreateGeoMatchSetRequest$Name": "

A friendly name or description of the GeoMatchSet. You can't change Name after you create the GeoMatchSet.

", "CreateIPSetRequest$Name": "

A friendly name or description of the IPSet. You can't change Name after you create the IPSet.

", "CreateRateBasedRuleRequest$Name": "

A friendly name or description of the RateBasedRule. You can't change the name of a RateBasedRule after you create it.

", "CreateRegexMatchSetRequest$Name": "

A friendly name or description of the RegexMatchSet. You can't change Name after you create a RegexMatchSet.

", "CreateRegexPatternSetRequest$Name": "

A friendly name or description of the RegexPatternSet. You can't change Name after you create a RegexPatternSet.

", "CreateRuleGroupRequest$Name": "

A friendly name or description of the RuleGroup. You can't change Name after you create a RuleGroup.

", "CreateRuleRequest$Name": "

A friendly name or description of the Rule. You can't change the name of a Rule after you create it.

", "CreateSizeConstraintSetRequest$Name": "

A friendly name or description of the SizeConstraintSet. You can't change Name after you create a SizeConstraintSet.

", "CreateSqlInjectionMatchSetRequest$Name": "

A friendly name or description for the SqlInjectionMatchSet that you're creating. You can't change Name after you create the SqlInjectionMatchSet.

", "CreateWebACLRequest$Name": "

A friendly name or description of the WebACL. You can't change Name after you create the WebACL.

", "CreateXssMatchSetRequest$Name": "

A friendly name or description for the XssMatchSet that you're creating. You can't change Name after you create the XssMatchSet.

", "GeoMatchSet$Name": "

A friendly name or description of the GeoMatchSet. You can't change the name of an GeoMatchSet after you create it.

", "GeoMatchSetSummary$Name": "

A friendly name or description of the GeoMatchSet. You can't change the name of an GeoMatchSet after you create it.

", "IPSet$Name": "

A friendly name or description of the IPSet. You can't change the name of an IPSet after you create it.

", "IPSetSummary$Name": "

A friendly name or description of the IPSet. You can't change the name of an IPSet after you create it.

", "RateBasedRule$Name": "

A friendly name or description for a RateBasedRule. You can't change the name of a RateBasedRule after you create it.

", "RegexMatchSet$Name": "

A friendly name or description of the RegexMatchSet. You can't change Name after you create a RegexMatchSet.

", "RegexMatchSetSummary$Name": "

A friendly name or description of the RegexMatchSet. You can't change Name after you create a RegexMatchSet.

", "RegexPatternSet$Name": "

A friendly name or description of the RegexPatternSet. You can't change Name after you create a RegexPatternSet.

", "RegexPatternSetSummary$Name": "

A friendly name or description of the RegexPatternSet. You can't change Name after you create a RegexPatternSet.

", "Rule$Name": "

The friendly name or description for the Rule. You can't change the name of a Rule after you create it.

", "RuleGroup$Name": "

The friendly name or description for the RuleGroup. You can't change the name of a RuleGroup after you create it.

", "RuleGroupSummary$Name": "

A friendly name or description of the RuleGroup. You can't change the name of a RuleGroup after you create it.

", "RuleSummary$Name": "

A friendly name or description of the Rule. You can't change the name of a Rule after you create it.

", "SizeConstraintSet$Name": "

The name, if any, of the SizeConstraintSet.

", "SizeConstraintSetSummary$Name": "

The name of the SizeConstraintSet, if any.

", "SqlInjectionMatchSet$Name": "

The name, if any, of the SqlInjectionMatchSet.

", "SqlInjectionMatchSetSummary$Name": "

The name of the SqlInjectionMatchSet, if any, specified by Id.

", "SubscribedRuleGroupSummary$Name": "

A friendly name or description of the RuleGroup. You can't change the name of a RuleGroup after you create it.

", "WebACL$Name": "

A friendly name or description of the WebACL. You can't change the name of a WebACL after you create it.

", "WebACLSummary$Name": "

A friendly name or description of the WebACL. You can't change the name of a WebACL after you create it.

", "XssMatchSet$Name": "

The name, if any, of the XssMatchSet.

", "XssMatchSetSummary$Name": "

The name of the XssMatchSet, if any, specified by Id.

" } }, "Rule": { "base": "

A combination of ByteMatchSet, IPSet, and/or SqlInjectionMatchSet objects that identify the web requests that you want to allow, block, or count. For example, you might create a Rule that includes the following predicates:

To match the settings in this Rule, a request must originate from 192.0.2.44 AND include a User-Agent header for which the value is BadBot.

", "refs": { "CreateRuleResponse$Rule": "

The Rule returned in the CreateRule response.

", "GetRuleResponse$Rule": "

Information about the Rule that you specified in the GetRule request. For more information, see the following topics:

" } }, "RuleGroup": { "base": "

A collection of predefined rules that you can add to a web ACL.

Rule groups are subject to the following limits:

", "refs": { "CreateRuleGroupResponse$RuleGroup": "

An empty RuleGroup.

", "GetRuleGroupResponse$RuleGroup": "

Information about the RuleGroup that you specified in the GetRuleGroup request.

" } }, "RuleGroupSummaries": { "base": null, "refs": { "ListRuleGroupsResponse$RuleGroups": "

An array of RuleGroup objects.

" } }, "RuleGroupSummary": { "base": "

Contains the identifier and the friendly name or description of the RuleGroup.

", "refs": { "RuleGroupSummaries$member": null } }, "RuleGroupUpdate": { "base": "

Specifies an ActivatedRule and indicates whether you want to add it to a RuleGroup or delete it from a RuleGroup.

", "refs": { "RuleGroupUpdates$member": null } }, "RuleGroupUpdates": { "base": null, "refs": { "UpdateRuleGroupRequest$Updates": "

An array of RuleGroupUpdate objects that you want to insert into or delete from a RuleGroup.

You can only insert REGULAR rules into a rule group.

The Action data type within ActivatedRule is used only when submitting an UpdateWebACL request. ActivatedRule|Action is not applicable and therefore not available for UpdateRuleGroup.

" } }, "RulePriority": { "base": null, "refs": { "ActivatedRule$Priority": "

Specifies the order in which the Rules in a WebACL are evaluated. Rules with a lower value for Priority are evaluated before Rules with a higher value. The value must be a unique integer. If you add multiple Rules to a WebACL, the values don't need to be consecutive.

" } }, "RuleSummaries": { "base": null, "refs": { "ListRateBasedRulesResponse$Rules": "

An array of RuleSummary objects.

", "ListRulesResponse$Rules": "

An array of RuleSummary objects.

" } }, "RuleSummary": { "base": "

Contains the identifier and the friendly name or description of the Rule.

", "refs": { "RuleSummaries$member": null } }, "RuleUpdate": { "base": "

Specifies a Predicate (such as an IPSet) and indicates whether you want to add it to a Rule or delete it from a Rule.

", "refs": { "RuleUpdates$member": null } }, "RuleUpdates": { "base": null, "refs": { "UpdateRateBasedRuleRequest$Updates": "

An array of RuleUpdate objects that you want to insert into or delete from a RateBasedRule.

", "UpdateRuleRequest$Updates": "

An array of RuleUpdate objects that you want to insert into or delete from a Rule. For more information, see the applicable data types:

" } }, "SampleWeight": { "base": null, "refs": { "SampledHTTPRequest$Weight": "

A value that indicates how one result in the response relates proportionally to other results in the response. A result that has a weight of 2 represents roughly twice as many CloudFront web requests as a result that has a weight of 1.

" } }, "SampledHTTPRequest": { "base": "

The response from a GetSampledRequests request includes a SampledHTTPRequests complex type that appears as SampledRequests in the response syntax. SampledHTTPRequests contains one SampledHTTPRequest object for each web request that is returned by GetSampledRequests.

", "refs": { "SampledHTTPRequests$member": null } }, "SampledHTTPRequests": { "base": null, "refs": { "GetSampledRequestsResponse$SampledRequests": "

A complex type that contains detailed information about each of the requests in the sample.

" } }, "Size": { "base": null, "refs": { "SizeConstraint$Size": "

The size in bytes that you want AWS WAF to compare against the size of the specified FieldToMatch. AWS WAF uses this in combination with ComparisonOperator and FieldToMatch to build an expression in the form of \"Size ComparisonOperator size in bytes of FieldToMatch\". If that expression is true, the SizeConstraint is considered to match.

Valid values for size are 0 - 21474836480 bytes (0 - 20 GB).

If you specify URI for the value of Type, the / in the URI counts as one character. For example, the URI /logo.jpg is nine characters long.

" } }, "SizeConstraint": { "base": "

Specifies a constraint on the size of a part of the web request. AWS WAF uses the Size, ComparisonOperator, and FieldToMatch to build an expression in the form of \"Size ComparisonOperator size in bytes of FieldToMatch\". If that expression is true, the SizeConstraint is considered to match.

", "refs": { "SizeConstraintSetUpdate$SizeConstraint": "

Specifies a constraint on the size of a part of the web request. AWS WAF uses the Size, ComparisonOperator, and FieldToMatch to build an expression in the form of \"Size ComparisonOperator size in bytes of FieldToMatch\". If that expression is true, the SizeConstraint is considered to match.

", "SizeConstraints$member": null } }, "SizeConstraintSet": { "base": "

A complex type that contains SizeConstraint objects, which specify the parts of web requests that you want AWS WAF to inspect the size of. If a SizeConstraintSet contains more than one SizeConstraint object, a request only needs to match one constraint to be considered a match.

", "refs": { "CreateSizeConstraintSetResponse$SizeConstraintSet": "

A SizeConstraintSet that contains no SizeConstraint objects.

", "GetSizeConstraintSetResponse$SizeConstraintSet": "

Information about the SizeConstraintSet that you specified in the GetSizeConstraintSet request. For more information, see the following topics:

" } }, "SizeConstraintSetSummaries": { "base": null, "refs": { "ListSizeConstraintSetsResponse$SizeConstraintSets": "

An array of SizeConstraintSetSummary objects.

" } }, "SizeConstraintSetSummary": { "base": "

The Id and Name of a SizeConstraintSet.

", "refs": { "SizeConstraintSetSummaries$member": null } }, "SizeConstraintSetUpdate": { "base": "

Specifies the part of a web request that you want to inspect the size of and indicates whether you want to add the specification to a SizeConstraintSet or delete it from a SizeConstraintSet.

", "refs": { "SizeConstraintSetUpdates$member": null } }, "SizeConstraintSetUpdates": { "base": null, "refs": { "UpdateSizeConstraintSetRequest$Updates": "

An array of SizeConstraintSetUpdate objects that you want to insert into or delete from a SizeConstraintSet. For more information, see the applicable data types:

" } }, "SizeConstraints": { "base": null, "refs": { "SizeConstraintSet$SizeConstraints": "

Specifies the parts of web requests that you want to inspect the size of.

" } }, "SqlInjectionMatchSet": { "base": "

A complex type that contains SqlInjectionMatchTuple objects, which specify the parts of web requests that you want AWS WAF to inspect for snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the name of the header. If a SqlInjectionMatchSet contains more than one SqlInjectionMatchTuple object, a request needs to include snippets of SQL code in only one of the specified parts of the request to be considered a match.

", "refs": { "CreateSqlInjectionMatchSetResponse$SqlInjectionMatchSet": "

A SqlInjectionMatchSet.

", "GetSqlInjectionMatchSetResponse$SqlInjectionMatchSet": "

Information about the SqlInjectionMatchSet that you specified in the GetSqlInjectionMatchSet request. For more information, see the following topics:

" } }, "SqlInjectionMatchSetSummaries": { "base": null, "refs": { "ListSqlInjectionMatchSetsResponse$SqlInjectionMatchSets": "

An array of SqlInjectionMatchSetSummary objects.

" } }, "SqlInjectionMatchSetSummary": { "base": "

The Id and Name of a SqlInjectionMatchSet.

", "refs": { "SqlInjectionMatchSetSummaries$member": null } }, "SqlInjectionMatchSetUpdate": { "base": "

Specifies the part of a web request that you want to inspect for snippets of malicious SQL code and indicates whether you want to add the specification to a SqlInjectionMatchSet or delete it from a SqlInjectionMatchSet.

", "refs": { "SqlInjectionMatchSetUpdates$member": null } }, "SqlInjectionMatchSetUpdates": { "base": null, "refs": { "UpdateSqlInjectionMatchSetRequest$Updates": "

An array of SqlInjectionMatchSetUpdate objects that you want to insert into or delete from a SqlInjectionMatchSet. For more information, see the applicable data types:

" } }, "SqlInjectionMatchTuple": { "base": "

Specifies the part of a web request that you want AWS WAF to inspect for snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the name of the header.

", "refs": { "SqlInjectionMatchSetUpdate$SqlInjectionMatchTuple": "

Specifies the part of a web request that you want AWS WAF to inspect for snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the name of the header.

", "SqlInjectionMatchTuples$member": null } }, "SqlInjectionMatchTuples": { "base": null, "refs": { "SqlInjectionMatchSet$SqlInjectionMatchTuples": "

Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.

" } }, "SubscribedRuleGroupSummaries": { "base": null, "refs": { "ListSubscribedRuleGroupsResponse$RuleGroups": "

An array of RuleGroup objects.

" } }, "SubscribedRuleGroupSummary": { "base": "

A summary of the rule groups you are subscribed to.

", "refs": { "SubscribedRuleGroupSummaries$member": null } }, "TextTransformation": { "base": null, "refs": { "ByteMatchTuple$TextTransformation": "

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass AWS WAF. If you specify a transformation, AWS WAF performs the transformation on TargetString before inspecting a request for a match.

CMD_LINE

When you're concerned that attackers are injecting an operating system commandline command and using unusual formatting to disguise some or all of the command, use this option to perform the following transformations:

COMPRESS_WHITE_SPACE

Use this option to replace the following characters with a space character (decimal 32):

COMPRESS_WHITE_SPACE also replaces multiple spaces with one space.

HTML_ENTITY_DECODE

Use this option to replace HTML-encoded characters with unencoded characters. HTML_ENTITY_DECODE performs the following operations:

LOWERCASE

Use this option to convert uppercase letters (A-Z) to lowercase (a-z).

URL_DECODE

Use this option to decode a URL-encoded value.

NONE

Specify NONE if you don't want to perform any text transformations.

", "RegexMatchTuple$TextTransformation": "

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass AWS WAF. If you specify a transformation, AWS WAF performs the transformation on RegexPatternSet before inspecting a request for a match.

CMD_LINE

When you're concerned that attackers are injecting an operating system commandline command and using unusual formatting to disguise some or all of the command, use this option to perform the following transformations:

COMPRESS_WHITE_SPACE

Use this option to replace the following characters with a space character (decimal 32):

COMPRESS_WHITE_SPACE also replaces multiple spaces with one space.

HTML_ENTITY_DECODE

Use this option to replace HTML-encoded characters with unencoded characters. HTML_ENTITY_DECODE performs the following operations:

LOWERCASE

Use this option to convert uppercase letters (A-Z) to lowercase (a-z).

URL_DECODE

Use this option to decode a URL-encoded value.

NONE

Specify NONE if you don't want to perform any text transformations.

", "SizeConstraint$TextTransformation": "

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass AWS WAF. If you specify a transformation, AWS WAF performs the transformation on FieldToMatch before inspecting a request for a match.

Note that if you choose BODY for the value of Type, you must choose NONE for TextTransformation because CloudFront forwards only the first 8192 bytes for inspection.

NONE

Specify NONE if you don't want to perform any text transformations.

CMD_LINE

When you're concerned that attackers are injecting an operating system command line command and using unusual formatting to disguise some or all of the command, use this option to perform the following transformations:

COMPRESS_WHITE_SPACE

Use this option to replace the following characters with a space character (decimal 32):

COMPRESS_WHITE_SPACE also replaces multiple spaces with one space.

HTML_ENTITY_DECODE

Use this option to replace HTML-encoded characters with unencoded characters. HTML_ENTITY_DECODE performs the following operations:

LOWERCASE

Use this option to convert uppercase letters (A-Z) to lowercase (a-z).

URL_DECODE

Use this option to decode a URL-encoded value.

", "SqlInjectionMatchTuple$TextTransformation": "

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass AWS WAF. If you specify a transformation, AWS WAF performs the transformation on FieldToMatch before inspecting a request for a match.

CMD_LINE

When you're concerned that attackers are injecting an operating system commandline command and using unusual formatting to disguise some or all of the command, use this option to perform the following transformations:

COMPRESS_WHITE_SPACE

Use this option to replace the following characters with a space character (decimal 32):

COMPRESS_WHITE_SPACE also replaces multiple spaces with one space.

HTML_ENTITY_DECODE

Use this option to replace HTML-encoded characters with unencoded characters. HTML_ENTITY_DECODE performs the following operations:

LOWERCASE

Use this option to convert uppercase letters (A-Z) to lowercase (a-z).

URL_DECODE

Use this option to decode a URL-encoded value.

NONE

Specify NONE if you don't want to perform any text transformations.

", "XssMatchTuple$TextTransformation": "

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass AWS WAF. If you specify a transformation, AWS WAF performs the transformation on FieldToMatch before inspecting a request for a match.

CMD_LINE

When you're concerned that attackers are injecting an operating system commandline command and using unusual formatting to disguise some or all of the command, use this option to perform the following transformations:

COMPRESS_WHITE_SPACE

Use this option to replace the following characters with a space character (decimal 32):

COMPRESS_WHITE_SPACE also replaces multiple spaces with one space.

HTML_ENTITY_DECODE

Use this option to replace HTML-encoded characters with unencoded characters. HTML_ENTITY_DECODE performs the following operations:

LOWERCASE

Use this option to convert uppercase letters (A-Z) to lowercase (a-z).

URL_DECODE

Use this option to decode a URL-encoded value.

NONE

Specify NONE if you don't want to perform any text transformations.

" } }, "TimeWindow": { "base": "

In a GetSampledRequests request, the StartTime and EndTime objects specify the time range for which you want AWS WAF to return a sample of web requests.

In a GetSampledRequests response, the StartTime and EndTime objects specify the time range for which AWS WAF actually returned a sample of web requests. AWS WAF gets the specified number of requests from among the first 5,000 requests that your AWS resource receives during the specified time period. If your resource receives more than 5,000 requests during that period, AWS WAF stops sampling after the 5,000th request. In that case, EndTime is the time that AWS WAF received the 5,000th request.

", "refs": { "GetSampledRequestsRequest$TimeWindow": "

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. Specify the date and time in the following format: \"2016-09-27T14:50Z\". You can specify any time range in the previous three hours.

", "GetSampledRequestsResponse$TimeWindow": "

Usually, TimeWindow is the time range that you specified in the GetSampledRequests request. However, if your AWS 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.

" } }, "Timestamp": { "base": null, "refs": { "SampledHTTPRequest$Timestamp": "

The time at which AWS WAF received the request from your AWS resource, in Unix time format (in seconds).

", "TimeWindow$StartTime": "

The beginning of the time range from which you want GetSampledRequests to return a sample of the requests that your AWS resource received. Specify the date and time in the following format: \"2016-09-27T14:50Z\". You can specify any time range in the previous three hours.

", "TimeWindow$EndTime": "

The end of the time range from which you want GetSampledRequests to return a sample of the requests that your AWS resource received. Specify the date and time in the following format: \"2016-09-27T14:50Z\". You can specify any time range in the previous three hours.

" } }, "URIString": { "base": null, "refs": { "HTTPRequest$URI": "

The part of a web request that identifies the resource, for example, /images/daily-ad.jpg.

" } }, "UpdateByteMatchSetRequest": { "base": null, "refs": { } }, "UpdateByteMatchSetResponse": { "base": null, "refs": { } }, "UpdateGeoMatchSetRequest": { "base": null, "refs": { } }, "UpdateGeoMatchSetResponse": { "base": null, "refs": { } }, "UpdateIPSetRequest": { "base": null, "refs": { } }, "UpdateIPSetResponse": { "base": null, "refs": { } }, "UpdateRateBasedRuleRequest": { "base": null, "refs": { } }, "UpdateRateBasedRuleResponse": { "base": null, "refs": { } }, "UpdateRegexMatchSetRequest": { "base": null, "refs": { } }, "UpdateRegexMatchSetResponse": { "base": null, "refs": { } }, "UpdateRegexPatternSetRequest": { "base": null, "refs": { } }, "UpdateRegexPatternSetResponse": { "base": null, "refs": { } }, "UpdateRuleGroupRequest": { "base": null, "refs": { } }, "UpdateRuleGroupResponse": { "base": null, "refs": { } }, "UpdateRuleRequest": { "base": null, "refs": { } }, "UpdateRuleResponse": { "base": null, "refs": { } }, "UpdateSizeConstraintSetRequest": { "base": null, "refs": { } }, "UpdateSizeConstraintSetResponse": { "base": null, "refs": { } }, "UpdateSqlInjectionMatchSetRequest": { "base": "

A request to update a SqlInjectionMatchSet.

", "refs": { } }, "UpdateSqlInjectionMatchSetResponse": { "base": "

The response to an UpdateSqlInjectionMatchSets request.

", "refs": { } }, "UpdateWebACLRequest": { "base": null, "refs": { } }, "UpdateWebACLResponse": { "base": null, "refs": { } }, "UpdateXssMatchSetRequest": { "base": "

A request to update an XssMatchSet.

", "refs": { } }, "UpdateXssMatchSetResponse": { "base": "

The response to an UpdateXssMatchSets request.

", "refs": { } }, "WAFDisallowedNameException": { "base": "

The name specified is invalid.

", "refs": { } }, "WAFInternalErrorException": { "base": "

The operation failed because of a system problem, even though the request was valid. Retry your request.

", "refs": { } }, "WAFInvalidAccountException": { "base": "

The operation failed because you tried to create, update, or delete an object by using an invalid account identifier.

", "refs": { } }, "WAFInvalidOperationException": { "base": "

The operation failed because there was nothing to do. For example:

", "refs": { } }, "WAFInvalidParameterException": { "base": "

The operation failed because AWS WAF didn't recognize a parameter in the request. For example:

", "refs": { } }, "WAFInvalidRegexPatternException": { "base": "

The regular expression (regex) you specified in RegexPatternString is invalid.

", "refs": { } }, "WAFLimitsExceededException": { "base": "

The operation exceeds a resource limit, for example, the maximum number of WebACL objects that you can create for an AWS account. For more information, see Limits in the AWS WAF Developer Guide.

", "refs": { } }, "WAFNonEmptyEntityException": { "base": "

The operation failed because you tried to delete an object that isn't empty. For example:

", "refs": { } }, "WAFNonexistentContainerException": { "base": "

The operation failed because you tried to add an object to or delete an object from another object that doesn't exist. For example:

", "refs": { } }, "WAFNonexistentItemException": { "base": "

The operation failed because the referenced object doesn't exist.

", "refs": { } }, "WAFReferencedItemException": { "base": "

The operation failed because you tried to delete an object that is still in use. For example:

", "refs": { } }, "WAFStaleDataException": { "base": "

The operation failed because you tried to create, update, or delete an object by using a change token that has already been used.

", "refs": { } }, "WAFSubscriptionNotFoundException": { "base": "

The specified subscription does not exist.

", "refs": { } }, "WafAction": { "base": "

For the action that is associated with a rule in a WebACL, specifies the action that you want AWS WAF to perform when a web request matches all of the conditions in a rule. For the default action in a WebACL, specifies the action that you want AWS WAF to take when a web request doesn't match all of the conditions in any of the rules in a WebACL.

", "refs": { "ActivatedRule$Action": "

Specifies the action that CloudFront or AWS WAF takes when a web request matches the conditions in the Rule. Valid values for Action include the following:

The Action data type within ActivatedRule is used only when submitting an UpdateWebACL request. ActivatedRule|Action is not applicable and therefore not available for UpdateRuleGroup.

", "CreateWebACLRequest$DefaultAction": "

The action that you want AWS WAF to take when a request doesn't match the criteria specified in any of the Rule objects that are associated with the WebACL.

", "UpdateWebACLRequest$DefaultAction": "

A default action for the web ACL, either ALLOW or BLOCK. AWS WAF performs the default action if a request doesn't match the criteria in any of the rules in a web ACL.

", "WebACL$DefaultAction": "

The action to perform if none of the Rules contained in the WebACL match. The action is specified by the WafAction object.

" } }, "WafActionType": { "base": null, "refs": { "WafAction$Type": "

Specifies how you want AWS WAF to respond to requests that match the settings in a Rule. Valid settings include the following:

" } }, "WafOverrideAction": { "base": "

The action to take if any rule within the RuleGroup matches a request.

", "refs": { "ActivatedRule$OverrideAction": "

Use the OverrideAction to test your RuleGroup.

Any rule in a RuleGroup can potentially block a request. If you set the OverrideAction to None, the RuleGroup will block a request if any individual rule in the RuleGroup matches the request and is configured to block that request. However if you first want to test the RuleGroup, set the OverrideAction to Count. The RuleGroup will then override any block action specified by individual rules contained within the group. Instead of blocking matching requests, those requests will be counted. You can view a record of counted requests using GetSampledRequests.

The OverrideAction data type within ActivatedRule is used only when submitting an UpdateRuleGroup request. ActivatedRule|OverrideAction is not applicable and therefore not available for UpdateWebACL.

" } }, "WafOverrideActionType": { "base": null, "refs": { "WafOverrideAction$Type": "

COUNT overrides the action specified by the individual rule within a RuleGroup . If set to NONE, the rule's action will take place.

" } }, "WafRuleType": { "base": null, "refs": { "ActivatedRule$Type": "

The rule type, either REGULAR, as defined by Rule, RATE_BASED, as defined by RateBasedRule, or GROUP, as defined by RuleGroup. The default is REGULAR. Although this field is optional, be aware that if you try to add a RATE_BASED rule to a web ACL without setting the type, the UpdateWebACL request will fail because the request tries to add a REGULAR rule with the specified ID, which does not exist.

" } }, "WebACL": { "base": "

Contains the Rules that identify the requests that you want to allow, block, or count. In a WebACL, you also specify a default action (ALLOW or BLOCK), and the action for each Rule that you add to a WebACL, for example, block requests from specified IP addresses or block requests from specified referrers. You also associate the WebACL with a CloudFront distribution to identify the requests that you want AWS WAF to filter. If you add more than one Rule to a WebACL, a request needs to match only one of the specifications to be allowed, blocked, or counted. For more information, see UpdateWebACL.

", "refs": { "CreateWebACLResponse$WebACL": "

The WebACL returned in the CreateWebACL response.

", "GetWebACLResponse$WebACL": "

Information about the WebACL that you specified in the GetWebACL request. For more information, see the following topics:

" } }, "WebACLSummaries": { "base": null, "refs": { "ListWebACLsResponse$WebACLs": "

An array of WebACLSummary objects.

" } }, "WebACLSummary": { "base": "

Contains the identifier and the name or description of the WebACL.

", "refs": { "WebACLSummaries$member": null } }, "WebACLUpdate": { "base": "

Specifies whether to insert a Rule into or delete a Rule from a WebACL.

", "refs": { "WebACLUpdates$member": null } }, "WebACLUpdates": { "base": null, "refs": { "UpdateWebACLRequest$Updates": "

An array of updates to make to the WebACL.

An array of WebACLUpdate objects that you want to insert into or delete from a WebACL. For more information, see the applicable data types:

" } }, "XssMatchSet": { "base": "

A complex type that contains XssMatchTuple objects, which specify the parts of web requests that you want AWS WAF to inspect for cross-site scripting attacks and, if you want AWS WAF to inspect a header, the name of the header. If a XssMatchSet contains more than one XssMatchTuple object, a request needs to include cross-site scripting attacks in only one of the specified parts of the request to be considered a match.

", "refs": { "CreateXssMatchSetResponse$XssMatchSet": "

An XssMatchSet.

", "GetXssMatchSetResponse$XssMatchSet": "

Information about the XssMatchSet that you specified in the GetXssMatchSet request. For more information, see the following topics:

" } }, "XssMatchSetSummaries": { "base": null, "refs": { "ListXssMatchSetsResponse$XssMatchSets": "

An array of XssMatchSetSummary objects.

" } }, "XssMatchSetSummary": { "base": "

The Id and Name of an XssMatchSet.

", "refs": { "XssMatchSetSummaries$member": null } }, "XssMatchSetUpdate": { "base": "

Specifies the part of a web request that you want to inspect for cross-site scripting attacks and indicates whether you want to add the specification to an XssMatchSet or delete it from an XssMatchSet.

", "refs": { "XssMatchSetUpdates$member": null } }, "XssMatchSetUpdates": { "base": null, "refs": { "UpdateXssMatchSetRequest$Updates": "

An array of XssMatchSetUpdate objects that you want to insert into or delete from a XssMatchSet. For more information, see the applicable data types:

" } }, "XssMatchTuple": { "base": "

Specifies the part of a web request that you want AWS WAF to inspect for cross-site scripting attacks and, if you want AWS WAF to inspect a header, the name of the header.

", "refs": { "XssMatchSetUpdate$XssMatchTuple": "

Specifies the part of a web request that you want AWS WAF to inspect for cross-site scripting attacks and, if you want AWS WAF to inspect a header, the name of the header.

", "XssMatchTuples$member": null } }, "XssMatchTuples": { "base": null, "refs": { "XssMatchSet$XssMatchTuples": "

Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.

" } }, "errorMessage": { "base": null, "refs": { "WAFDisallowedNameException$message": null, "WAFInternalErrorException$message": null, "WAFInvalidOperationException$message": null, "WAFInvalidRegexPatternException$message": null, "WAFLimitsExceededException$message": null, "WAFNonEmptyEntityException$message": null, "WAFNonexistentContainerException$message": null, "WAFNonexistentItemException$message": null, "WAFReferencedItemException$message": null, "WAFStaleDataException$message": null, "WAFSubscriptionNotFoundException$message": null } } } }