68 lines
1.8 KiB
C++
68 lines
1.8 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/TestGridProject.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 UpdateTestGridProjectResult
|
|
{
|
|
public:
|
|
UpdateTestGridProjectResult();
|
|
UpdateTestGridProjectResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
UpdateTestGridProjectResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The project, including updated information.</p>
|
|
*/
|
|
inline const TestGridProject& GetTestGridProject() const{ return m_testGridProject; }
|
|
|
|
/**
|
|
* <p>The project, including updated information.</p>
|
|
*/
|
|
inline void SetTestGridProject(const TestGridProject& value) { m_testGridProject = value; }
|
|
|
|
/**
|
|
* <p>The project, including updated information.</p>
|
|
*/
|
|
inline void SetTestGridProject(TestGridProject&& value) { m_testGridProject = std::move(value); }
|
|
|
|
/**
|
|
* <p>The project, including updated information.</p>
|
|
*/
|
|
inline UpdateTestGridProjectResult& WithTestGridProject(const TestGridProject& value) { SetTestGridProject(value); return *this;}
|
|
|
|
/**
|
|
* <p>The project, including updated information.</p>
|
|
*/
|
|
inline UpdateTestGridProjectResult& WithTestGridProject(TestGridProject&& value) { SetTestGridProject(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
TestGridProject m_testGridProject;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DeviceFarm
|
|
} // namespace Aws
|