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