Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RemoteAccessSession

import type { RemoteAccessSession } from "https://aws-api.deno.dev/v0.4/services/devicefarm.ts?docs=full";

Represents information about the remote access session.

interface RemoteAccessSession {
arn?: string | null;
billingMethod?: BillingMethod | null;
clientId?: string | null;
created?: Date | number | null;
device?: Device | null;
deviceMinutes?: DeviceMinutes | null;
deviceUdid?: string | null;
endpoint?: string | null;
hostAddress?: string | null;
instanceArn?: string | null;
interactionMode?: InteractionMode | null;
message?: string | null;
name?: string | null;
remoteDebugEnabled?: boolean | null;
remoteRecordAppArn?: string | null;
remoteRecordEnabled?: boolean | null;
result?: ExecutionResult | null;
skipAppResign?: boolean | null;
started?: Date | number | null;
status?: ExecutionStatus | null;
stopped?: Date | number | null;
vpcConfig?: VpcConfig | null;
}

§Properties

§
arn?: string | null
[src]

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

§
billingMethod?: BillingMethod | null
[src]

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.

§
clientId?: string | null
[src]

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.

§
created?: Date | number | null
[src]

The date and time the remote access session was created.

§
device?: Device | null
[src]

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

§
deviceMinutes?: DeviceMinutes | null
[src]

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

§
deviceUdid?: string | null
[src]

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.

§
endpoint?: string | null
[src]

The endpoint for the remote access sesssion.

§
hostAddress?: string | null
[src]

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.

§
instanceArn?: string | null
[src]

The ARN of the instance.

§
interactionMode?: InteractionMode | null
[src]

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

  • INTERACTIVE: You can interact with the iOS device by viewing, touching, and rotating the screen. You cannot run XCUITest framework-based tests in this mode.
  • NO_VIDEO: You are connected to the device, but cannot interact with it or view the screen. This mode has the fastest test execution speed. You can run XCUITest framework-based tests in this mode.
  • VIDEO_ONLY: You can view the screen, but cannot touch or rotate it. You can run XCUITest framework-based tests and watch the screen in this mode.
§
message?: string | null
[src]

A message about the remote access session.

§
name?: string | null
[src]

The name of the remote access session.

§
remoteDebugEnabled?: boolean | null
[src]

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

Remote debugging is no longer supported.

§
remoteRecordAppArn?: string | null
[src]

The ARN for the app to be recorded in the remote access session.

§
remoteRecordEnabled?: boolean | null
[src]

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

§
result?: ExecutionResult | null
[src]

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

  • PENDING.
  • PASSED.
  • WARNED.
  • FAILED.
  • SKIPPED.
  • ERRORED.
  • STOPPED.
§
skipAppResign?: boolean | null
[src]

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.

§
started?: Date | number | null
[src]

The date and time the remote access session was started.

§
status?: ExecutionStatus | null
[src]

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

  • PENDING.
  • PENDING_CONCURRENCY.
  • PENDING_DEVICE.
  • PROCESSING.
  • SCHEDULING.
  • PREPARING.
  • RUNNING.
  • COMPLETED.
  • STOPPING.
§
stopped?: Date | number | null
[src]

The date and time the remote access session was stopped.

§
vpcConfig?: VpcConfig | null
[src]

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