74 lines
1.8 KiB
C++
74 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/Project.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
|
|
{
|
|
/**
|
|
* <p>Represents the result of a create project request.</p><p><h3>See Also:</h3>
|
|
* <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateProjectResult">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_DEVICEFARM_API CreateProjectResult
|
|
{
|
|
public:
|
|
CreateProjectResult();
|
|
CreateProjectResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
CreateProjectResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The newly created project.</p>
|
|
*/
|
|
inline const Project& GetProject() const{ return m_project; }
|
|
|
|
/**
|
|
* <p>The newly created project.</p>
|
|
*/
|
|
inline void SetProject(const Project& value) { m_project = value; }
|
|
|
|
/**
|
|
* <p>The newly created project.</p>
|
|
*/
|
|
inline void SetProject(Project&& value) { m_project = std::move(value); }
|
|
|
|
/**
|
|
* <p>The newly created project.</p>
|
|
*/
|
|
inline CreateProjectResult& WithProject(const Project& value) { SetProject(value); return *this;}
|
|
|
|
/**
|
|
* <p>The newly created project.</p>
|
|
*/
|
|
inline CreateProjectResult& WithProject(Project&& value) { SetProject(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Project m_project;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DeviceFarm
|
|
} // namespace Aws
|