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

io.burkard.cdk.services.amplifyuibuilder.cfnComponent.ComponentBindingPropertiesValuePropertiesProperty.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.amplifyuibuilder.cfnComponent

import scala.collection.JavaConverters._

@scala.annotation.nowarn("cat=deprecation")
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ComponentBindingPropertiesValuePropertiesProperty {

  def apply(
    predicates: Option[List[_]] = None,
    field: Option[String] = None,
    model: Option[String] = None,
    userAttribute: Option[String] = None,
    key: Option[String] = None,
    bucket: Option[String] = None,
    defaultValue: Option[String] = None
  ): software.amazon.awscdk.services.amplifyuibuilder.CfnComponent.ComponentBindingPropertiesValuePropertiesProperty =
    (new software.amazon.awscdk.services.amplifyuibuilder.CfnComponent.ComponentBindingPropertiesValuePropertiesProperty.Builder)
      .predicates(predicates.map(_.asJava).orNull)
      .field(field.orNull)
      .model(model.orNull)
      .userAttribute(userAttribute.orNull)
      .key(key.orNull)
      .bucket(bucket.orNull)
      .defaultValue(defaultValue.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy