Class CfnStep

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:17.216Z") @Stability(Stable) public class CfnStep extends CfnResource implements IInspectable
Use Step to specify a cluster (job flow) step, which runs only on the master node.

Steps are used to submit data processing jobs to a cluster.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.emr.*;
 CfnStep cfnStep = CfnStep.Builder.create(this, "MyCfnStep")
         .actionOnFailure("actionOnFailure")
         .hadoopJarStep(HadoopJarStepConfigProperty.builder()
                 .jar("jar")
                 // the properties below are optional
                 .args(List.of("args"))
                 .mainClass("mainClass")
                 .stepProperties(List.of(KeyValueProperty.builder()
                         .key("key")
                         .value("value")
                         .build()))
                 .build())
         .jobFlowId("jobFlowId")
         .name("name")
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnStep

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

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

      @Stability(Stable) public CfnStep(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnStepProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      The identifier of the cluster step.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getActionOnFailure

      @Stability(Stable) @NotNull public String getActionOnFailure()
      This specifies what action to take when the cluster step fails.
    • setActionOnFailure

      @Stability(Stable) public void setActionOnFailure(@NotNull String value)
      This specifies what action to take when the cluster step fails.
    • getHadoopJarStep

      @Stability(Stable) @NotNull public Object getHadoopJarStep()
      The HadoopJarStepConfig property type specifies a job flow step consisting of a JAR file whose main function will be executed.
    • setHadoopJarStep

      @Stability(Stable) public void setHadoopJarStep(@NotNull IResolvable value)
      The HadoopJarStepConfig property type specifies a job flow step consisting of a JAR file whose main function will be executed.
    • setHadoopJarStep

      @Stability(Stable) public void setHadoopJarStep(@NotNull CfnStep.HadoopJarStepConfigProperty value)
      The HadoopJarStepConfig property type specifies a job flow step consisting of a JAR file whose main function will be executed.
    • getJobFlowId

      @Stability(Stable) @NotNull public String getJobFlowId()
      A string that uniquely identifies the cluster (job flow).
    • setJobFlowId

      @Stability(Stable) public void setJobFlowId(@NotNull String value)
      A string that uniquely identifies the cluster (job flow).
    • getName

      @Stability(Stable) @NotNull public String getName()
      The name of the cluster step.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the cluster step.