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-machinelearning/include/aws/machinelearning/model/CreateEvaluationResult.h

101 lines
3.5 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/machinelearning/MachineLearning_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace MachineLearning
{
namespace Model
{
/**
* <p> Represents the output of a <code>CreateEvaluation</code> operation, and is
* an acknowledgement that Amazon ML received the request.</p>
* <p><code>CreateEvaluation</code> operation is asynchronous. You can poll for
* status updates by using the <code>GetEvcaluation</code> operation and checking
* the <code>Status</code> parameter. </p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/machinelearning-2014-12-12/CreateEvaluationOutput">AWS
* API Reference</a></p>
*/
class AWS_MACHINELEARNING_API CreateEvaluationResult
{
public:
CreateEvaluationResult();
CreateEvaluationResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateEvaluationResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The user-supplied ID that uniquely identifies the <code>Evaluation</code>.
* This value should be identical to the value of the <code>EvaluationId</code> in
* the request.</p>
*/
inline const Aws::String& GetEvaluationId() const{ return m_evaluationId; }
/**
* <p>The user-supplied ID that uniquely identifies the <code>Evaluation</code>.
* This value should be identical to the value of the <code>EvaluationId</code> in
* the request.</p>
*/
inline void SetEvaluationId(const Aws::String& value) { m_evaluationId = value; }
/**
* <p>The user-supplied ID that uniquely identifies the <code>Evaluation</code>.
* This value should be identical to the value of the <code>EvaluationId</code> in
* the request.</p>
*/
inline void SetEvaluationId(Aws::String&& value) { m_evaluationId = std::move(value); }
/**
* <p>The user-supplied ID that uniquely identifies the <code>Evaluation</code>.
* This value should be identical to the value of the <code>EvaluationId</code> in
* the request.</p>
*/
inline void SetEvaluationId(const char* value) { m_evaluationId.assign(value); }
/**
* <p>The user-supplied ID that uniquely identifies the <code>Evaluation</code>.
* This value should be identical to the value of the <code>EvaluationId</code> in
* the request.</p>
*/
inline CreateEvaluationResult& WithEvaluationId(const Aws::String& value) { SetEvaluationId(value); return *this;}
/**
* <p>The user-supplied ID that uniquely identifies the <code>Evaluation</code>.
* This value should be identical to the value of the <code>EvaluationId</code> in
* the request.</p>
*/
inline CreateEvaluationResult& WithEvaluationId(Aws::String&& value) { SetEvaluationId(std::move(value)); return *this;}
/**
* <p>The user-supplied ID that uniquely identifies the <code>Evaluation</code>.
* This value should be identical to the value of the <code>EvaluationId</code> in
* the request.</p>
*/
inline CreateEvaluationResult& WithEvaluationId(const char* value) { SetEvaluationId(value); return *this;}
private:
Aws::String m_evaluationId;
};
} // namespace Model
} // namespace MachineLearning
} // namespace Aws