interface WebAclCustomizationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnDistributionTenantPropsMixin.WebAclCustomizationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnDistributionTenantPropsMixin_WebAclCustomizationProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnDistributionTenantPropsMixin.WebAclCustomizationProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnDistributionTenantPropsMixin.WebAclCustomizationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » 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 { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const webAclCustomizationProperty: cloudfront_mixins.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