Show / Hide Table of Contents

Class DistributionReference

A reference to a Distribution resource.

Inheritance
object
DistributionReference
Implements
IDistributionReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

DistributionName

The DistributionName of the Distribution resource.

public string DistributionName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IDistributionReference
Back to top Generated by DocFX