Class ClusterStepHadoopJarStepArgs
Inherited Members
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 SourceClusterStepHadoopJarStepArgs()
Declaration
public ClusterStepHadoopJarStepArgs()
Properties
View SourceArgs
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> |
Jar
Path to a JAR file run during the step.
Declaration
public Input<string> Jar { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |
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> |