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

io.burkard.cdk.services.appflow.cfnFlow.VeevaSourcePropertiesProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.appflow.cfnFlow

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

  def apply(
    `object`: String,
    includeRenditions: Option[Boolean] = None,
    documentType: Option[String] = None,
    includeSourceFiles: Option[Boolean] = None,
    includeAllVersions: Option[Boolean] = None
  ): software.amazon.awscdk.services.appflow.CfnFlow.VeevaSourcePropertiesProperty =
    (new software.amazon.awscdk.services.appflow.CfnFlow.VeevaSourcePropertiesProperty.Builder)
      .`object`(`object`)
      .includeRenditions(includeRenditions.map(Boolean.box).orNull)
      .documentType(documentType.orNull)
      .includeSourceFiles(includeSourceFiles.map(Boolean.box).orNull)
      .includeAllVersions(includeAllVersions.map(Boolean.box).orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy