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.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.006Z")
@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 .comment("comment") .queryLogsLogGroupArn("queryLogsLogGroupArn") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCommonHostedZoneProps
static final class
An implementation forCommonHostedZoneProps
-
Method Summary
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.
-
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
-