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

io.burkard.cdk.services.glue.JobCommandProperty.scala Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package io.burkard.cdk.services.glue

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

  def apply(
    name: Option[String] = None,
    pythonVersion: Option[String] = None,
    scriptLocation: Option[String] = None
  ): software.amazon.awscdk.services.glue.CfnJob.JobCommandProperty =
    (new software.amazon.awscdk.services.glue.CfnJob.JobCommandProperty.Builder)
      .name(name.orNull)
      .pythonVersion(pythonVersion.orNull)
      .scriptLocation(scriptLocation.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy