interface CustomizationsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.CloudFront.CfnDistributionTenant.CustomizationsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnDistributionTenant_CustomizationsProperty |
![]() | software.amazon.awscdk.services.cloudfront.CfnDistributionTenant.CustomizationsProperty |
![]() | aws_cdk.aws_cloudfront.CfnDistributionTenant.CustomizationsProperty |
![]() | aws-cdk-lib » aws_cloudfront » CfnDistributionTenant » CustomizationsProperty |
Customizations for the distribution tenant.
For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and AWS WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create 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 customizationsProperty: cloudfront.CfnDistributionTenant.CustomizationsProperty = {
certificate: {
arn: 'arn',
},
geoRestrictions: {
locations: ['locations'],
restrictionType: 'restrictionType',
},
webAcl: {
action: 'action',
arn: 'arn',
},
};
Properties
Name | Type | Description |
---|---|---|
certificate? | IResolvable | Certificate | The AWS Certificate Manager (ACM) certificate. |
geo | IResolvable | Geo | The geographic restrictions. |
web | IResolvable | Web | The AWS WAF web ACL. |
certificate?
Type:
IResolvable
|
Certificate
(optional)
The AWS Certificate Manager (ACM) certificate.
geoRestrictions?
Type:
IResolvable
|
Geo
(optional)
The geographic restrictions.
webAcl?
Type:
IResolvable
|
Web
(optional)
The AWS WAF web ACL.