interface WebACLAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.WAFv2.WebACLAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awswafv2#WebACLAssociationReference |
Java | software.amazon.awscdk.interfaces.wafv2.WebACLAssociationReference |
Python | aws_cdk.interfaces.aws_wafv2.WebACLAssociationReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_wafv2 } from 'aws-cdk-lib/interfaces';
const webACLAssociationReference: interfaces_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