interface CfnWebACLAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFRegional.Mixins.CfnWebACLAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafregional/mixins#CfnWebACLAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.wafregional.mixins.CfnWebACLAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_wafregional.mixins.CfnWebACLAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_wafregional » mixins » 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 { mixins as wafregional_mixins } from '@aws-cdk/mixins-preview/aws-wafregional';
const cfnWebACLAssociationMixinProps: wafregional_mixins.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