Module Values.BatchRestrictionsSource

Specifies restrictions for the batch build.

Sourcetype nonrec t = {
  1. maximumBuildsAllowed : WrapperInt.t option;
    (*

    Specifies the maximum number of builds allowed.

    *)
  2. computeTypesAllowed : ComputeTypesAllowed.t option;
    (*

    An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the CodeBuild User Guide for these values.

    *)
  3. fleetsAllowed : FleetsAllowed.t option;
    (*

    An array of strings that specify the fleets that are allowed for the batch build. See Run builds on reserved capacity fleets in the CodeBuild User Guide for more information.

    *)
}
Sourceval make : ?maximumBuildsAllowed:??? -> ?computeTypesAllowed:??? -> ?fleetsAllowed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of WrapperInt.t | `List of [> `String of NonEmptyString.t ] list ]) 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