Struct rusoto_devicefarm::CreateRemoteAccessSessionRequest[][src]

pub struct CreateRemoteAccessSessionRequest {
    pub client_id: Option<String>,
    pub configuration: Option<CreateRemoteAccessSessionConfiguration>,
    pub device_arn: String,
    pub instance_arn: Option<String>,
    pub interaction_mode: Option<String>,
    pub name: Option<String>,
    pub project_arn: String,
    pub remote_debug_enabled: Option<bool>,
    pub remote_record_app_arn: Option<String>,
    pub remote_record_enabled: Option<bool>,
    pub skip_app_resign: Option<bool>,
    pub ssh_public_key: Option<String>,
}

Creates and submits a request to start a remote access session.

Fields

Unique identifier for the client. If you want access to multiple devices on the same client, you should pass the same clientId value in each call to CreateRemoteAccessSession. This is required only if remoteDebugEnabled is set to true.

The configuration information for the remote access session request.

The Amazon Resource Name (ARN) of the device for which you want to create a remote access session.

The Amazon Resource Name (ARN) of the device instance for which you want to create a remote access session.

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.

  • NOVIDEO: 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.

  • VIDEOONLY: 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.

The name of the remote access session that you wish to create.

The Amazon Resource Name (ARN) of the project for which you want to create a remote access session.

Set to true if you want to access devices remotely for debugging in your remote access session.

The Amazon Resource Name (ARN) for the app to be recorded in the remote access session.

Set to true to enable remote recording for the remote access session.

When set to true, for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

For more information about how Device Farm re-signs your app(s), see Do you modify my app? in the AWS Device Farm FAQs.

The public key of the ssh key pair you want to use for connecting to remote devices in your remote debugging session. This is only required if remoteDebugEnabled is set to true.

Trait Implementations

impl Default for CreateRemoteAccessSessionRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateRemoteAccessSessionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateRemoteAccessSessionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateRemoteAccessSessionRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations