Table of Contents

Interface IDomainNameAttributes

Namespace
Amazon.CDK.AWS.APIGateway
Assembly
Amazon.CDK.AWS.APIGateway.dll
public interface IDomainNameAttributes

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"
            };

Remarks

ExampleMetadata: fixture=_generated

Properties

DomainName

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

string DomainName { get; }

Property Value

string

DomainNameAliasHostedZoneId

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

string DomainNameAliasHostedZoneId { get; }

Property Value

string

DomainNameAliasTarget

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

string DomainNameAliasTarget { get; }

Property Value

string