Interface WebACLReference
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WebACLReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-15T14:52:08.989Z")
@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 class
A builder forWebACLReference
static final class
An implementation forWebACLReference
-
Method Summary
Modifier and TypeMethodDescriptionstatic WebACLReference.Builder
builder()
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.Builder
ofWebACLReference
-