/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the response from the server after AWS Device Farm makes a request
* to install to a remote access session.See Also:
AWS
* API Reference
An app to upload or that has been uploaded.
*/ inline const Upload& GetAppUpload() const{ return m_appUpload; } /** *An app to upload or that has been uploaded.
*/ inline void SetAppUpload(const Upload& value) { m_appUpload = value; } /** *An app to upload or that has been uploaded.
*/ inline void SetAppUpload(Upload&& value) { m_appUpload = std::move(value); } /** *An app to upload or that has been uploaded.
*/ inline InstallToRemoteAccessSessionResult& WithAppUpload(const Upload& value) { SetAppUpload(value); return *this;} /** *An app to upload or that has been uploaded.
*/ inline InstallToRemoteAccessSessionResult& WithAppUpload(Upload&& value) { SetAppUpload(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline InstallToRemoteAccessSessionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline InstallToRemoteAccessSessionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline InstallToRemoteAccessSessionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Upload m_appUpload; Aws::String m_requestId; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws