Module Values.NodeDetailsSource

An object that represents the details of a multi-node parallel job node.

Sourcetype nonrec t = {
  1. nodeIndex : Integer.t option;
    (*

    The node index for the node. Node index numbering starts at zero. This index is also available on the node with the AWS_BATCH_JOB_NODE_INDEX environment variable.

    *)
  2. isMainNode : Boolean.t option;
    (*

    Specifies whether the current node is the main node for a multi-node parallel job.

    *)
}
Sourceval make : ?nodeIndex:??? -> ?isMainNode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.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