Module Values.RetryBuildBatchInputSource

Restarts a failed batch build. Only batch builds that have failed can be retried.

Sourcetype nonrec t = {
  1. id : NonEmptyString.t option;
    (*

    Specifies the identifier of the batch build to restart.

    *)
  2. idempotencyToken : String_.t option;
    (*

    A unique, case sensitive identifier you provide to ensure the idempotency of the RetryBuildBatch request. The token is included in the RetryBuildBatch request and is valid for five minutes. If you repeat the RetryBuildBatch request with the same token, but change a parameter, CodeBuild returns a parameter mismatch error.

    *)
  3. retryType : RetryBuildBatchType.t option;
    (*

    Specifies the type of retry to perform.

    *)
}
Sourceval make : ?id:??? -> ?idempotencyToken:??? -> ?retryType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.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