Class DomainNameReference
A reference to a DomainName resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
DomainNameArn
The ARN of the DomainName resource.
public string DomainNameArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated