/** * 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 a DeleteEvaluation operation. The * output indicates that Amazon Machine Learning (Amazon ML) received the * request.

You can use the GetEvaluation operation and check * the value of the Status parameter to see whether an * Evaluation is marked as DELETED.

See * Also:

AWS * API Reference

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

A user-supplied ID that uniquely identifies the Evaluation. This * value should be identical to the value of the EvaluationId in the * request.

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

A user-supplied ID that uniquely identifies the Evaluation. This * value should be identical to the value of the EvaluationId in the * request.

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

A user-supplied ID that uniquely identifies the Evaluation. This * value should be identical to the value of the EvaluationId in the * request.

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

A user-supplied ID that uniquely identifies the Evaluation. This * value should be identical to the value of the EvaluationId in the * request.

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

A user-supplied ID that uniquely identifies the Evaluation. This * value should be identical to the value of the EvaluationId in the * request.

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

A user-supplied ID that uniquely identifies the Evaluation. This * value should be identical to the value of the EvaluationId in the * request.

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

A user-supplied ID that uniquely identifies the Evaluation. This * value should be identical to the value of the EvaluationId in the * request.

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