Module Values.ExecutorsSummarySource

Contains summary information about an executor.

Sourcetype nonrec t = {
  1. executorId : ExecutorId.t option;
    (*

    The UUID of the executor.

    *)
  2. executorType : ExecutorType.t option;
    (*

    The type of executor used for the application (COORDINATOR, GATEWAY, or WORKER).

    *)
  3. startDateTime : Long.t option;
    (*

    The date and time that the executor started.

    *)
  4. terminationDateTime : Long.t option;
    (*

    The date and time that the executor was terminated.

    *)
  5. executorState : ExecutorState.t option;
    (*

    The processing state of the executor. A description of each state follows. CREATING - The executor is being started, including acquiring resources. CREATED - The executor has been started. REGISTERED - The executor has been registered. TERMINATING - The executor is in the process of shutting down. TERMINATED - The executor is no longer running. FAILED - Due to a failure, the executor is no longer running.

    *)
  6. executorSize : Long.t option;
    (*

    The smallest unit of compute that a session can request from Athena. Size is measured in data processing unit (DPU) values, a relative measure of processing power.

    *)
}
Sourceval make : ?executorId:??? -> ?executorType:??? -> ?startDateTime:??? -> ?terminationDateTime:??? -> ?executorState:??? -> ?executorSize:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of ExecutorId.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