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.97.0 (build 729de35)", date="2024-04-18T17:54:23.873Z") @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();
 
  • Method Details

    • getZoneName

      @Stability(Stable) @NotNull String getZoneName()
      The name of the domain.

      For resource record types that include a domain name, specify a fully qualified domain name.

    • getAddTrailingDot

      @Stability(Stable) @Nullable default Boolean getAddTrailingDot()
      Whether to add a trailing dot to the zone name.

      Default: true

    • getComment

      @Stability(Stable) @Nullable default String getComment()
      Any comments that you want to include about the hosted zone.

      Default: none

    • getQueryLogsLogGroupArn

      @Stability(Stable) @Nullable default String getQueryLogsLogGroupArn()
      The Amazon Resource Name (ARN) for the log group that you want Amazon Route 53 to send query logs to.

      Default: disabled

    • builder

      @Stability(Stable) static CommonHostedZoneProps.Builder builder()
      Returns:
      a CommonHostedZoneProps.Builder of CommonHostedZoneProps