[][src]Struct rusoto_devicefarm::CreateRemoteAccessSessionRequest

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

client_id: Option<String>

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.

configuration: Option<CreateRemoteAccessSessionConfiguration>

The configuration information for the remote access session request.

device_arn: String

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

instance_arn: Option<String>

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

interaction_mode: Option<String>

The interaction mode of the remote access session. Valid values are:

name: Option<String>

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

project_arn: String

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

remote_debug_enabled: Option<bool>

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

remote_record_app_arn: Option<String>

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

remote_record_enabled: Option<bool>

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

skip_app_resign: Option<bool>

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.

ssh_public_key: Option<String>

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 PartialEq<CreateRemoteAccessSessionRequest> for CreateRemoteAccessSessionRequest[src]

impl Default for CreateRemoteAccessSessionRequest[src]

impl Clone for CreateRemoteAccessSessionRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateRemoteAccessSessionRequest[src]

impl Serialize for CreateRemoteAccessSessionRequest[src]

Auto Trait Implementations

impl Send for CreateRemoteAccessSessionRequest

impl Sync for CreateRemoteAccessSessionRequest

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self