interface CfnDistributionTenantMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnDistributionTenantMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnDistributionTenantMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnDistributionTenantMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnDistributionTenantMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » CfnDistributionTenantMixinProps |
Properties for CfnDistributionTenantPropsMixin.
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 cfnDistributionTenantMixinProps: cloudfront.CfnDistributionTenantMixinProps = {
connectionGroupId: 'connectionGroupId',
customizations: {
certificate: {
arn: 'arn',
},
geoRestrictions: {
locations: ['locations'],
restrictionType: 'restrictionType',
},
webAcl: {
action: 'action',
arn: 'arn',
},
},
distributionId: 'distributionId',
domains: ['domains'],
enabled: false,
managedCertificateRequest: {
certificateTransparencyLoggingPreference: 'certificateTransparencyLoggingPreference',
primaryDomainName: 'primaryDomainName',
validationTokenHost: 'validationTokenHost',
},
name: 'name',
parameters: [{
name: 'name',
value: 'value',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The ID of the connection group for the distribution tenant. |
| customizations? | IResolvable | Customizations | Customizations for the distribution tenant. |
| distribution | string | The ID of the multi-tenant distribution. |
| domains? | string[] | The domains associated with the distribution tenant. |
| enabled? | boolean | IResolvable | Indicates whether the distribution tenant is in an enabled state. |
| managed | IResolvable | Managed | An object that represents the request for the Amazon CloudFront managed ACM certificate. |
| name? | string | The name of the distribution tenant. |
| parameters? | IResolvable | (IResolvable | Parameter)[] | A list of parameter values to add to the resource. |
| tags? | Cfn[] | A complex type that contains zero or more Tag elements. |
connectionGroupId?
Type:
string
(optional)
The ID of the connection group for the distribution tenant.
If you don't specify a connection group, CloudFront uses the default connection group.
customizations?
Type:
IResolvable | Customizations
(optional)
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.
distributionId?
Type:
string
(optional)
The ID of the multi-tenant distribution.
domains?
Type:
string[]
(optional)
The domains associated with the distribution tenant.
enabled?
Type:
boolean | IResolvable
(optional)
Indicates whether the distribution tenant is in an enabled state.
If disabled, the distribution tenant won't serve traffic.
managedCertificateRequest?
Type:
IResolvable | Managed
(optional)
An object that represents the request for the Amazon CloudFront managed ACM certificate.
name?
Type:
string
(optional)
The name of the distribution tenant.
parameters?
Type:
IResolvable | (IResolvable | Parameter)[]
(optional)
A list of parameter values to add to the resource.
A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.
tags?
Type:
Cfn[]
(optional)
A complex type that contains zero or more Tag elements.

.NET
Go
Java
Python
TypeScript