Interface DomainNameAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DomainNameAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:44.936Z")
@Stability(Stable)
public interface DomainNameAttributes
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.apigateway.*; DomainNameAttributes domainNameAttributes = DomainNameAttributes.builder() .domainName("domainName") .domainNameAliasHostedZoneId("domainNameAliasHostedZoneId") .domainNameAliasTarget("domainNameAliasTarget") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forDomainNameAttributes
static final class
An implementation forDomainNameAttributes
-
Method Summary
Modifier and TypeMethodDescriptionstatic DomainNameAttributes.Builder
builder()
The domain name (e.g.The Route53 hosted zone ID to use in order to connect a record set to this domain through an alias.The Route53 alias target to use in order to connect a record set to this domain through an alias.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainName
The domain name (e.g.example.com
). -
getDomainNameAliasHostedZoneId
The Route53 hosted zone ID to use in order to connect a record set to this domain through an alias. -
getDomainNameAliasTarget
The Route53 alias target to use in order to connect a record set to this domain through an alias. -
builder
- Returns:
- a
DomainNameAttributes.Builder
ofDomainNameAttributes
-