interface CfnWebACLAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WAFRegional.CfnWebACLAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswafregional#CfnWebACLAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.wafregional.CfnWebACLAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_wafregional.CfnWebACLAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wafregional » CfnWebACLAssociationMixinProps |
Properties for CfnWebACLAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wafregional as wafregional } from '@aws-cdk/cfn-property-mixins';
const cfnWebACLAssociationMixinProps: wafregional.CfnWebACLAssociationMixinProps = {
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
(optional)
The Amazon Resource Name (ARN) of the resource to protect with the web ACL.
webAclId?
Type:
string
(optional)
A unique identifier (ID) for the web ACL.

.NET
Go
Java
Python
TypeScript