interface WebAclCustomizationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnDistributionTenant.WebAclCustomizationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnDistributionTenant_WebAclCustomizationProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnDistributionTenant.WebAclCustomizationProperty |
Python | aws_cdk.aws_cloudfront.CfnDistributionTenant.WebAclCustomizationProperty |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnDistributionTenant » WebAclCustomizationProperty |
The AWS WAF web ACL customization specified for the distribution tenant.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudfront as cloudfront } from 'aws-cdk-lib';
const webAclCustomizationProperty: cloudfront.CfnDistributionTenant.WebAclCustomizationProperty = {
action: 'action',
arn: 'arn',
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string | The action for the AWS WAF web ACL customization. |
| arn? | string | The Amazon Resource Name (ARN) of the AWS WAF web ACL. |
action?
Type:
string
(optional)
The action for the AWS WAF web ACL customization.
You can specify override to specify a separate AWS WAF web ACL for the distribution tenant. If you specify disable , the distribution tenant won't have AWS WAF web ACL protections and won't inherit from the multi-tenant distribution.
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the AWS WAF web ACL.

.NET
Go
Java
Python
TypeScript