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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:14.518Z") @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 - Descriptive identifier for this chainable. This parameter is required.
      props - This parameter is required.
  • Method Details