java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:47.970Z") @Stability(Stable) public class EmrAddStep extends TaskStateBase
A Step Functions Task to add a Step to an EMR Cluster.

The StepConfiguration is defined as Parameters in the state machine definition.

OUTPUT: the StepId

Example:

 EmrAddStep.Builder.create(this, "Task")
         .clusterId("ClusterId")
         .name("StepName")
         .jar("Jar")
         .actionOnFailure(ActionOnFailure.CONTINUE)
         .build();
 
  • Constructor Details

    • EmrAddStep

      protected EmrAddStep(software.amazon.jsii.JsiiObjectRef objRef)
    • EmrAddStep

      protected EmrAddStep(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • EmrAddStep

      @Stability(Stable) public EmrAddStep(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull EmrAddStepProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
  • Method Details