/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace IoT1ClickProjects { namespace Model { class AWS_IOT1CLICKPROJECTS_API DescribeProjectResult { public: DescribeProjectResult(); DescribeProjectResult(const Aws::AmazonWebServiceResult& result); DescribeProjectResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An object describing the project.

*/ inline const ProjectDescription& GetProject() const{ return m_project; } /** *

An object describing the project.

*/ inline void SetProject(const ProjectDescription& value) { m_project = value; } /** *

An object describing the project.

*/ inline void SetProject(ProjectDescription&& value) { m_project = std::move(value); } /** *

An object describing the project.

*/ inline DescribeProjectResult& WithProject(const ProjectDescription& value) { SetProject(value); return *this;} /** *

An object describing the project.

*/ inline DescribeProjectResult& WithProject(ProjectDescription&& value) { SetProject(std::move(value)); return *this;} private: ProjectDescription m_project; }; } // namespace Model } // namespace IoT1ClickProjects } // namespace Aws