Module Values_2.TaskRunSource

The sampling parameters that are associated with the machine learning transform.

Sourcetype nonrec t = {
  1. transformId : Values_0.HashString.t option;
    (*

    The unique identifier for the transform.

    *)
  2. taskRunId : Values_0.HashString.t option;
    (*

    The unique identifier for this task run.

    *)
  3. status : Values_0.TaskStatusType.t option;
    (*

    The current status of the requested task run.

    *)
  4. logGroupName : Values_0.GenericString.t option;
    (*

    The names of the log group for secure logging, associated with this task run.

    *)
  5. properties : TaskRunProperties.t option;
    (*

    Specifies configuration properties associated with this task run.

    *)
  6. errorString : Values_0.GenericString.t option;
    (*

    The list of error strings associated with this task run.

    *)
  7. startedOn : Values_0.Timestamp.t option;
    (*

    The date and time that this task run started.

    *)
  8. lastModifiedOn : Values_0.Timestamp.t option;
    (*

    The last point in time that the requested task run was updated.

    *)
  9. completedOn : Values_0.Timestamp.t option;
    (*

    The last point in time that the requested task run was completed.

    *)
  10. executionTime : Values_0.ExecutionTime.t option;
    (*

    The amount of time (in seconds) that the task run consumed resources.

    *)
}
Sourceval make : ?transformId:??? -> ?taskRunId:??? -> ?status:??? -> ?logGroupName:??? -> ?properties:??? -> ?errorString:??? -> ?startedOn:??? -> ?lastModifiedOn:??? -> ?completedOn:??? -> ?executionTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.ExecutionTime.t | `String of Values_0.HashString.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of ReplaceBoolean.t | `String of Values_0.UriString.t ]) list ]) list | `Timestamp of Values_0.Timestamp.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