You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::EMR::Types::HadoopStepConfig

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

A cluster step consisting of a JAR file whose main function will be executed. The main function submits a job for Hadoop to execute and waits for the job to finish or fail.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#argsArray<String>

The list of command line arguments to pass to the JAR file\'s main function for execution.

Returns:

  • (Array<String>)

    The list of command line arguments to pass to the JAR file\'s main function for execution.

#jarString

The path to the JAR file that runs during the step.

Returns:

  • (String)

    The path to the JAR file that runs during the step.

#main_classString

The name of the main class in the specified Java file. If not specified, the JAR file should specify a main class in its manifest file.

Returns:

  • (String)

    The name of the main class in the specified Java file.

#propertiesHash<String,String>

The list of Java properties that are set when the step runs. You can use these properties to pass key value pairs to your main function.

Returns:

  • (Hash<String,String>)

    The list of Java properties that are set when the step runs.