Module Values.StartNotebookRunInputSource

Starts a notebook run in Amazon SageMaker Unified Studio. A notebook run represents the execution of an Amazon SageMaker notebook within a project. You can configure compute, network, timeout, and environment settings for the run.

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

    The identifier of the Amazon SageMaker Unified Studio domain in which the notebook run is started.

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

    The identifier of the project that owns the notebook run.

    *)
  3. notebookIdentifier : NotebookId.t;
    (*

    The identifier of the notebook to run.

    *)
  4. scheduleIdentifier : ScheduleId.t option;
    (*

    The identifier of the schedule associated with the notebook run.

    *)
  5. computeConfiguration : ComputeConfig.t option;
    (*

    The compute configuration for the notebook run, including instance type and environment version.

    *)
  6. networkConfiguration : NetworkConfig.t option;
    (*

    The network configuration for the notebook run, including network access type and optional VPC settings.

    *)
  7. timeoutConfiguration : TimeoutConfig.t option;
    (*

    The timeout configuration for the notebook run. The default timeout is 720 minutes (12 hours) and the maximum is 1440 minutes (24 hours).

    *)
  8. triggerSource : TriggerSource.t option;
    (*

    The source that triggered the notebook run.

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

    The metadata for the notebook run, specified as key-value pairs. You can specify up to 50 entries, with keys up to 128 characters and values up to 1024 characters.

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

    The sensitive parameters for the notebook run, specified as key-value pairs. You can specify up to 50 entries, with keys up to 128 characters and values up to 1024 characters.

    *)
  11. 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 : ?scheduleIdentifier:??? -> ?computeConfiguration:??? -> ?networkConfiguration:??? -> ?timeoutConfiguration:??? -> ?triggerSource:??? -> ?metadata:??? -> ?parameters:??? -> ?clientToken:??? -> domainIdentifier:DomainId.t -> owningProjectIdentifier:ProjectId.t -> notebookIdentifier:NotebookId.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 | `Structure of (string * [> `Enum of string | `Integer of TimeoutConfigRunTimeoutInMinutesInteger.t | `List of [> `String of String_.t ] list | `String of InstanceType.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