Class: Aws::WAFV2::Types::RuleGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::RuleGroup
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-wafv2/types.rb
Overview
A rule group defines a collection of rules to inspect and control web requests that you can use in a WebACL. When you create a rule group, you define an immutable capacity limit. If you update a rule group, you must stay within the capacity. This allows others to reuse the rule group with confidence in its capacity requirements.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the entity.
-
#available_labels ⇒ Array<Types::LabelSummary>
The labels that one or more rules in this rule group add to matching web requests.
-
#capacity ⇒ Integer
The web ACL capacity units (WCUs) required for this rule group.
-
#consumed_labels ⇒ Array<Types::LabelSummary>
The labels that one or more rules in this rule group match against in label match statements.
-
#custom_response_bodies ⇒ Hash<String,Types::CustomResponseBody>
A map of custom response keys and content bodies.
-
#description ⇒ String
A description of the rule group that helps with identification.
-
#id ⇒ String
A unique identifier for the rule group.
-
#label_namespace ⇒ String
The label namespace prefix for this rule group.
-
#name ⇒ String
The name of the rule group.
-
#rules ⇒ Array<Types::Rule>
The Rule statements used to identify the web requests that you want to manage.
-
#visibility_config ⇒ Types::VisibilityConfig
Defines and enables Amazon CloudWatch metrics and web request sample collection.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the entity.
7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 |
# File 'lib/aws-sdk-wafv2/types.rb', line 7846 class RuleGroup < Struct.new( :name, :id, :capacity, :arn, :description, :rules, :visibility_config, :label_namespace, :custom_response_bodies, :available_labels, :consumed_labels) SENSITIVE = [] include Aws::Structure end |
#available_labels ⇒ Array<Types::LabelSummary>
The labels that one or more rules in this rule group add to matching web requests. These labels are defined in the ‘RuleLabels` for a Rule.
7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 |
# File 'lib/aws-sdk-wafv2/types.rb', line 7846 class RuleGroup < Struct.new( :name, :id, :capacity, :arn, :description, :rules, :visibility_config, :label_namespace, :custom_response_bodies, :available_labels, :consumed_labels) SENSITIVE = [] include Aws::Structure end |
#capacity ⇒ Integer
The web ACL capacity units (WCUs) required for this rule group.
When you create your own rule group, you define this, and you cannot change it after creation. When you add or modify the rules in a rule group, WAF enforces this limit. You can check the capacity for a set of rules using CheckCapacity.
WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. For more information, see [WAF web ACL capacity units (WCU)] in the *WAF Developer Guide*.
[1]: docs.aws.amazon.com/waf/latest/developerguide/aws-waf-capacity-units.html
7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 |
# File 'lib/aws-sdk-wafv2/types.rb', line 7846 class RuleGroup < Struct.new( :name, :id, :capacity, :arn, :description, :rules, :visibility_config, :label_namespace, :custom_response_bodies, :available_labels, :consumed_labels) SENSITIVE = [] include Aws::Structure end |
#consumed_labels ⇒ Array<Types::LabelSummary>
The labels that one or more rules in this rule group match against in label match statements. These labels are defined in a ‘LabelMatchStatement` specification, in the Statement definition of a rule.
7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 |
# File 'lib/aws-sdk-wafv2/types.rb', line 7846 class RuleGroup < Struct.new( :name, :id, :capacity, :arn, :description, :rules, :visibility_config, :label_namespace, :custom_response_bodies, :available_labels, :consumed_labels) SENSITIVE = [] include Aws::Structure end |
#custom_response_bodies ⇒ Hash<String,Types::CustomResponseBody>
A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the rule group, and then use them in the rules that you define in the rule group.
For information about customizing web requests and responses, see
- Customizing web requests and responses in WAF][1
-
in the *WAF
Developer Guide*.
For information about the limits on count and size for custom request and response settings, see [WAF quotas] in the *WAF Developer Guide*.
[1]: docs.aws.amazon.com/waf/latest/developerguide/waf-custom-request-response.html [2]: docs.aws.amazon.com/waf/latest/developerguide/limits.html
7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 |
# File 'lib/aws-sdk-wafv2/types.rb', line 7846 class RuleGroup < Struct.new( :name, :id, :capacity, :arn, :description, :rules, :visibility_config, :label_namespace, :custom_response_bodies, :available_labels, :consumed_labels) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the rule group that helps with identification.
7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 |
# File 'lib/aws-sdk-wafv2/types.rb', line 7846 class RuleGroup < Struct.new( :name, :id, :capacity, :arn, :description, :rules, :visibility_config, :label_namespace, :custom_response_bodies, :available_labels, :consumed_labels) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
A unique identifier for the rule group. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.
7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 |
# File 'lib/aws-sdk-wafv2/types.rb', line 7846 class RuleGroup < Struct.new( :name, :id, :capacity, :arn, :description, :rules, :visibility_config, :label_namespace, :custom_response_bodies, :available_labels, :consumed_labels) SENSITIVE = [] include Aws::Structure end |
#label_namespace ⇒ String
The label namespace prefix for this rule group. All labels added by rules in this rule group have this prefix.
-
The syntax for the label namespace prefix for your rule groups is the following:
‘awswaf:<account ID>:rulegroup:<rule group name>:`
-
When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:
‘<label namespace>:<label from rule>`
7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 |
# File 'lib/aws-sdk-wafv2/types.rb', line 7846 class RuleGroup < Struct.new( :name, :id, :capacity, :arn, :description, :rules, :visibility_config, :label_namespace, :custom_response_bodies, :available_labels, :consumed_labels) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the rule group. You cannot change the name of a rule group after you create it.
7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 |
# File 'lib/aws-sdk-wafv2/types.rb', line 7846 class RuleGroup < Struct.new( :name, :id, :capacity, :arn, :description, :rules, :visibility_config, :label_namespace, :custom_response_bodies, :available_labels, :consumed_labels) SENSITIVE = [] include Aws::Structure end |
#rules ⇒ Array<Types::Rule>
The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.
7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 |
# File 'lib/aws-sdk-wafv2/types.rb', line 7846 class RuleGroup < Struct.new( :name, :id, :capacity, :arn, :description, :rules, :visibility_config, :label_namespace, :custom_response_bodies, :available_labels, :consumed_labels) SENSITIVE = [] include Aws::Structure end |
#visibility_config ⇒ Types::VisibilityConfig
Defines and enables Amazon CloudWatch metrics and web request sample collection.
7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 |
# File 'lib/aws-sdk-wafv2/types.rb', line 7846 class RuleGroup < Struct.new( :name, :id, :capacity, :arn, :description, :rules, :visibility_config, :label_namespace, :custom_response_bodies, :available_labels, :consumed_labels) SENSITIVE = [] include Aws::Structure end |