interface WebACLAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFv2.WebACLAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswafv2#WebACLAssociationReference |
Java | software.amazon.awscdk.services.wafv2.WebACLAssociationReference |
Python | aws_cdk.aws_wafv2.WebACLAssociationReference |
TypeScript | aws-cdk-lib » aws_wafv2 » WebACLAssociationReference |
A reference to a WebACLAssociation 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 wafv2 } from 'aws-cdk-lib';
const webACLAssociationReference: wafv2.WebACLAssociationReference = {
resourceArn: 'resourceArn',
webAclArn: 'webAclArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The ResourceArn of the WebACLAssociation resource. |
| web | string | The WebACLArn of the WebACLAssociation resource. |
resourceArn
Type:
string
The ResourceArn of the WebACLAssociation resource.
webAclArn
Type:
string
The WebACLArn of the WebACLAssociation resource.

.NET
Go
Java
Python
TypeScript