interface WebAclCustomizationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnDistributionTenantPropsMixin.WebAclCustomizationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnDistributionTenantPropsMixin_WebAclCustomizationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnDistributionTenantPropsMixin.WebAclCustomizationProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnDistributionTenantPropsMixin.WebAclCustomizationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » CfnDistributionTenantPropsMixin » 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/cfn-property-mixins';
const webAclCustomizationProperty: cloudfront.CfnDistributionTenantPropsMixin.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