/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace MachineLearning { namespace Model { /** *

Represents the output of an UpdateEvaluation operation.

*

You can see the updated content by using the GetEvaluation * operation.

See Also:

AWS * API Reference

*/ class AWS_MACHINELEARNING_API UpdateEvaluationResult { public: UpdateEvaluationResult(); UpdateEvaluationResult(const Aws::AmazonWebServiceResult& result); UpdateEvaluationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID assigned to the Evaluation during creation. This value * should be identical to the value of the Evaluation in the * request.

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

The ID assigned to the Evaluation during creation. This value * should be identical to the value of the Evaluation in the * request.

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

The ID assigned to the Evaluation during creation. This value * should be identical to the value of the Evaluation in the * request.

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

The ID assigned to the Evaluation during creation. This value * should be identical to the value of the Evaluation in the * request.

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

The ID assigned to the Evaluation during creation. This value * should be identical to the value of the Evaluation in the * request.

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

The ID assigned to the Evaluation during creation. This value * should be identical to the value of the Evaluation in the * request.

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

The ID assigned to the Evaluation during creation. This value * should be identical to the value of the Evaluation in the * request.

*/ inline UpdateEvaluationResult& WithEvaluationId(const char* value) { SetEvaluationId(value); return *this;} private: Aws::String m_evaluationId; }; } // namespace Model } // namespace MachineLearning } // namespace Aws