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

138 lines
5.0 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 UpdateEvaluationRequest : public MachineLearningRequest
{
public:
UpdateEvaluationRequest();
// 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 "UpdateEvaluation"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The ID assigned to the <code>Evaluation</code> during creation.</p>
*/
inline const Aws::String& GetEvaluationId() const{ return m_evaluationId; }
/**
* <p>The ID assigned to the <code>Evaluation</code> during creation.</p>
*/
inline bool EvaluationIdHasBeenSet() const { return m_evaluationIdHasBeenSet; }
/**
* <p>The ID assigned to the <code>Evaluation</code> during creation.</p>
*/
inline void SetEvaluationId(const Aws::String& value) { m_evaluationIdHasBeenSet = true; m_evaluationId = value; }
/**
* <p>The ID assigned to the <code>Evaluation</code> during creation.</p>
*/
inline void SetEvaluationId(Aws::String&& value) { m_evaluationIdHasBeenSet = true; m_evaluationId = std::move(value); }
/**
* <p>The ID assigned to the <code>Evaluation</code> during creation.</p>
*/
inline void SetEvaluationId(const char* value) { m_evaluationIdHasBeenSet = true; m_evaluationId.assign(value); }
/**
* <p>The ID assigned to the <code>Evaluation</code> during creation.</p>
*/
inline UpdateEvaluationRequest& WithEvaluationId(const Aws::String& value) { SetEvaluationId(value); return *this;}
/**
* <p>The ID assigned to the <code>Evaluation</code> during creation.</p>
*/
inline UpdateEvaluationRequest& WithEvaluationId(Aws::String&& value) { SetEvaluationId(std::move(value)); return *this;}
/**
* <p>The ID assigned to the <code>Evaluation</code> during creation.</p>
*/
inline UpdateEvaluationRequest& WithEvaluationId(const char* value) { SetEvaluationId(value); return *this;}
/**
* <p>A new user-supplied name or description of the <code>Evaluation</code> that
* will replace the current content. </p>
*/
inline const Aws::String& GetEvaluationName() const{ return m_evaluationName; }
/**
* <p>A new user-supplied name or description of the <code>Evaluation</code> that
* will replace the current content. </p>
*/
inline bool EvaluationNameHasBeenSet() const { return m_evaluationNameHasBeenSet; }
/**
* <p>A new user-supplied name or description of the <code>Evaluation</code> that
* will replace the current content. </p>
*/
inline void SetEvaluationName(const Aws::String& value) { m_evaluationNameHasBeenSet = true; m_evaluationName = value; }
/**
* <p>A new user-supplied name or description of the <code>Evaluation</code> that
* will replace the current content. </p>
*/
inline void SetEvaluationName(Aws::String&& value) { m_evaluationNameHasBeenSet = true; m_evaluationName = std::move(value); }
/**
* <p>A new user-supplied name or description of the <code>Evaluation</code> that
* will replace the current content. </p>
*/
inline void SetEvaluationName(const char* value) { m_evaluationNameHasBeenSet = true; m_evaluationName.assign(value); }
/**
* <p>A new user-supplied name or description of the <code>Evaluation</code> that
* will replace the current content. </p>
*/
inline UpdateEvaluationRequest& WithEvaluationName(const Aws::String& value) { SetEvaluationName(value); return *this;}
/**
* <p>A new user-supplied name or description of the <code>Evaluation</code> that
* will replace the current content. </p>
*/
inline UpdateEvaluationRequest& WithEvaluationName(Aws::String&& value) { SetEvaluationName(std::move(value)); return *this;}
/**
* <p>A new user-supplied name or description of the <code>Evaluation</code> that
* will replace the current content. </p>
*/
inline UpdateEvaluationRequest& WithEvaluationName(const char* value) { SetEvaluationName(value); return *this;}
private:
Aws::String m_evaluationId;
bool m_evaluationIdHasBeenSet;
Aws::String m_evaluationName;
bool m_evaluationNameHasBeenSet;
};
} // namespace Model
} // namespace MachineLearning
} // namespace Aws