io.burkard.cdk.services.route53.PublicHostedZoneAttributes.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.route53
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object PublicHostedZoneAttributes {
def apply(
zoneName: Option[String] = None,
hostedZoneId: Option[String] = None
): software.amazon.awscdk.services.route53.PublicHostedZoneAttributes =
(new software.amazon.awscdk.services.route53.PublicHostedZoneAttributes.Builder)
.zoneName(zoneName.orNull)
.hostedZoneId(hostedZoneId.orNull)
.build()
}