/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace MachineLearning { namespace Model { /** */ class UpdateEvaluationRequest : public MachineLearningRequest { public: AWS_MACHINELEARNING_API 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_MACHINELEARNING_API Aws::String SerializePayload() const override; AWS_MACHINELEARNING_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ID assigned to the Evaluation during creation.

*/ inline const Aws::String& GetEvaluationId() const{ return m_evaluationId; } /** *

The ID assigned to the Evaluation during creation.

*/ inline bool EvaluationIdHasBeenSet() const { return m_evaluationIdHasBeenSet; } /** *

The ID assigned to the Evaluation during creation.

*/ inline void SetEvaluationId(const Aws::String& value) { m_evaluationIdHasBeenSet = true; m_evaluationId = value; } /** *

The ID assigned to the Evaluation during creation.

*/ inline void SetEvaluationId(Aws::String&& value) { m_evaluationIdHasBeenSet = true; m_evaluationId = std::move(value); } /** *

The ID assigned to the Evaluation during creation.

*/ inline void SetEvaluationId(const char* value) { m_evaluationIdHasBeenSet = true; m_evaluationId.assign(value); } /** *

The ID assigned to the Evaluation during creation.

*/ inline UpdateEvaluationRequest& WithEvaluationId(const Aws::String& value) { SetEvaluationId(value); return *this;} /** *

The ID assigned to the Evaluation during creation.

*/ inline UpdateEvaluationRequest& WithEvaluationId(Aws::String&& value) { SetEvaluationId(std::move(value)); return *this;} /** *

The ID assigned to the Evaluation during creation.

*/ inline UpdateEvaluationRequest& WithEvaluationId(const char* value) { SetEvaluationId(value); return *this;} /** *

A new user-supplied name or description of the Evaluation that * will replace the current content.

*/ inline const Aws::String& GetEvaluationName() const{ return m_evaluationName; } /** *

A new user-supplied name or description of the Evaluation that * will replace the current content.

*/ inline bool EvaluationNameHasBeenSet() const { return m_evaluationNameHasBeenSet; } /** *

A new user-supplied name or description of the Evaluation that * will replace the current content.

*/ inline void SetEvaluationName(const Aws::String& value) { m_evaluationNameHasBeenSet = true; m_evaluationName = value; } /** *

A new user-supplied name or description of the Evaluation that * will replace the current content.

*/ inline void SetEvaluationName(Aws::String&& value) { m_evaluationNameHasBeenSet = true; m_evaluationName = std::move(value); } /** *

A new user-supplied name or description of the Evaluation that * will replace the current content.

*/ inline void SetEvaluationName(const char* value) { m_evaluationNameHasBeenSet = true; m_evaluationName.assign(value); } /** *

A new user-supplied name or description of the Evaluation that * will replace the current content.

*/ inline UpdateEvaluationRequest& WithEvaluationName(const Aws::String& value) { SetEvaluationName(value); return *this;} /** *

A new user-supplied name or description of the Evaluation that * will replace the current content.

*/ inline UpdateEvaluationRequest& WithEvaluationName(Aws::String&& value) { SetEvaluationName(std::move(value)); return *this;} /** *

A new user-supplied name or description of the Evaluation that * will replace the current content.

*/ inline UpdateEvaluationRequest& WithEvaluationName(const char* value) { SetEvaluationName(value); return *this;} private: Aws::String m_evaluationId; bool m_evaluationIdHasBeenSet = false; Aws::String m_evaluationName; bool m_evaluationNameHasBeenSet = false; }; } // namespace Model } // namespace MachineLearning } // namespace Aws