Values_0.DeviceSelectionConfigSourceContains information about the configurations of selected devices.
type nonrec t = {deviceSubsetType : DeviceSubsetType.t;Type of device subsets to deploy to the current stage.
*)percentage : Percentage.t option;Percentage of devices in the fleet to deploy to the current stage.
*)deviceNames : DeviceNames.t option;List of devices chosen to deploy.
*)deviceNameContains : DeviceName.t option;A filter to select devices with names containing this name.
*)}val make :
?percentage:??? ->
?deviceNames:??? ->
?deviceNameContains:??? ->
deviceSubsetType:DeviceSubsetType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Percentage.t
| `List of [> `String of DeviceName.t ] list
| `String of DeviceName.t ])
list ]