Module Values.StartPipelineExecutionInputSource

Represents the input of a StartPipelineExecution action.

Sourcetype nonrec t = {
  1. name : PipelineName.t;
    (*

    The name of the pipeline to start.

    *)
  2. variables : PipelineVariableList.t option;
    (*

    A list that overrides pipeline variables for a pipeline execution that's being started. Variable names must match [A-Za-z0-9@\-_]+, and the values can be anything except an empty string.

    *)
  3. clientRequestToken : ClientRequestToken.t option;
    (*

    The system-generated unique ID used to identify a unique execution request.

    *)
  4. sourceRevisions : SourceRevisionOverrideList.t option;
    (*

    A list that allows you to specify, or override, the source revision for a pipeline execution that's being started. A source revision is the version with all the changes to your application code, or source artifact, for the pipeline execution.

    *)
}
Sourceval context_ : string
Sourceval make : ?variables:??? -> ?clientRequestToken:??? -> ?sourceRevisions:??? -> name:PipelineName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of PipelineVariableName.t ]) list ] list | `String of PipelineName.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