Module Values.UpdateBuildInputSource

This API works with the following fleet types: EC2 Updates metadata in a build resource, including the build name and version. To update the metadata, specify the build ID to update and provide the new values. If successful, a build object containing the updated metadata is returned. Learn more Upload a Custom Server Build All APIs by task

Sourcetype nonrec t = {
  1. buildId : BuildIdOrArn.t;
    (*

    A unique identifier for the build to update. You can use either the build ID or ARN value.

    *)
  2. name : NonZeroAndMaxString.t option;
    (*

    A descriptive label that is associated with a build. Build names do not need to be unique.

    *)
  3. version : NonZeroAndMaxString.t option;
    (*

    Version information that is associated with a build or script. Version strings do not need to be unique.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?version:??? -> buildId:BuildIdOrArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BuildIdOrArn.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