/** * 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 Glue { namespace Model { class AWS_GLUE_API StartMLEvaluationTaskRunResult { public: StartMLEvaluationTaskRunResult(); StartMLEvaluationTaskRunResult(const Aws::AmazonWebServiceResult& result); StartMLEvaluationTaskRunResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The unique identifier associated with this run.

*/ inline const Aws::String& GetTaskRunId() const{ return m_taskRunId; } /** *

The unique identifier associated with this run.

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

The unique identifier associated with this run.

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

The unique identifier associated with this run.

*/ inline void SetTaskRunId(const char* value) { m_taskRunId.assign(value); } /** *

The unique identifier associated with this run.

*/ inline StartMLEvaluationTaskRunResult& WithTaskRunId(const Aws::String& value) { SetTaskRunId(value); return *this;} /** *

The unique identifier associated with this run.

*/ inline StartMLEvaluationTaskRunResult& WithTaskRunId(Aws::String&& value) { SetTaskRunId(std::move(value)); return *this;} /** *

The unique identifier associated with this run.

*/ inline StartMLEvaluationTaskRunResult& WithTaskRunId(const char* value) { SetTaskRunId(value); return *this;} private: Aws::String m_taskRunId; }; } // namespace Model } // namespace Glue } // namespace Aws