interface TenantConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnDistribution.TenantConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnDistribution_TenantConfigProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnDistribution.TenantConfigProperty |
Python | aws_cdk.aws_cloudfront.CfnDistribution.TenantConfigProperty |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnDistribution » TenantConfigProperty |
This field only supports multi-tenant distributions.
You can't specify this field for standard distributions. For more information, see Unsupported features for SaaS Manager for Amazon CloudFront in the Amazon CloudFront Developer Guide .
The configuration for a 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 tenantConfigProperty: cloudfront.CfnDistribution.TenantConfigProperty = {
parameterDefinitions: [{
definition: {
stringSchema: {
required: false,
// the properties below are optional
comment: 'comment',
defaultValue: 'defaultValue',
},
},
name: 'name',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | IResolvable | (IResolvable | Parameter)[] | The parameters that you specify for a distribution tenant. |
parameterDefinitions?
Type:
IResolvable | (IResolvable | Parameter)[]
(optional)
The parameters that you specify for a distribution tenant.

.NET
Go
Java
Python
TypeScript