Module Values.RetryBuildInputSource

Restarts a build.

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

    Specifies the identifier of the build to restart.

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

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

    *)
}
Sourceval make : ?id:??? -> ?idempotencyToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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