Module Values.PutActionRevisionInputSource

Represents the input of a PutActionRevision action.

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

    The name of the pipeline that starts processing the revision to the source.

    *)
  2. stageName : StageName.t;
    (*

    The name of the stage that contains the action that acts on the revision.

    *)
  3. actionName : ActionName.t;
    (*

    The name of the action that processes the revision.

    *)
  4. actionRevision : ActionRevision.t;
    (*

    Represents information about the version (or revision) of an action.

    *)
}
Sourceval context_ : string
Sourceval make : pipelineName:PipelineName.t -> stageName:StageName.t -> actionName:ActionName.t -> actionRevision:ActionRevision.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PipelineName.t | `Structure of (string * [> `String of Revision.t | `Timestamp of Timestamp.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