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

io.burkard.cdk.services.quicksight.cfnDataSource.OracleParametersProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.quicksight.cfnDataSource

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

  def apply(
    host: String,
    port: Number,
    database: String
  ): software.amazon.awscdk.services.quicksight.CfnDataSource.OracleParametersProperty =
    (new software.amazon.awscdk.services.quicksight.CfnDataSource.OracleParametersProperty.Builder)
      .host(host)
      .port(port)
      .database(database)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy