Module Values.BuildSummarySource

Contains summary information about a batch build group.

Sourcetype nonrec t = {
  1. arn : String_.t option;
    (*

    The batch build ARN.

    *)
  2. requestedOn : Timestamp.t option;
    (*

    When the build was started, expressed in Unix time format.

    *)
  3. buildStatus : StatusType.t option;
    (*

    The status of the build group. FAILED The build group failed. FAULT The build group faulted. IN_PROGRESS The build group is still in progress. STOPPED The build group stopped. SUCCEEDED The build group succeeded. TIMED_OUT The build group timed out.

    *)
  4. primaryArtifact : ResolvedArtifact.t option;
    (*

    A ResolvedArtifact object that represents the primary build artifacts for the build group.

    *)
  5. secondaryArtifacts : ResolvedSecondaryArtifacts.t option;
    (*

    An array of ResolvedArtifact objects that represents the secondary build artifacts for the build group.

    *)
}
Sourceval make : ?arn:??? -> ?requestedOn:??? -> ?buildStatus:??? -> ?primaryArtifact:??? -> ?secondaryArtifacts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) 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