Module Values.NotebookSummarySource

The summary of a notebook in Amazon SageMaker Unified Studio.

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

    The identifier of the notebook.

    *)
  2. name : NotebookName.t option;
    (*

    The name of the notebook.

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

    The identifier of the project that owns the notebook.

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

    The identifier of the Amazon SageMaker Unified Studio domain.

    *)
  5. status : NotebookStatus.t option;
    (*

    The status of the notebook.

    *)
  6. description : Description.t option;
    (*

    The description of the notebook.

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

    The timestamp of when the notebook was created.

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

    The identifier of the user who created the notebook.

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

    The timestamp of when the notebook was last updated.

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

    The identifier of the user who last updated the notebook.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?owningProjectId:??? -> ?domainId:??? -> ?status:??? -> ?description:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NotebookId.t | `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