pub struct InstallToRemoteAccessSessionRequest {
pub app_arn: String,
pub remote_access_session_arn: String,
}Expand description
Represents the request to install an Android application (in .apk format) or an iOS application (in .ipa format) as part of a remote access session.
Fields§
§app_arn: StringThe ARN of the app about which you are requesting information.
remote_access_session_arn: StringThe Amazon Resource Name (ARN) of the remote access session about which you are requesting information.
Trait Implementations§
Source§impl Clone for InstallToRemoteAccessSessionRequest
impl Clone for InstallToRemoteAccessSessionRequest
Source§fn clone(&self) -> InstallToRemoteAccessSessionRequest
fn clone(&self) -> InstallToRemoteAccessSessionRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for InstallToRemoteAccessSessionRequest
impl Default for InstallToRemoteAccessSessionRequest
Source§fn default() -> InstallToRemoteAccessSessionRequest
fn default() -> InstallToRemoteAccessSessionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for InstallToRemoteAccessSessionRequest
impl PartialEq for InstallToRemoteAccessSessionRequest
Source§fn eq(&self, other: &InstallToRemoteAccessSessionRequest) -> bool
fn eq(&self, other: &InstallToRemoteAccessSessionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InstallToRemoteAccessSessionRequest
Auto Trait Implementations§
impl Freeze for InstallToRemoteAccessSessionRequest
impl RefUnwindSafe for InstallToRemoteAccessSessionRequest
impl Send for InstallToRemoteAccessSessionRequest
impl Sync for InstallToRemoteAccessSessionRequest
impl Unpin for InstallToRemoteAccessSessionRequest
impl UnwindSafe for InstallToRemoteAccessSessionRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more