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

io.burkard.cdk.services.databrew.cfnRecipe.SecondaryInputProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.databrew.cfnRecipe

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

  def apply(
    dataCatalogInputDefinition: Option[software.amazon.awscdk.services.databrew.CfnRecipe.DataCatalogInputDefinitionProperty] = None,
    s3InputDefinition: Option[software.amazon.awscdk.services.databrew.CfnRecipe.S3LocationProperty] = None
  ): software.amazon.awscdk.services.databrew.CfnRecipe.SecondaryInputProperty =
    (new software.amazon.awscdk.services.databrew.CfnRecipe.SecondaryInputProperty.Builder)
      .dataCatalogInputDefinition(dataCatalogInputDefinition.orNull)
      .s3InputDefinition(s3InputDefinition.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy