RuleGroupReference

class aws_cdk.aws_wafv2.RuleGroupReference(*, rule_group_arn, rule_group_id, rule_group_name, scope)

Bases: object

A reference to a RuleGroup resource.

Parameters:
  • rule_group_arn (str) – The ARN of the RuleGroup resource.

  • rule_group_id (str) – The Id of the RuleGroup resource.

  • rule_group_name (str) – The Name of the RuleGroup resource.

  • scope (str) – The Scope of the RuleGroup resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_wafv2 as wafv2

rule_group_reference = wafv2.RuleGroupReference(
    rule_group_arn="ruleGroupArn",
    rule_group_id="ruleGroupId",
    rule_group_name="ruleGroupName",
    scope="scope"
)

Attributes

rule_group_arn

The ARN of the RuleGroup resource.

rule_group_id

The Id of the RuleGroup resource.

rule_group_name

The Name of the RuleGroup resource.

scope

The Scope of the RuleGroup resource.