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/StopProjectVersionResult.h

68 lines
1.7 KiB
C++

/**
* 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 StopProjectVersionResult
{
public:
StopProjectVersionResult();
StopProjectVersionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
StopProjectVersionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The current status of the stop operation. </p>
*/
inline const ProjectVersionStatus& GetStatus() const{ return m_status; }
/**
* <p>The current status of the stop operation. </p>
*/
inline void SetStatus(const ProjectVersionStatus& value) { m_status = value; }
/**
* <p>The current status of the stop operation. </p>
*/
inline void SetStatus(ProjectVersionStatus&& value) { m_status = std::move(value); }
/**
* <p>The current status of the stop operation. </p>
*/
inline StopProjectVersionResult& WithStatus(const ProjectVersionStatus& value) { SetStatus(value); return *this;}
/**
* <p>The current status of the stop operation. </p>
*/
inline StopProjectVersionResult& WithStatus(ProjectVersionStatus&& value) { SetStatus(std::move(value)); return *this;}
private:
ProjectVersionStatus m_status;
};
} // namespace Model
} // namespace Rekognition
} // namespace Aws