Interface CfnDistribution.ITenantConfigProperty
This field only supports multi-tenant distributions.
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDistribution.ITenantConfigProperty
Syntax (vb)
Public Interface CfnDistribution.ITenantConfigProperty
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CloudFront;
var tenantConfigProperty = new TenantConfigProperty {
ParameterDefinitions = new [] { new ParameterDefinitionProperty {
Definition = new DefinitionProperty {
StringSchema = new StringSchemaProperty {
Required = false,
// the properties below are optional
Comment = "comment",
DefaultValue = "defaultValue"
}
},
Name = "name"
} }
};
Synopsis
Properties
| ParameterDefinitions | The parameters that you specify for a distribution tenant. |
Properties
ParameterDefinitions
The parameters that you specify for a distribution tenant.
object? ParameterDefinitions { get; }