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

io.burkard.cdk.services.opsworks.cfnApp.SslConfigurationProperty.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.opsworks.cfnApp

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

  def apply(
    chain: Option[String] = None,
    certificate: Option[String] = None,
    privateKey: Option[String] = None
  ): software.amazon.awscdk.services.opsworks.CfnApp.SslConfigurationProperty =
    (new software.amazon.awscdk.services.opsworks.CfnApp.SslConfigurationProperty.Builder)
      .chain(chain.orNull)
      .certificate(certificate.orNull)
      .privateKey(privateKey.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy