Module Values.CommandSource

An entity describing an executable that runs on a cluster.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The name of the command.

    *)
  2. scriptPath : String_.t option;
    (*

    The Amazon S3 location of the command script.

    *)
  3. args : StringList.t option;
    (*

    Arguments for Amazon EMR to pass to the command for execution.

    *)
}
Sourceval make : ?name:??? -> ?scriptPath:??? -> ?args:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t