Class DistributionTenantReference
A reference to a DistributionTenant resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DistributionTenantReference : IDistributionTenantReference
Syntax (vb)
Public Class DistributionTenantReference Implements IDistributionTenantReference
Remarks
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 distributionTenantReference = new DistributionTenantReference {
DistributionTenantArn = "distributionTenantArn",
DistributionTenantId = "distributionTenantId"
};
Synopsis
Constructors
DistributionTenantReference() | A reference to a DistributionTenant resource. |
Properties
DistributionTenantArn | The ARN of the DistributionTenant resource. |
DistributionTenantId | The Id of the DistributionTenant resource. |
Constructors
DistributionTenantReference()
A reference to a DistributionTenant resource.
public DistributionTenantReference()
Remarks
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 distributionTenantReference = new DistributionTenantReference {
DistributionTenantArn = "distributionTenantArn",
DistributionTenantId = "distributionTenantId"
};
Properties
DistributionTenantArn
The ARN of the DistributionTenant resource.
public string DistributionTenantArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DistributionTenantId
The Id of the DistributionTenant resource.
public string DistributionTenantId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated