Class: Aws::EMR::Types::HadoopJarStepConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EMR::Types::HadoopJarStepConfig
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-emr/types.rb
 
Overview
A job flow 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.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #args  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of command line arguments passed to the JAR file’s main function when executed.
 - 
  
    
      #jar  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A path to a JAR file run during the step.
 - 
  
    
      #main_class  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the main class in the specified Java file.
 - 
  
    
      #properties  ⇒ Array<Types::KeyValue> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of Java properties that are set when the step runs.
 
Instance Attribute Details
#args ⇒ Array<String>
A list of command line arguments passed to the JAR file’s main function when executed.
      2155 2156 2157 2158 2159 2160 2161 2162  | 
    
      # File 'lib/aws-sdk-emr/types.rb', line 2155 class HadoopJarStepConfig < Struct.new( :properties, :jar, :main_class, :args) SENSITIVE = [] include Aws::Structure end  | 
  
#jar ⇒ String
A path to a JAR file run during the step.
      2155 2156 2157 2158 2159 2160 2161 2162  | 
    
      # File 'lib/aws-sdk-emr/types.rb', line 2155 class HadoopJarStepConfig < Struct.new( :properties, :jar, :main_class, :args) SENSITIVE = [] include Aws::Structure end  | 
  
#main_class ⇒ String
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.
      2155 2156 2157 2158 2159 2160 2161 2162  | 
    
      # File 'lib/aws-sdk-emr/types.rb', line 2155 class HadoopJarStepConfig < Struct.new( :properties, :jar, :main_class, :args) SENSITIVE = [] include Aws::Structure end  | 
  
#properties ⇒ Array<Types::KeyValue>
A 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.
      2155 2156 2157 2158 2159 2160 2161 2162  | 
    
      # File 'lib/aws-sdk-emr/types.rb', line 2155 class HadoopJarStepConfig < Struct.new( :properties, :jar, :main_class, :args) SENSITIVE = [] include Aws::Structure end  |