Class: Aws::DeviceFarm::Types::RemoteAccessEndpoints

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-devicefarm/types.rb

Overview

Represents the remote endpoints for viewing and controlling a device during a remote access session.

Constant Summary collapse

SENSITIVE =
[:remote_driver_endpoint, :interactive_endpoint]

Instance Attribute Summary collapse

Instance Attribute Details

#interactive_endpointString

URL for viewing and interacting with the device during the remote access session.

Returns:

  • (String)


4267
4268
4269
4270
4271
4272
# File 'lib/aws-sdk-devicefarm/types.rb', line 4267

class RemoteAccessEndpoints < Struct.new(
  :remote_driver_endpoint,
  :interactive_endpoint)
  SENSITIVE = [:remote_driver_endpoint, :interactive_endpoint]
  include Aws::Structure
end

#remote_driver_endpointString

URL for controlling the device using WebDriver-compliant clients, like Appium, during the remote access session.

Returns:

  • (String)


4267
4268
4269
4270
4271
4272
# File 'lib/aws-sdk-devicefarm/types.rb', line 4267

class RemoteAccessEndpoints < Struct.new(
  :remote_driver_endpoint,
  :interactive_endpoint)
  SENSITIVE = [:remote_driver_endpoint, :interactive_endpoint]
  include Aws::Structure
end