Module Values.ChangeProgressStatusSource

The progress details of a pipeline configuration change.

Sourcetype nonrec t = {
  1. startTime : Timestamp.t option;
    (*

    The time at which the configuration change is made on the pipeline.

    *)
  2. status : ChangeProgressStatuses.t option;
    (*

    The overall status of the pipeline configuration change.

    *)
  3. totalNumberOfStages : Integer.t option;
    (*

    The total number of stages required for the pipeline configuration change.

    *)
  4. changeProgressStages : ChangeProgressStageList.t option;
    (*

    Information about the stages that the pipeline is going through to perform the configuration change.

    *)
}
Sourceval make : ?startTime:??? -> ?status:??? -> ?totalNumberOfStages:??? -> ?changeProgressStages:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.t ]) list ] list | `Timestamp of Timestamp.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