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

io.burkard.cdk.services.appsync.cfnGraphQLApi.AdditionalAuthenticationProviderProperty.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 AdditionalAuthenticationProviderProperty {

  def apply(
    authenticationType: String,
    lambdaAuthorizerConfig: Option[software.amazon.awscdk.services.appsync.CfnGraphQLApi.LambdaAuthorizerConfigProperty] = None,
    openIdConnectConfig: Option[software.amazon.awscdk.services.appsync.CfnGraphQLApi.OpenIDConnectConfigProperty] = None,
    userPoolConfig: Option[software.amazon.awscdk.services.appsync.CfnGraphQLApi.CognitoUserPoolConfigProperty] = None
  ): software.amazon.awscdk.services.appsync.CfnGraphQLApi.AdditionalAuthenticationProviderProperty =
    (new software.amazon.awscdk.services.appsync.CfnGraphQLApi.AdditionalAuthenticationProviderProperty.Builder)
      .authenticationType(authenticationType)
      .lambdaAuthorizerConfig(lambdaAuthorizerConfig.orNull)
      .openIdConnectConfig(openIdConnectConfig.orNull)
      .userPoolConfig(userPoolConfig.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy