Show / Hide Table of Contents

Class DomainNameReference

A reference to a DomainName resource.

Inheritance
object
DomainNameReference
Implements
IDomainNameReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.Apigatewayv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DomainNameReference : IDomainNameReference
Syntax (vb)
Public Class DomainNameReference Implements IDomainNameReference
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.Interfaces.Apigatewayv2;

            var domainNameReference = new DomainNameReference {
                DomainName = "domainName",
                DomainNameArn = "domainNameArn"
            };

Synopsis

Constructors

DomainNameReference()

A reference to a DomainName resource.

Properties

DomainName

The DomainName of the DomainName resource.

DomainNameArn

The ARN of the DomainName resource.

Constructors

DomainNameReference()

A reference to a DomainName resource.

public DomainNameReference()
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.Interfaces.Apigatewayv2;

            var domainNameReference = new DomainNameReference {
                DomainName = "domainName",
                DomainNameArn = "domainNameArn"
            };

Properties

DomainName

The DomainName of the DomainName resource.

public string DomainName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

DomainNameArn

The ARN of the DomainName resource.

public string DomainNameArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IDomainNameReference
Back to top Generated by DocFX