Module Values.NotebookRunSummarySource

The summary of a notebook run in Amazon SageMaker Unified Studio.

Sourcetype nonrec t = {
  1. id : NotebookRunId.t option;
    (*

    The identifier of the notebook run.

    *)
  2. domainId : DomainId.t option;
    (*

    The identifier of the Amazon SageMaker Unified Studio domain.

    *)
  3. owningProjectId : ProjectId.t option;
    (*

    The identifier of the project that owns the notebook run.

    *)
  4. notebookId : NotebookId.t option;
    (*

    The identifier of the notebook.

    *)
  5. scheduleId : ScheduleId.t option;
    (*

    The identifier of the schedule associated with the notebook run.

    *)
  6. status : NotebookRunStatus.t option;
    (*

    The status of the notebook run.

    *)
  7. triggerSource : TriggerSource.t option;
    (*

    The source that triggered the notebook run.

    *)
  8. createdAt : CreatedAt.t option;
    (*

    The timestamp of when the notebook run was created.

    *)
  9. createdBy : CreatedBy.t option;
    (*

    The identifier of the user who created the notebook run.

    *)
  10. updatedAt : UpdatedAt.t option;
    (*

    The timestamp of when the notebook run was last updated.

    *)
  11. updatedBy : UpdatedBy.t option;
    (*

    The identifier of the user who last updated the notebook run.

    *)
  12. startedAt : Timestamp.t option;
    (*

    The timestamp of when the notebook run started executing.

    *)
  13. completedAt : Timestamp.t option;
    (*

    The timestamp of when the notebook run completed.

    *)
}
Sourceval make : ?id:??? -> ?domainId:??? -> ?owningProjectId:??? -> ?notebookId:??? -> ?scheduleId:??? -> ?status:??? -> ?triggerSource:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?startedAt:??? -> ?completedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NotebookRunId.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of CreatedAt.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