WebACLReference
- class aws_cdk.aws_wafv2.WebACLReference(*, scope, web_acl_arn, web_acl_id, web_acl_name)
Bases:
object
A reference to a WebACL resource.
- Parameters:
scope (
str
) – The Scope of the WebACL resource.web_acl_arn (
str
) – The ARN of the WebACL resource.web_acl_id (
str
) – The Id of the WebACL resource.web_acl_name (
str
) – The Name of the WebACL 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 web_aCLReference = wafv2.WebACLReference( scope="scope", web_acl_arn="webAclArn", web_acl_id="webAclId", web_acl_name="webAclName" )
Attributes
- scope
The Scope of the WebACL resource.
- web_acl_arn
The ARN of the WebACL resource.
- web_acl_id
The Id of the WebACL resource.
- web_acl_name
The Name of the WebACL resource.