HadoopStepConfig
public struct HadoopStepConfig : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The list of command line arguments to pass to the JAR file’s main function for execution.
Declaration
Swift
public let args: [String]?
-
The path to the JAR file that runs during the step.
Declaration
Swift
public let jar: 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.
Declaration
Swift
public let mainClass: 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.
Declaration
Swift
public let properties: [String : String]?
-
Undocumented
Declaration
Swift
public init(args: [String]? = nil, jar: String? = nil, mainClass: String? = nil, properties: [String : String]? = nil)