68 lines
1.9 KiB
C
68 lines
1.9 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/devicefarm/DeviceFarm_EXPORTS.h>
|
|||
|
|
#include <aws/devicefarm/model/DeviceInstance.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace DeviceFarm
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_DEVICEFARM_API UpdateDeviceInstanceResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
UpdateDeviceInstanceResult();
|
|||
|
|
UpdateDeviceInstanceResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
UpdateDeviceInstanceResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains information about your device instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline const DeviceInstance& GetDeviceInstance() const{ return m_deviceInstance; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains information about your device instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDeviceInstance(const DeviceInstance& value) { m_deviceInstance = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains information about your device instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDeviceInstance(DeviceInstance&& value) { m_deviceInstance = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains information about your device instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateDeviceInstanceResult& WithDeviceInstance(const DeviceInstance& value) { SetDeviceInstance(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains information about your device instance.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateDeviceInstanceResult& WithDeviceInstance(DeviceInstance&& value) { SetDeviceInstance(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
DeviceInstance m_deviceInstance;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace DeviceFarm
|
|||
|
|
} // namespace Aws
|