Module Values.CreateNotebookInputSource

Creates a notebook in Amazon SageMaker Unified Studio. A notebook is a collaborative document within a project that contains code cells for interactive computing.

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

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

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

    The identifier of the project that owns the notebook.

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

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

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

    The description of the notebook.

    *)
  5. 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.

    *)
  6. 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.

    *)
  7. 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:??? -> ?metadata:??? -> ?parameters:??? -> ?clientToken:??? -> domainIdentifier:DomainId.t -> owningProjectIdentifier:ProjectId.t -> name:NotebookName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of MetadataKey.t ] * [> `String of MetadataValue.t ]) list | `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