interface CfnWebACLAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFRegional.CfnWebACLAssociationProps |
Java | software.amazon.awscdk.services.waf.regional.CfnWebACLAssociationProps |
Python | aws_cdk.aws_wafregional.CfnWebACLAssociationProps |
TypeScript | @aws-cdk/aws-wafregional » CfnWebACLAssociationProps |
Properties for defining a CfnWebACLAssociation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as wafregional from '@aws-cdk/aws-wafregional';
const cfnWebACLAssociationProps: wafregional.CfnWebACLAssociationProps = {
resourceArn: 'resourceArn',
webAclId: 'webAclId',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The Amazon Resource Name (ARN) of the resource to protect with the web ACL. |
| web | string | A unique identifier (ID) for the web ACL. |
resourceArn
Type:
string
The Amazon Resource Name (ARN) of the resource to protect with the web ACL.
webAclId
Type:
string
A unique identifier (ID) for the web ACL.

.NET
Java
Python
TypeScript