RegexPatternSetReference

class aws_cdk.aws_wafv2.RegexPatternSetReference(*, regex_pattern_set_arn, regex_pattern_set_id, regex_pattern_set_name, scope)

Bases: object

A reference to a RegexPatternSet resource.

Parameters:
  • regex_pattern_set_arn (str) – The ARN of the RegexPatternSet resource.

  • regex_pattern_set_id (str) – The Id of the RegexPatternSet resource.

  • regex_pattern_set_name (str) – The Name of the RegexPatternSet resource.

  • scope (str) – The Scope of the RegexPatternSet 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

regex_pattern_set_reference = wafv2.RegexPatternSetReference(
    regex_pattern_set_arn="regexPatternSetArn",
    regex_pattern_set_id="regexPatternSetId",
    regex_pattern_set_name="regexPatternSetName",
    scope="scope"
)

Attributes

regex_pattern_set_arn

The ARN of the RegexPatternSet resource.

regex_pattern_set_id

The Id of the RegexPatternSet resource.

regex_pattern_set_name

The Name of the RegexPatternSet resource.

scope

The Scope of the RegexPatternSet resource.