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

io.burkard.cdk.services.elasticbeanstalk.cfnEnvironment.OptionSettingProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.elasticbeanstalk.cfnEnvironment

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

  def apply(
    optionName: String,
    namespace: String,
    value: Option[String] = None,
    resourceName: Option[String] = None
  ): software.amazon.awscdk.services.elasticbeanstalk.CfnEnvironment.OptionSettingProperty =
    (new software.amazon.awscdk.services.elasticbeanstalk.CfnEnvironment.OptionSettingProperty.Builder)
      .optionName(optionName)
      .namespace(namespace)
      .value(value.orNull)
      .resourceName(resourceName.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy