Module Values.ExecutionTriggerSource

The interaction or event that started a pipeline execution.

Sourcetype nonrec t = {
  1. triggerType : TriggerType.t option;
    (*

    The type of change-detection method, command, or user interaction that started a pipeline execution.

    *)
  2. triggerDetail : TriggerDetail.t option;
    (*

    Detail related to the event that started a pipeline execution, such as the webhook ARN of the webhook that triggered the pipeline execution or the user ARN for a user-initiated start-pipeline-execution CLI command.

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