Values.StartNotebookImportInputSourceStarts a notebook import in Amazon SageMaker Unified Studio. This operation imports a notebook from an Amazon Simple Storage Service location into a project.
type nonrec t = {domainIdentifier : DomainId.t;The identifier of the Amazon SageMaker Unified Studio domain in which to import the notebook.
*)owningProjectIdentifier : ProjectId.t;The identifier of the project that will own the imported notebook.
*)sourceLocation : SourceLocation.t;The source location of the notebook to import. This specifies the Amazon Simple Storage Service URI of the notebook file.
*)name : NotebookName.t;The name of the imported notebook. The name must be between 1 and 256 characters.
*)description : Description.t option;The description of the imported notebook.
*)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 :
?description:??? ->
?clientToken:??? ->
domainIdentifier:DomainId.t ->
owningProjectIdentifier:ProjectId.t ->
sourceLocation:SourceLocation.t ->
name:NotebookName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of DomainId.t
| `Structure of (string * [> `String of S3SourceLocation.t ]) list ])
list ]