All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.burkard.cdk.services.sam.cfnApi.Route53ConfigurationProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.sam.cfnApi

@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object Route53ConfigurationProperty {

  def apply(
    hostedZoneId: Option[String] = None,
    hostedZoneName: Option[String] = None,
    ipV6: Option[Boolean] = None,
    evaluateTargetHealth: Option[Boolean] = None,
    distributedDomainName: Option[String] = None
  ): software.amazon.awscdk.services.sam.CfnApi.Route53ConfigurationProperty =
    (new software.amazon.awscdk.services.sam.CfnApi.Route53ConfigurationProperty.Builder)
      .hostedZoneId(hostedZoneId.orNull)
      .hostedZoneName(hostedZoneName.orNull)
      .ipV6(ipV6.map(Boolean.box).orNull)
      .evaluateTargetHealth(evaluateTargetHealth.map(Boolean.box).orNull)
      .distributedDomainName(distributedDomainName.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy