Show / Hide Table of Contents

Class DomainNameAttributes

Inheritance
System.Object
DomainNameAttributes
Implements
IDomainNameAttributes
Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.AWS.APIGateway.dll
Syntax (csharp)
public class DomainNameAttributes : Object, IDomainNameAttributes
Syntax (vb)
Public Class DomainNameAttributes
    Inherits Object
    Implements IDomainNameAttributes
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.APIGateway;

var domainNameAttributes = new DomainNameAttributes {
    DomainName = "domainName",
    DomainNameAliasHostedZoneId = "domainNameAliasHostedZoneId",
    DomainNameAliasTarget = "domainNameAliasTarget"
};

Synopsis

Constructors

DomainNameAttributes()

Properties

DomainName

The domain name (e.g. example.com).

DomainNameAliasHostedZoneId

The Route53 hosted zone ID to use in order to connect a record set to this domain through an alias.

DomainNameAliasTarget

The Route53 alias target to use in order to connect a record set to this domain through an alias.

Constructors

DomainNameAttributes()

public DomainNameAttributes()

Properties

DomainName

The domain name (e.g. example.com).

public string DomainName { get; set; }
Property Value

System.String

DomainNameAliasHostedZoneId

The Route53 hosted zone ID to use in order to connect a record set to this domain through an alias.

public string DomainNameAliasHostedZoneId { get; set; }
Property Value

System.String

DomainNameAliasTarget

The Route53 alias target to use in order to connect a record set to this domain through an alias.

public string DomainNameAliasTarget { get; set; }
Property Value

System.String

Implements

IDomainNameAttributes
Back to top Generated by DocFX