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();
 
  • 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.

    • 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