![JAR search and dependency download from the Maven repository](/logo.png)
io.burkard.cdk.services.resourcegroups.cfnGroup.ConfigurationParameterProperty.scala Maven / Gradle / Ivy
package io.burkard.cdk.services.resourcegroups.cfnGroup
import scala.collection.JavaConverters._
@scala.annotation.nowarn("cat=deprecation")
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ConfigurationParameterProperty {
def apply(
name: Option[String] = None,
values: Option[List[String]] = None
): software.amazon.awscdk.services.resourcegroups.CfnGroup.ConfigurationParameterProperty =
(new software.amazon.awscdk.services.resourcegroups.CfnGroup.ConfigurationParameterProperty.Builder)
.name(name.orNull)
.values(values.map(_.asJava).orNull)
.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy