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

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

package io.burkard.cdk.services.appsync.cfnGraphQLApi

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

  def apply(
    clientId: Option[String] = None,
    authTtl: Option[Number] = None,
    iatTtl: Option[Number] = None,
    issuer: Option[String] = None
  ): software.amazon.awscdk.services.appsync.CfnGraphQLApi.OpenIDConnectConfigProperty =
    (new software.amazon.awscdk.services.appsync.CfnGraphQLApi.OpenIDConnectConfigProperty.Builder)
      .clientId(clientId.orNull)
      .authTtl(authTtl.orNull)
      .iatTtl(iatTtl.orNull)
      .issuer(issuer.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy