Class DistributionReference
A reference to a Distribution resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Lightsail
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DistributionReference : IDistributionReference
Syntax (vb)
Public Class DistributionReference Implements IDistributionReference
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.Lightsail;
var distributionReference = new DistributionReference {
DistributionArn = "distributionArn",
DistributionName = "distributionName"
};
Synopsis
Constructors
DistributionReference() | A reference to a Distribution resource. |
Properties
DistributionArn | The ARN of the Distribution resource. |
DistributionName | The DistributionName of the Distribution resource. |
Constructors
DistributionReference()
A reference to a Distribution resource.
public DistributionReference()
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.Lightsail;
var distributionReference = new DistributionReference {
DistributionArn = "distributionArn",
DistributionName = "distributionName"
};
Properties
DistributionArn
The ARN of the Distribution resource.
public string DistributionArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DistributionName
The DistributionName of the Distribution resource.
public string DistributionName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated