WAF / Client / create_rule_group
create_rule_group#
- WAF.Client.create_rule_group(**kwargs)#
Note
This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide.
For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Developer Guide. With the latest version, AWS WAF has a single set of endpoints for regional and global use.
Creates a
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:
Three rule groups per account. You can request an increase to this limit by contacting customer support.
One rule group per web ACL.
Ten rules per rule group.
For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.
See also: AWS API Documentation
Request Syntax
response = client.create_rule_group( Name='string', MetricName='string', ChangeToken='string', Tags=[ { 'Key': 'string', 'Value': 'string' }, ] )
- Parameters:
Name (string) –
[REQUIRED]
A friendly name or description of the RuleGroup. You can’t change
Name
after you create aRuleGroup
.MetricName (string) –
[REQUIRED]
A friendly name or description for the metrics for this
RuleGroup
. The name can contain only alphanumeric characters (A-Z, a-z, 0-9), with maximum length 128 and minimum length one. It can’t contain whitespace or metric names reserved for AWS WAF, including “All” and “Default_Action.” You can’t change the name of the metric after you create theRuleGroup
.ChangeToken (string) –
[REQUIRED]
The value returned by the most recent call to GetChangeToken.
Tags (list) –
(dict) –
Note
This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide.
For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Developer Guide. With the latest version, AWS WAF has a single set of endpoints for regional and global use.
A tag associated with an AWS resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to “customer” and the value to the customer name or ID. You can specify one or more tags to add to each AWS resource, up to 50 tags for a resource.
Tagging is only available through the API, SDKs, and CLI. You can’t manage or view tags through the AWS WAF Classic console. You can tag the AWS resources that you manage through AWS WAF Classic: web ACLs, rule groups, and rules.
Key (string) – [REQUIRED]
Value (string) – [REQUIRED]
- Return type:
dict
- Returns:
Response Syntax
{ 'RuleGroup': { 'RuleGroupId': 'string', 'Name': 'string', 'MetricName': 'string' }, 'ChangeToken': 'string' }
Response Structure
(dict) –
RuleGroup (dict) –
An empty RuleGroup.
RuleGroupId (string) –
A unique identifier for a
RuleGroup
. You useRuleGroupId
to get more information about aRuleGroup
(see GetRuleGroup), update aRuleGroup
(see UpdateRuleGroup), insert aRuleGroup
into aWebACL
or delete a one from aWebACL
(see UpdateWebACL), or delete aRuleGroup
from AWS WAF (see DeleteRuleGroup).RuleGroupId
is returned by CreateRuleGroup and by ListRuleGroups.Name (string) –
The friendly name or description for the
RuleGroup
. You can’t change the name of aRuleGroup
after you create it.MetricName (string) –
A friendly name or description for the metrics for this
RuleGroup
. The name can contain only alphanumeric characters (A-Z, a-z, 0-9), with maximum length 128 and minimum length one. It can’t contain whitespace or metric names reserved for AWS WAF, including “All” and “Default_Action.” You can’t change the name of the metric after you create theRuleGroup
.
ChangeToken (string) –
The
ChangeToken
that you used to submit theCreateRuleGroup
request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.
Exceptions
WAF.Client.exceptions.WAFStaleDataException
WAF.Client.exceptions.WAFInternalErrorException
WAF.Client.exceptions.WAFDisallowedNameException
WAF.Client.exceptions.WAFLimitsExceededException
WAF.Client.exceptions.WAFTagOperationException
WAF.Client.exceptions.WAFTagOperationInternalErrorException
WAF.Client.exceptions.WAFBadRequestException