activated_rules_in_rule_groups
Creates, updates, deletes, gets or lists an activated_rules_in_rule_groups resource.
Overview
| Name | activated_rules_in_rule_groups |
| Type | Resource |
| Id | aws.waf_regional.activated_rules_in_rule_groups |
Fields
The following fields are returned by SELECT queries:
- list_activated_rules_in_rule_group
| Name | Datatype | Description |
|---|---|---|
activated_rules | array | An array of ActivatedRules objects. |
next_marker | string | 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. (pattern: <code>.\S.</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_activated_rules_in_rule_group | select | region | 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. Returns an array of ActivatedRule objects. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_activated_rules_in_rule_group
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. Returns an array of ActivatedRule objects.
SELECT
activated_rules,
next_marker
FROM aws.waf_regional.activated_rules_in_rule_groups
WHERE region = '{{ region }}' -- required
;