/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include 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.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the remote access session about which you * are requesting information.
*/ inline const Aws::String& GetRemoteAccessSessionArn() const{ return m_remoteAccessSessionArn; } /** *The Amazon Resource Name (ARN) of the remote access session about which you * are requesting information.
*/ inline bool RemoteAccessSessionArnHasBeenSet() const { return m_remoteAccessSessionArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the remote access session about which you * are requesting information.
*/ inline void SetRemoteAccessSessionArn(const Aws::String& value) { m_remoteAccessSessionArnHasBeenSet = true; m_remoteAccessSessionArn = value; } /** *The Amazon Resource Name (ARN) of the remote access session about which you * are requesting information.
*/ inline void SetRemoteAccessSessionArn(Aws::String&& value) { m_remoteAccessSessionArnHasBeenSet = true; m_remoteAccessSessionArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the remote access session about which you * are requesting information.
*/ inline void SetRemoteAccessSessionArn(const char* value) { m_remoteAccessSessionArnHasBeenSet = true; m_remoteAccessSessionArn.assign(value); } /** *The Amazon Resource Name (ARN) of the remote access session about which you * are requesting information.
*/ inline InstallToRemoteAccessSessionRequest& WithRemoteAccessSessionArn(const Aws::String& value) { SetRemoteAccessSessionArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the remote access session about which you * are requesting information.
*/ inline InstallToRemoteAccessSessionRequest& WithRemoteAccessSessionArn(Aws::String&& value) { SetRemoteAccessSessionArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the remote access session about which you * are requesting information.
*/ inline InstallToRemoteAccessSessionRequest& WithRemoteAccessSessionArn(const char* value) { SetRemoteAccessSessionArn(value); return *this;} /** *The ARN of the app about which you are requesting information.
*/ inline const Aws::String& GetAppArn() const{ return m_appArn; } /** *The ARN of the app about which you are requesting information.
*/ inline bool AppArnHasBeenSet() const { return m_appArnHasBeenSet; } /** *The ARN of the app about which you are requesting information.
*/ inline void SetAppArn(const Aws::String& value) { m_appArnHasBeenSet = true; m_appArn = value; } /** *The ARN of the app about which you are requesting information.
*/ inline void SetAppArn(Aws::String&& value) { m_appArnHasBeenSet = true; m_appArn = std::move(value); } /** *The ARN of the app about which you are requesting information.
*/ inline void SetAppArn(const char* value) { m_appArnHasBeenSet = true; m_appArn.assign(value); } /** *The ARN of the app about which you are requesting information.
*/ inline InstallToRemoteAccessSessionRequest& WithAppArn(const Aws::String& value) { SetAppArn(value); return *this;} /** *The ARN of the app about which you are requesting information.
*/ inline InstallToRemoteAccessSessionRequest& WithAppArn(Aws::String&& value) { SetAppArn(std::move(value)); return *this;} /** *The ARN of the app about which you are requesting information.
*/ inline InstallToRemoteAccessSessionRequest& WithAppArn(const char* value) { SetAppArn(value); return *this;} private: Aws::String m_remoteAccessSessionArn; bool m_remoteAccessSessionArnHasBeenSet = false; Aws::String m_appArn; bool m_appArnHasBeenSet = false; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws