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

The current status of the delete project operation.

*/ inline const ProjectStatus& GetStatus() const{ return m_status; } /** *

The current status of the delete project operation.

*/ inline void SetStatus(const ProjectStatus& value) { m_status = value; } /** *

The current status of the delete project operation.

*/ inline void SetStatus(ProjectStatus&& value) { m_status = std::move(value); } /** *

The current status of the delete project operation.

*/ inline DeleteProjectResult& WithStatus(const ProjectStatus& value) { SetStatus(value); return *this;} /** *

The current status of the delete project operation.

*/ inline DeleteProjectResult& WithStatus(ProjectStatus&& value) { SetStatus(std::move(value)); return *this;} private: ProjectStatus m_status; }; } // namespace Model } // namespace Rekognition } // namespace Aws