Class: Aws::DeviceFarm::Types::RemoteAccessEndpoints
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::RemoteAccessEndpoints
- 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
-
#interactive_endpoint ⇒ String
URL for viewing and interacting with the device during the remote access session.
-
#remote_driver_endpoint ⇒ String
URL for controlling the device using WebDriver-compliant clients, like Appium, during the remote access session.
Instance Attribute Details
#interactive_endpoint ⇒ String
URL for viewing and interacting with the device during the remote access session.
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_endpoint ⇒ String
URL for controlling the device using WebDriver-compliant clients, like Appium, during the remote access session.
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 |