Struct rusoto_devicefarm::CreateRemoteAccessSessionRequest [] [src]

pub struct CreateRemoteAccessSessionRequest {
    pub client_id: Option<String>,
    pub configuration: Option<CreateRemoteAccessSessionConfiguration>,
    pub device_arn: String,
    pub name: Option<String>,
    pub project_arn: String,
    pub remote_debug_enabled: 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 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 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 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]

[src]

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

impl Debug for CreateRemoteAccessSessionRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateRemoteAccessSessionRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations