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

io.burkard.cdk.services.appsync.cfnGraphQLApi.CognitoUserPoolConfigProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.appsync.cfnGraphQLApi

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

  def apply(
    userPoolId: Option[String] = None,
    awsRegion: Option[String] = None,
    appIdClientRegex: Option[String] = None
  ): software.amazon.awscdk.services.appsync.CfnGraphQLApi.CognitoUserPoolConfigProperty =
    (new software.amazon.awscdk.services.appsync.CfnGraphQLApi.CognitoUserPoolConfigProperty.Builder)
      .userPoolId(userPoolId.orNull)
      .awsRegion(awsRegion.orNull)
      .appIdClientRegex(appIdClientRegex.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy