Module Values.ApplicationSource

With Amazon EMR release version 4.0 and later, the only accepted parameter is the application name. To pass arguments to applications, you use configuration classifications specified using configuration JSON objects. For more information, see Configuring Applications. With earlier Amazon EMR releases, the application is any Amazon or third-party software that you can add to the cluster. This structure contains a list of strings that indicates the software to use with the cluster and accepts a user argument list. Amazon EMR accepts and forwards the argument list to the corresponding installation script as bootstrap action argument.

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

    The name of the application.

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

    The version of the application.

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

    Arguments for Amazon EMR to pass to the application.

    *)
  4. additionalInfo : StringMap.t option;
    (*

    This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.

    *)
}
Sourceval make : ?name:??? -> ?version:??? -> ?args:??? -> ?additionalInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `Map of ([> `String of String_.t ] * [> `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