Module Values.ServiceJobSummarySource

Summary information about a service job.

Sourcetype nonrec t = {
  1. latestAttempt : LatestServiceJobAttempt.t option;
    (*

    Information about the latest attempt for the service job.

    *)
  2. capacityUsage : ServiceJobCapacityUsageSummaryList.t option;
    (*

    The capacity usage information for this service job, including the unit of measure and quantity of resources being used.

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

    The Unix timestamp (in milliseconds) for when the service job was created.

    *)
  4. jobArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the service job.

    *)
  5. jobId : String_.t option;
    (*

    The job ID for the service job.

    *)
  6. jobName : String_.t option;
    (*

    The name of the service job.

    *)
  7. scheduledAt : Long.t option;
    (*

    The Unix timestamp (in milliseconds) for when the service job was scheduled for execution.

    *)
  8. serviceJobType : ServiceJobType.t option;
    (*

    The type of service job. For SageMaker Training jobs, this value is SAGEMAKER_TRAINING.

    *)
  9. shareIdentifier : String_.t option;
    (*

    The share identifier for the job.

    *)
  10. quotaShareName : String_.t option;
    (*

    The quota share for the service job.

    *)
  11. status : ServiceJobStatus.t option;
    (*

    The current status of the service job.

    *)
  12. statusReason : String_.t option;
    (*

    A short string to provide more details on the current status of the service job.

    *)
  13. startedAt : Long.t option;
    (*

    The Unix timestamp (in milliseconds) for when the service job was started.

    *)
  14. stoppedAt : Long.t option;
    (*

    The Unix timestamp (in milliseconds) for when the service job stopped running.

    *)
}
Sourceval make : ?latestAttempt:??? -> ?capacityUsage:??? -> ?createdAt:??? -> ?jobArn:??? -> ?jobId:??? -> ?jobName:??? -> ?scheduledAt:??? -> ?serviceJobType:??? -> ?shareIdentifier:??? -> ?quotaShareName:??? -> ?status:??? -> ?statusReason:??? -> ?startedAt:??? -> ?stoppedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Double of Double.t | `String of String_.t ]) list ] list | `Long of Long.t | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list ]) 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