/** * 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 CodeBuild { namespace Model { class AWS_CODEBUILD_API UpdateProjectResult { public: UpdateProjectResult(); UpdateProjectResult(const Aws::AmazonWebServiceResult& result); UpdateProjectResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the build project that was changed.

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

Information about the build project that was changed.

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

Information about the build project that was changed.

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

Information about the build project that was changed.

*/ inline UpdateProjectResult& WithProject(const Project& value) { SetProject(value); return *this;} /** *

Information about the build project that was changed.

*/ inline UpdateProjectResult& WithProject(Project&& value) { SetProject(std::move(value)); return *this;} private: Project m_project; }; } // namespace Model } // namespace CodeBuild } // namespace Aws