Module Values.StartNotebookImportInputSource

Starts a notebook import in Amazon SageMaker Unified Studio. This operation imports a notebook from an Amazon Simple Storage Service location into a project.

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

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

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

    The identifier of the project that will own the imported notebook.

    *)
  3. sourceLocation : SourceLocation.t;
    (*

    The source location of the notebook to import. This specifies the Amazon Simple Storage Service URI of the notebook file.

    *)
  4. name : NotebookName.t;
    (*

    The name of the imported notebook. The name must be between 1 and 256 characters.

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

    The description of the imported notebook.

    *)
  6. 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 : ?description:??? -> ?clientToken:??? -> domainIdentifier:DomainId.t -> owningProjectIdentifier:ProjectId.t -> sourceLocation:SourceLocation.t -> name:NotebookName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DomainId.t | `Structure of (string * [> `String of S3SourceLocation.t ]) list ]) 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