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

The unique identifier for the transform that was updated.

*/ inline const Aws::String& GetTransformId() const{ return m_transformId; } /** *

The unique identifier for the transform that was updated.

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

The unique identifier for the transform that was updated.

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

The unique identifier for the transform that was updated.

*/ inline void SetTransformId(const char* value) { m_transformId.assign(value); } /** *

The unique identifier for the transform that was updated.

*/ inline UpdateMLTransformResult& WithTransformId(const Aws::String& value) { SetTransformId(value); return *this;} /** *

The unique identifier for the transform that was updated.

*/ inline UpdateMLTransformResult& WithTransformId(Aws::String&& value) { SetTransformId(std::move(value)); return *this;} /** *

The unique identifier for the transform that was updated.

*/ inline UpdateMLTransformResult& WithTransformId(const char* value) { SetTransformId(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline UpdateMLTransformResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateMLTransformResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateMLTransformResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_transformId; Aws::String m_requestId; }; } // namespace Model } // namespace Glue } // namespace Aws