Module Values.CreateDevicePoolRequestSource

Represents a request to the create device pool operation.

Sourcetype nonrec t = {
  1. projectArn : AmazonResourceName.t;
    (*

    The ARN of the project for the device pool.

    *)
  2. name : Name.t;
    (*

    The device pool's name.

    *)
  3. description : Message.t option;
    (*

    The device pool's description.

    *)
  4. rules : Rules.t;
    (*

    The device pool's rules.

    *)
  5. maxDevices : Integer.t option;
    (*

    The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are available and meet the criteria that you assign for the rules parameter. Depending on how many devices meet these constraints, your device pool might contain fewer devices than the value for this parameter. By specifying the maximum number of devices, you can control the costs that you incur by running tests.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?maxDevices:??? -> projectArn:AmazonResourceName.t -> name:Name.t -> rules:Rules.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `String of AmazonResourceName.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