Module Values.RemoteAccessSessionSource

Represents information about the remote access session.

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

    The Amazon Resource Name (ARN) of the remote access session.

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

    The name of the remote access session.

    *)
  3. created : DateTime.t option;
    (*

    The date and time the remote access session was created.

    *)
  4. status : ExecutionStatus.t option;
    (*

    The status of the remote access session. Can be any of the following: PENDING. PENDING_CONCURRENCY. PENDING_DEVICE. PROCESSING. SCHEDULING. PREPARING. RUNNING. COMPLETED. STOPPING.

    *)
  5. result : ExecutionResult.t option;
    (*

    The result of the remote access session. Can be any of the following: PENDING. PASSED. WARNED. FAILED. SKIPPED. ERRORED. STOPPED.

    *)
  6. message : Message.t option;
    (*

    A message about the remote access session.

    *)
  7. started : DateTime.t option;
    (*

    The date and time the remote access session was started.

    *)
  8. stopped : DateTime.t option;
    (*

    The date and time the remote access session was stopped.

    *)
  9. device : Device.t option;
    (*

    The device (phone or tablet) used in the remote access session.

    *)
  10. instanceArn : AmazonResourceName.t option;
    (*

    The ARN of the instance.

    *)
  11. billingMethod : BillingMethod.t option;
    (*

    The billing method of the remote access session. Possible values include METERED or UNMETERED. For more information about metered devices, see AWS Device Farm terminology.

    *)
  12. deviceMinutes : DeviceMinutes.t option;
    (*

    The number of minutes a device is used in a remote access session (including setup and teardown minutes).

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

    The endpoint for the remote access session. This field is deprecated, and is replaced by the new endpoints.interactiveEndpoint field.

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

    Unique device identifier for the remote device. Only returned if remote debugging is enabled for the remote access session. Remote debugging is no longer supported.

    *)
  15. interactionMode : InteractionMode.t option;
    (*

    The interaction mode of the remote access session. Changing the interactive mode of remote access sessions is no longer available.

    *)
  16. skipAppResign : SkipAppResign.t option;
    (*

    When set to true, for private devices, Device Farm does not sign your app again. For public devices, Device Farm always signs your apps again. For more information about how Device Farm re-signs your apps, see Do you modify my app? in the AWS Device Farm FAQs.

    *)
  17. vpcConfig : VpcConfig.t option;
    (*

    The VPC security groups and subnets that are attached to a project.

    *)
  18. deviceProxy : DeviceProxy.t option;
    (*

    The device proxy configured for the remote access session.

    *)
  19. appUpload : AmazonResourceName.t option;
    (*

    The ARN for the app to be installed onto your device.

    *)
  20. endpoints : RemoteAccessEndpoints.t option;
}
Sourceval make : ?arn:??? -> ?name:??? -> ?created:??? -> ?status:??? -> ?result:??? -> ?message:??? -> ?started:??? -> ?stopped:??? -> ?device:??? -> ?instanceArn:??? -> ?billingMethod:??? -> ?deviceMinutes:??? -> ?endpoint:??? -> ?deviceUdid:??? -> ?interactionMode:??? -> ?skipAppResign:??? -> ?vpcConfig:??? -> ?deviceProxy:??? -> ?appUpload:??? -> ?endpoints:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of SkipAppResign.t | `Enum of string | `String of AmazonResourceName.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `Enum of string | `Integer of DeviceProxyPort.t | `List of [> `String of SecurityGroupId.t | `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 | `Timestamp of DateTime.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