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

io.burkard.cdk.services.acmpca.cfnCertificateAuthority.OcspConfigurationProperty.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.acmpca.cfnCertificateAuthority

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

  def apply(
    enabled: Option[Boolean] = None,
    ocspCustomCname: Option[String] = None
  ): software.amazon.awscdk.services.acmpca.CfnCertificateAuthority.OcspConfigurationProperty =
    (new software.amazon.awscdk.services.acmpca.CfnCertificateAuthority.OcspConfigurationProperty.Builder)
      .enabled(enabled.map(Boolean.box).orNull)
      .ocspCustomCname(ocspCustomCname.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy