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

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

  def apply(
    identityValidationExpression: Option[String] = None,
    authorizerResultTtlInSeconds: Option[Number] = None,
    authorizerUri: Option[String] = None
  ): software.amazon.awscdk.services.appsync.CfnGraphQLApi.LambdaAuthorizerConfigProperty =
    (new software.amazon.awscdk.services.appsync.CfnGraphQLApi.LambdaAuthorizerConfigProperty.Builder)
      .identityValidationExpression(identityValidationExpression.orNull)
      .authorizerResultTtlInSeconds(authorizerResultTtlInSeconds.orNull)
      .authorizerUri(authorizerUri.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy