Interface WebACLReference
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 WebACLReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
           date="2025-11-04T09:27:52.258Z")
@Stability(Stable)
public interface WebACLReference
extends software.amazon.jsii.JsiiSerializable
A reference to a WebACL resource.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.wafv2.*;
 WebACLReference webACLReference = WebACLReference.builder()
         .scope("scope")
         .webAclArn("webAclArn")
         .webAclId("webAclId")
         .webAclName("webAclName")
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forWebACLReferencestatic final classAn implementation forWebACLReference - 
Method Summary
Modifier and TypeMethodDescriptionstatic WebACLReference.Builderbuilder()getScope()The Scope of the WebACL resource.The ARN of the WebACL resource.The Id of the WebACL resource.The Name of the WebACL resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getScope
The Scope of the WebACL resource. - 
getWebAclArn
The ARN of the WebACL resource. - 
getWebAclId
The Id of the WebACL resource. - 
getWebAclName
The Name of the WebACL resource. - 
builder
- Returns:
 - a 
WebACLReference.BuilderofWebACLReference 
 
 -