Show / Hide Table of Contents

Class ClusterStepHadoopJarStepArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ClusterStepHadoopJarStepArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Emr.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ClusterStepHadoopJarStepArgs : ResourceArgs

Constructors

View Source

ClusterStepHadoopJarStepArgs()

Declaration
public ClusterStepHadoopJarStepArgs()

Properties

View Source

Args

List of command line arguments passed to the JAR file's main function when executed.

Declaration
public InputList<string> Args { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Jar

Path to a JAR file run during the step.

Declaration
public Input<string> Jar { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MainClass

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.

Declaration
public Input<string> MainClass { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Properties

Key-Value map of Java properties that are set when the step runs. You can use these properties to pass key value pairs to your main function.

Declaration
public InputMap<object> Properties { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.