Class DomainNameAttributes
- Namespace
- Amazon.CDK.AWS.APIGateway
- Assembly
- Amazon.CDK.AWS.APIGateway.dll
public class DomainNameAttributes : IDomainNameAttributes
- Inheritance
-
DomainNameAttributes
- Implements
- Inherited Members
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
Constructors
DomainNameAttributes()
public DomainNameAttributes()
Properties
DomainName
The domain name (e.g. example.com
).
public string DomainName { get; set; }
Property Value
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
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; }