Interface CommonHostedZoneProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
HostedZoneProps
,PrivateHostedZoneProps
,PublicHostedZoneProps
- All Known Implementing Classes:
CommonHostedZoneProps.Jsii$Proxy
,HostedZoneProps.Jsii$Proxy
,PrivateHostedZoneProps.Jsii$Proxy
,PublicHostedZoneProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:38.385Z")
@Stability(Stable)
public interface CommonHostedZoneProps
extends software.amazon.jsii.JsiiSerializable
Common properties to create a Route 53 hosted zone.
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.route53.*; CommonHostedZoneProps commonHostedZoneProps = CommonHostedZoneProps.builder() .zoneName("zoneName") // the properties below are optional .addTrailingDot(false) .comment("comment") .queryLogsLogGroupArn("queryLogsLogGroupArn") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCommonHostedZoneProps
static final class
An implementation forCommonHostedZoneProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Boolean
Whether to add a trailing dot to the zone name.default String
Any comments that you want to include about the hosted zone.default String
The Amazon Resource Name (ARN) for the log group that you want Amazon Route 53 to send query logs to.The name of the domain.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getZoneName
The name of the domain.For resource record types that include a domain name, specify a fully qualified domain name.
-
getAddTrailingDot
Whether to add a trailing dot to the zone name.Default: true
-
getComment
Any comments that you want to include about the hosted zone.Default: none
-
getQueryLogsLogGroupArn
The Amazon Resource Name (ARN) for the log group that you want Amazon Route 53 to send query logs to.Default: disabled
-
builder
- Returns:
- a
CommonHostedZoneProps.Builder
ofCommonHostedZoneProps
-