RemoteAccessSession

public struct RemoteAccessSession : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • arn

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

    Declaration

    Swift

    public let arn: String?
  • 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.

    Declaration

    Swift

    public let billingMethod: BillingMethod?
  • 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.

    Declaration

    Swift

    public let clientId: String?
  • The date and time the remote access session was created.

    Declaration

    Swift

    public let created: TimeStamp?
  • The device (phone or tablet) used in the remote access session.

    Declaration

    Swift

    public let device: Device?
  • The number of minutes a device is used in a remote access session (including setup and teardown minutes).

    Declaration

    Swift

    public let deviceMinutes: DeviceMinutes?
  • 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.

    Declaration

    Swift

    public let deviceUdid: String?
  • The endpoint for the remote access sesssion.

    Declaration

    Swift

    public let endpoint: String?
  • 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.

    Declaration

    Swift

    public let hostAddress: String?
  • The ARN of the instance.

    Declaration

    Swift

    public let instanceArn: String?
  • 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.

    Declaration

    Swift

    public let interactionMode: InteractionMode?
  • A message about the remote access session.

    Declaration

    Swift

    public let message: String?
  • The name of the remote access session.

    Declaration

    Swift

    public let name: String?
  • This flag is set to true if remote debugging is enabled for the remote access session. Remote debugging is no longer supported.

    Declaration

    Swift

    public let remoteDebugEnabled: Bool?
  • The ARN for the app to be recorded in the remote access session.

    Declaration

    Swift

    public let remoteRecordAppArn: String?
  • This flag is set to true if remote recording is enabled for the remote access session.

    Declaration

    Swift

    public let remoteRecordEnabled: Bool?
  • The result of the remote access session. Can be any of the following: PENDING. PASSED. WARNED. FAILED. SKIPPED. ERRORED. STOPPED.

    Declaration

    Swift

    public let result: ExecutionResult?
  • 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.

    Declaration

    Swift

    public let skipAppResign: Bool?
  • The date and time the remote access session was started.

    Declaration

    Swift

    public let started: TimeStamp?
  • The status of the remote access session. Can be any of the following: PENDING. PENDING_CONCURRENCY. PENDING_DEVICE. PROCESSING. SCHEDULING. PREPARING. RUNNING. COMPLETED. STOPPING.

    Declaration

    Swift

    public let status: ExecutionStatus?
  • The date and time the remote access session was stopped.

    Declaration

    Swift

    public let stopped: TimeStamp?
  • Undocumented

    Declaration

    Swift

    public init(arn: String? = nil, billingMethod: BillingMethod? = nil, clientId: String? = nil, created: TimeStamp? = nil, device: Device? = nil, deviceMinutes: DeviceMinutes? = nil, deviceUdid: String? = nil, endpoint: String? = nil, hostAddress: String? = nil, instanceArn: String? = nil, interactionMode: InteractionMode? = nil, message: String? = nil, name: String? = nil, remoteDebugEnabled: Bool? = nil, remoteRecordAppArn: String? = nil, remoteRecordEnabled: Bool? = nil, result: ExecutionResult? = nil, skipAppResign: Bool? = nil, started: TimeStamp? = nil, status: ExecutionStatus? = nil, stopped: TimeStamp? = nil)