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

io.burkard.cdk.services.cognito.BooleanAttribute.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.cognito

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

  def apply(
    mutable: Option[Boolean] = None
  ): software.amazon.awscdk.services.cognito.BooleanAttribute =
    software.amazon.awscdk.services.cognito.BooleanAttribute.Builder
      .create()
      .mutable(mutable.map(Boolean.box).orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy