Values.CreateNotebookInputSourceCreates a notebook in Amazon SageMaker Unified Studio. A notebook is a collaborative document within a project that contains code cells for interactive computing.
type nonrec t = {domainIdentifier : DomainId.t;The identifier of the Amazon SageMaker Unified Studio domain in which to create the notebook.
*)owningProjectIdentifier : ProjectId.t;The identifier of the project that owns the notebook.
*)name : NotebookName.t;The name of the notebook. The name must be between 1 and 256 characters.
*)description : Description.t option;The description of the notebook.
*)metadata : Metadata.t option;The metadata for the notebook, specified as key-value pairs. You can specify up to 50 entries, with keys up to 128 characters and values up to 1024 characters.
*)parameters : Parameters.t option;The sensitive parameters for the notebook, specified as key-value pairs. You can specify up to 50 entries, with keys up to 128 characters and values up to 1024 characters.
*)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:??? ->
?metadata:??? ->
?parameters:??? ->
?clientToken:??? ->
domainIdentifier:DomainId.t ->
owningProjectIdentifier:ProjectId.t ->
name:NotebookName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of MetadataKey.t ] * [> `String of MetadataValue.t ])
list
| `String of DomainId.t ])
list ]