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

io.burkard.cdk.services.emr.cfnCluster.StepConfigProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.emr.cfnCluster

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

  def apply(
    name: String,
    hadoopJarStep: software.amazon.awscdk.services.emr.CfnCluster.HadoopJarStepConfigProperty,
    actionOnFailure: Option[String] = None
  ): software.amazon.awscdk.services.emr.CfnCluster.StepConfigProperty =
    (new software.amazon.awscdk.services.emr.CfnCluster.StepConfigProperty.Builder)
      .name(name)
      .hadoopJarStep(hadoopJarStep)
      .actionOnFailure(actionOnFailure.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy