![JAR search and dependency download from the Maven repository](/logo.png)
io.burkard.cdk.services.route53.CommonHostedZoneProps.scala Maven / Gradle / Ivy
package io.burkard.cdk.services.route53
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object CommonHostedZoneProps {
def apply(
zoneName: String,
comment: Option[String] = None,
queryLogsLogGroupArn: Option[String] = None
): software.amazon.awscdk.services.route53.CommonHostedZoneProps =
(new software.amazon.awscdk.services.route53.CommonHostedZoneProps.Builder)
.zoneName(zoneName)
.comment(comment.orNull)
.queryLogsLogGroupArn(queryLogsLogGroupArn.orNull)
.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy