Show / Hide Table of Contents

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-tenantconfig.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-tenantconfig.html#cfn-cloudfront-distribution-tenantconfig-parameterdefinitions

Type union: either IResolvable or (either IResolvable or CfnDistribution.IParameterDefinitionProperty)[]

Back to top Generated by DocFX