102 lines
3.8 KiB
C++
102 lines
3.8 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/machinelearning/MachineLearningRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace MachineLearning
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_MACHINELEARNING_API GetEvaluationRequest : public MachineLearningRequest
|
|
{
|
|
public:
|
|
GetEvaluationRequest();
|
|
|
|
// Service request name is the Operation name which will send this request out,
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|
// so we can not get operation's name from response.
|
|
inline virtual const char* GetServiceRequestName() const override { return "GetEvaluation"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The ID of the <code>Evaluation</code> to retrieve. The evaluation of each
|
|
* <code>MLModel</code> is recorded and cataloged. The ID provides the means to
|
|
* access the information. </p>
|
|
*/
|
|
inline const Aws::String& GetEvaluationId() const{ return m_evaluationId; }
|
|
|
|
/**
|
|
* <p>The ID of the <code>Evaluation</code> to retrieve. The evaluation of each
|
|
* <code>MLModel</code> is recorded and cataloged. The ID provides the means to
|
|
* access the information. </p>
|
|
*/
|
|
inline bool EvaluationIdHasBeenSet() const { return m_evaluationIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the <code>Evaluation</code> to retrieve. The evaluation of each
|
|
* <code>MLModel</code> is recorded and cataloged. The ID provides the means to
|
|
* access the information. </p>
|
|
*/
|
|
inline void SetEvaluationId(const Aws::String& value) { m_evaluationIdHasBeenSet = true; m_evaluationId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the <code>Evaluation</code> to retrieve. The evaluation of each
|
|
* <code>MLModel</code> is recorded and cataloged. The ID provides the means to
|
|
* access the information. </p>
|
|
*/
|
|
inline void SetEvaluationId(Aws::String&& value) { m_evaluationIdHasBeenSet = true; m_evaluationId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the <code>Evaluation</code> to retrieve. The evaluation of each
|
|
* <code>MLModel</code> is recorded and cataloged. The ID provides the means to
|
|
* access the information. </p>
|
|
*/
|
|
inline void SetEvaluationId(const char* value) { m_evaluationIdHasBeenSet = true; m_evaluationId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the <code>Evaluation</code> to retrieve. The evaluation of each
|
|
* <code>MLModel</code> is recorded and cataloged. The ID provides the means to
|
|
* access the information. </p>
|
|
*/
|
|
inline GetEvaluationRequest& WithEvaluationId(const Aws::String& value) { SetEvaluationId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the <code>Evaluation</code> to retrieve. The evaluation of each
|
|
* <code>MLModel</code> is recorded and cataloged. The ID provides the means to
|
|
* access the information. </p>
|
|
*/
|
|
inline GetEvaluationRequest& WithEvaluationId(Aws::String&& value) { SetEvaluationId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the <code>Evaluation</code> to retrieve. The evaluation of each
|
|
* <code>MLModel</code> is recorded and cataloged. The ID provides the means to
|
|
* access the information. </p>
|
|
*/
|
|
inline GetEvaluationRequest& WithEvaluationId(const char* value) { SetEvaluationId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_evaluationId;
|
|
bool m_evaluationIdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace MachineLearning
|
|
} // namespace Aws
|