Module Values.StartNotebookExportInputSource

Starts a notebook export in Amazon SageMaker Unified Studio. This operation exports a notebook to a specified file format and stores the output in Amazon Simple Storage Service.

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The identifier of the Amazon SageMaker Unified Studio domain in which to export the notebook.

    *)
  2. notebookIdentifier : NotebookId.t;
    (*

    The identifier of the notebook to export.

    *)
  3. owningProjectIdentifier : ProjectId.t;
    (*

    The identifier of the project that owns the notebook.

    *)
  4. fileFormat : FileFormat.t;
    (*

    The file format for the notebook export. Valid values are PDF and IPYNB.

    *)
  5. clientToken : ClientToken.t option;
    (*

    A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> domainIdentifier:DomainId.t -> notebookIdentifier:NotebookId.t -> owningProjectIdentifier:ProjectId.t -> fileFormat:FileFormat.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainId.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