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

io.burkard.cdk.services.events.cfnConnection.AuthParametersProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.events.cfnConnection

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

  def apply(
    apiKeyAuthParameters: Option[software.amazon.awscdk.services.events.CfnConnection.ApiKeyAuthParametersProperty] = None,
    basicAuthParameters: Option[software.amazon.awscdk.services.events.CfnConnection.BasicAuthParametersProperty] = None,
    invocationHttpParameters: Option[software.amazon.awscdk.services.events.CfnConnection.ConnectionHttpParametersProperty] = None,
    oAuthParameters: Option[software.amazon.awscdk.services.events.CfnConnection.OAuthParametersProperty] = None
  ): software.amazon.awscdk.services.events.CfnConnection.AuthParametersProperty =
    (new software.amazon.awscdk.services.events.CfnConnection.AuthParametersProperty.Builder)
      .apiKeyAuthParameters(apiKeyAuthParameters.orNull)
      .basicAuthParameters(basicAuthParameters.orNull)
      .invocationHttpParameters(invocationHttpParameters.orNull)
      .oAuthParameters(oAuthParameters.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy