/**
* 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;} private: Upload m_appUpload; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws