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

io.burkard.cdk.services.kendra.ProxyConfigurationProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.kendra

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

  def apply(
    host: String,
    port: Number,
    credentials: Option[String] = None
  ): software.amazon.awscdk.services.kendra.CfnDataSource.ProxyConfigurationProperty =
    (new software.amazon.awscdk.services.kendra.CfnDataSource.ProxyConfigurationProperty.Builder)
      .host(host)
      .port(port)
      .credentials(credentials.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy