io.burkard.cdk.services.cognito.NumberAttributeConstraintsProperty.scala Maven / Gradle / Ivy
package io.burkard.cdk.services.cognito
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object NumberAttributeConstraintsProperty {
def apply(
minValue: Option[String] = None,
maxValue: Option[String] = None
): software.amazon.awscdk.services.cognito.CfnUserPool.NumberAttributeConstraintsProperty =
(new software.amazon.awscdk.services.cognito.CfnUserPool.NumberAttributeConstraintsProperty.Builder)
.minValue(minValue.orNull)
.maxValue(maxValue.orNull)
.build()
}