/** * 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 DeleteProjectVersionResult { public: DeleteProjectVersionResult(); DeleteProjectVersionResult(const Aws::AmazonWebServiceResult& result); DeleteProjectVersionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The status of the deletion operation.

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

The status of the deletion operation.

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

The status of the deletion operation.

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

The status of the deletion operation.

*/ inline DeleteProjectVersionResult& WithStatus(const ProjectVersionStatus& value) { SetStatus(value); return *this;} /** *

The status of the deletion operation.

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