Module Values.UpdateNotebookInputSource

Updates a notebook in Amazon SageMaker Unified Studio.

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

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

    *)
  2. identifier : NotebookId.t;
    (*

    The identifier of the notebook to update.

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

    The updated description of the notebook.

    *)
  4. status : NotebookStatus.t option;
    (*

    The updated status of the notebook.

    *)
  5. name : NotebookName.t option;
    (*

    The updated name of the notebook.

    *)
  6. cellOrder : CellOrder.t option;
    (*

    The updated ordered list of cells in the notebook.

    *)
  7. metadata : Metadata.t option;
    (*

    The updated metadata for the notebook, specified as key-value pairs.

    *)
  8. parameters : Parameters.t option;
    (*

    The updated sensitive parameters for the notebook, specified as key-value pairs.

    *)
  9. environmentConfiguration : EnvironmentConfig.t option;
    (*

    The updated environment configuration for the notebook.

    *)
  10. 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:??? -> ?status:??? -> ?name:??? -> ?cellOrder:??? -> ?metadata:??? -> ?parameters:??? -> ?environmentConfiguration:??? -> ?clientToken:??? -> domainIdentifier:DomainId.t -> identifier:NotebookId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of 'a list ] list | `Map of ([> `String of MetadataKey.t ] * [> `String of MetadataValue.t ]) list | `String of DomainId.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Enum of string | `String of PackageConfigPackageSpecificationString.t ]) list ]) 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