Values.StartNotebookExportInputSourceStarts 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.
type nonrec t = {domainIdentifier : DomainId.t;The identifier of the Amazon SageMaker Unified Studio domain in which to export the notebook.
*)notebookIdentifier : NotebookId.t;The identifier of the notebook to export.
*)owningProjectIdentifier : ProjectId.t;The identifier of the project that owns the notebook.
*)fileFormat : FileFormat.t;The file format for the notebook export. Valid values are PDF and IPYNB.
*)clientToken : ClientToken.t option;A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.
*)}val make :
?clientToken:??? ->
domainIdentifier:DomainId.t ->
notebookIdentifier:NotebookId.t ->
owningProjectIdentifier:ProjectId.t ->
fileFormat:FileFormat.t ->
unit ->
tval to_value :
t ->
[> `Structure of (string * [> `Enum of string | `String of DomainId.t ]) list ]