/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the result of an update device pool request.See
* Also:
AWS
* API Reference
The device pool you just updated.
*/ inline const DevicePool& GetDevicePool() const{ return m_devicePool; } /** *The device pool you just updated.
*/ inline void SetDevicePool(const DevicePool& value) { m_devicePool = value; } /** *The device pool you just updated.
*/ inline void SetDevicePool(DevicePool&& value) { m_devicePool = std::move(value); } /** *The device pool you just updated.
*/ inline UpdateDevicePoolResult& WithDevicePool(const DevicePool& value) { SetDevicePool(value); return *this;} /** *The device pool you just updated.
*/ inline UpdateDevicePoolResult& WithDevicePool(DevicePool&& value) { SetDevicePool(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 UpdateDevicePoolResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateDevicePoolResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateDevicePoolResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DevicePool m_devicePool; Aws::String m_requestId; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws