Module Values.PutActionRevisionOutputSource

Represents the output of a PutActionRevision action.

Sourcetype nonrec t = {
  1. newRevision : Boolean.t option;
    (*

    Indicates whether the artifact revision was previously used in an execution of the specified pipeline.

    *)
  2. pipelineExecutionId : PipelineExecutionId.t option;
    (*

    The ID of the current workflow state of the pipeline.

    *)
}
Sourcetype nonrec error = [
  1. | `ActionNotFoundException of ActionNotFoundException.t
  2. | `ConcurrentPipelineExecutionsLimitExceededException of ConcurrentPipelineExecutionsLimitExceededException.t
  3. | `PipelineNotFoundException of PipelineNotFoundException.t
  4. | `StageNotFoundException of StageNotFoundException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?newRevision:??? -> ?pipelineExecutionId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ActionNotFoundException of unit | `ConcurrentPipelineExecutionsLimitExceededException of ConcurrentPipelineExecutionsLimitExceededException.t | `PipelineNotFoundException of unit | `StageNotFoundException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ActionNotFoundException of unit | `ConcurrentPipelineExecutionsLimitExceededException of ConcurrentPipelineExecutionsLimitExceededException.t | `PipelineNotFoundException of unit | `StageNotFoundException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of PipelineExecutionId.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