interface TenantConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnDistributionPropsMixin.TenantConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnDistributionPropsMixin_TenantConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnDistributionPropsMixin.TenantConfigProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnDistributionPropsMixin.TenantConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnDistributionPropsMixin » 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 { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const tenantConfigProperty: cloudfront_mixins.CfnDistributionPropsMixin.TenantConfigProperty = {
parameterDefinitions: [{
definition: {
stringSchema: {
comment: 'comment',
defaultValue: 'defaultValue',
required: false,
},
},
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