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

The current running status of the model.

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

The current running status of the model.

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

The current running status of the model.

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

The current running status of the model.

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

The current running status of the model.

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