[−][src]Struct rusoto_devicefarm::CreateRemoteAccessSessionRequest
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:
-
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.
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]
fn eq(&self, other: &CreateRemoteAccessSessionRequest) -> bool
[src]
fn ne(&self, other: &CreateRemoteAccessSessionRequest) -> bool
[src]
impl Default for CreateRemoteAccessSessionRequest
[src]
impl Clone for CreateRemoteAccessSessionRequest
[src]
fn clone(&self) -> 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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self