interface WebACLReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.WAFv2.WebACLReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awswafv2#WebACLReference |
Java | software.amazon.awscdk.interfaces.wafv2.WebACLReference |
Python | aws_cdk.interfaces.aws_wafv2.WebACLReference |
TypeScript | aws-cdk-lib » interfaces » aws_wafv2 » WebACLReference |
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 { aws_wafv2 as interfaces_aws_wafv2 } from 'aws-cdk-lib/interfaces';
const webACLReference: interfaces_aws_wafv2.WebACLReference = {
scope: 'scope',
webAclArn: 'webAclArn',
webAclId: 'webAclId',
webAclName: 'webAclName',
};
Properties
| Name | Type | Description |
|---|---|---|
| scope | string | The Scope of the WebACL resource. |
| web | string | The ARN of the WebACL resource. |
| web | string | The Id of the WebACL resource. |
| web | string | The Name of the WebACL resource. |
scope
Type:
string
The Scope of the WebACL resource.
webAclArn
Type:
string
The ARN of the WebACL resource.
webAclId
Type:
string
The Id of the WebACL resource.
webAclName
Type:
string
The Name of the WebACL resource.

.NET
Go
Java
Python
TypeScript