{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-device-farm/refs/heads/main/json-schema/amazon-device-farm-remote-access-session-schema.json", "title": "RemoteAccessSession", "description": "Represents information about the remote access session.", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/AmazonResourceName" }, { "description": "The Amazon Resource Name (ARN) of the remote access session." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "The name of the remote access session." } ] }, "created": { "allOf": [ { "$ref": "#/components/schemas/DateTime" }, { "description": "The date and time the remote access session was created." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/ExecutionStatus" }, { "description": "

The status of the remote access session. Can be any of the following:

" } ] }, "result": { "allOf": [ { "$ref": "#/components/schemas/ExecutionResult" }, { "description": "

The result of the remote access session. Can be any of the following:

" } ] }, "message": { "allOf": [ { "$ref": "#/components/schemas/Message" }, { "description": "A message about the remote access session." } ] }, "started": { "allOf": [ { "$ref": "#/components/schemas/DateTime" }, { "description": "The date and time the remote access session was started." } ] }, "stopped": { "allOf": [ { "$ref": "#/components/schemas/DateTime" }, { "description": "The date and time the remote access session was stopped." } ] }, "device": { "allOf": [ { "$ref": "#/components/schemas/Device" }, { "description": "The device (phone or tablet) used in the remote access session." } ] }, "instanceArn": { "allOf": [ { "$ref": "#/components/schemas/AmazonResourceName" }, { "description": "The ARN of the instance." } ] }, "remoteDebugEnabled": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "

This flag is set to true if remote debugging is enabled for the remote access session.

Remote debugging is no longer supported.

" } ] }, "remoteRecordEnabled": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "This flag is set to true if remote recording is enabled for the remote access session." } ] }, "remoteRecordAppArn": { "allOf": [ { "$ref": "#/components/schemas/AmazonResourceName" }, { "description": "The ARN for the app to be recorded in the remote access session." } ] }, "hostAddress": { "allOf": [ { "$ref": "#/components/schemas/HostAddress" }, { "description": "

IP address of the EC2 host where you need to connect to remotely debug devices. Only returned if remote debugging is enabled for the remote access session.

Remote debugging is no longer supported.

" } ] }, "clientId": { "allOf": [ { "$ref": "#/components/schemas/ClientId" }, { "description": "

Unique identifier of your client for the remote access session. Only returned if remote debugging is enabled for the remote access session.

Remote debugging is no longer supported.

" } ] }, "billingMethod": { "allOf": [ { "$ref": "#/components/schemas/BillingMethod" }, { "description": "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." } ] }, "deviceMinutes": { "allOf": [ { "$ref": "#/components/schemas/DeviceMinutes" }, { "description": "The number of minutes a device is used in a remote access session (including setup and teardown minutes)." } ] }, "endpoint": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The endpoint for the remote access sesssion." } ] }, "deviceUdid": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "

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.

" } ] }, "interactionMode": { "allOf": [ { "$ref": "#/components/schemas/InteractionMode" }, { "description": "

The interaction mode of the remote access session. Valid values are:

" } ] }, "skipAppResign": { "allOf": [ { "$ref": "#/components/schemas/SkipAppResign" }, { "description": "

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.

" } ] }, "vpcConfig": { "allOf": [ { "$ref": "#/components/schemas/VpcConfig" }, { "description": "The VPC security groups and subnets that are attached to a project." } ] } } }