Module Values.DeviceSource

Represents a device type that an app is tested against.

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

    The device's ARN.

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

    The device's display name.

    *)
  3. manufacturer : String_.t option;
    (*

    The device's manufacturer name.

    *)
  4. model : String_.t option;
    (*

    The device's model name.

    *)
  5. modelId : String_.t option;
    (*

    The device's model ID.

    *)
  6. formFactor : DeviceFormFactor.t option;
    (*

    The device's form factor. Allowed values include: PHONE TABLET

    *)
  7. platform : DevicePlatform.t option;
    (*

    The device's platform. Allowed values include: ANDROID IOS

    *)
  8. os : String_.t option;
    (*

    The device's operating system type.

    *)
  9. cpu : CPU.t option;
    (*

    Information about the device's CPU.

    *)
  10. resolution : Resolution.t option;
    (*

    The resolution of the device.

    *)
  11. heapSize : Long.t option;
    (*

    The device's heap size, expressed in bytes.

    *)
  12. memory : Long.t option;
    (*

    The device's total memory size, expressed in bytes.

    *)
  13. image : String_.t option;
    (*

    The device's image name.

    *)
  14. carrier : String_.t option;
    (*

    The device's carrier.

    *)
  15. radio : String_.t option;
    (*

    The device's radio.

    *)
  16. remoteAccessEnabled : Boolean.t option;
    (*

    Specifies whether remote access has been enabled for the specified device.

    *)
  17. remoteDebugEnabled : Boolean.t option;
    (*

    This flag is set to true if remote debugging is enabled for the device. Remote debugging is no longer supported.

    *)
  18. fleetType : String_.t option;
    (*

    The type of fleet to which this device belongs. Possible values are PRIVATE and PUBLIC.

    *)
  19. fleetName : String_.t option;
    (*

    The name of the fleet to which this device belongs.

    *)
  20. instances : DeviceInstances.t option;
    (*

    The instances that belong to this device.

    *)
  21. availability : DeviceAvailability.t option;
    (*

    Indicates how likely a device is available for a test run. Currently available in the ListDevices and GetDevice API methods.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?manufacturer:??? -> ?model:??? -> ?modelId:??? -> ?formFactor:??? -> ?platform:??? -> ?os:??? -> ?cpu:??? -> ?resolution:??? -> ?heapSize:??? -> ?memory:??? -> ?image:??? -> ?carrier:??? -> ?radio:??? -> ?remoteAccessEnabled:??? -> ?remoteDebugEnabled:??? -> ?fleetType:??? -> ?fleetName:??? -> ?instances:??? -> ?availability:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of AmazonResourceName.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list | `String of AmazonResourceName.t ]) list ]) list ] list | `Long of Long.t | `String of AmazonResourceName.t | `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `String of String_.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