This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-rekognition/include/aws/rekognition/model/StartProjectVersionResult.h

68 lines
1.7 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/rekognition/Rekognition_EXPORTS.h>
#include <aws/rekognition/model/ProjectVersionStatus.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
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<Aws::Utils::Json::JsonValue>& result);
StartProjectVersionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The current running status of the model. </p>
*/
inline const ProjectVersionStatus& GetStatus() const{ return m_status; }
/**
* <p>The current running status of the model. </p>
*/
inline void SetStatus(const ProjectVersionStatus& value) { m_status = value; }
/**
* <p>The current running status of the model. </p>
*/
inline void SetStatus(ProjectVersionStatus&& value) { m_status = std::move(value); }
/**
* <p>The current running status of the model. </p>
*/
inline StartProjectVersionResult& WithStatus(const ProjectVersionStatus& value) { SetStatus(value); return *this;}
/**
* <p>The current running status of the model. </p>
*/
inline StartProjectVersionResult& WithStatus(ProjectVersionStatus&& value) { SetStatus(std::move(value)); return *this;}
private:
ProjectVersionStatus m_status;
};
} // namespace Model
} // namespace Rekognition
} // namespace Aws