Module Values.TriggerSourceSource

The source that triggered a notebook run in Amazon SageMaker Unified Studio.

Sourcetype nonrec t = {
  1. type_ : TriggerSourceType.t option;
    (*

    The type of the trigger source. Valid values are MANUAL, SCHEDULED, and WORKFLOW.

    *)
  2. name : String_.t option;
    (*

    The name of the trigger source.

    *)
}
Sourceval make : ?type_:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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