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

A Python script to perform the mapping.

*/ inline const Aws::String& GetPythonScript() const{ return m_pythonScript; } /** *

A Python script to perform the mapping.

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

A Python script to perform the mapping.

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

A Python script to perform the mapping.

*/ inline void SetPythonScript(const char* value) { m_pythonScript.assign(value); } /** *

A Python script to perform the mapping.

*/ inline GetPlanResult& WithPythonScript(const Aws::String& value) { SetPythonScript(value); return *this;} /** *

A Python script to perform the mapping.

*/ inline GetPlanResult& WithPythonScript(Aws::String&& value) { SetPythonScript(std::move(value)); return *this;} /** *

A Python script to perform the mapping.

*/ inline GetPlanResult& WithPythonScript(const char* value) { SetPythonScript(value); return *this;} /** *

The Scala code to perform the mapping.

*/ inline const Aws::String& GetScalaCode() const{ return m_scalaCode; } /** *

The Scala code to perform the mapping.

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

The Scala code to perform the mapping.

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

The Scala code to perform the mapping.

*/ inline void SetScalaCode(const char* value) { m_scalaCode.assign(value); } /** *

The Scala code to perform the mapping.

*/ inline GetPlanResult& WithScalaCode(const Aws::String& value) { SetScalaCode(value); return *this;} /** *

The Scala code to perform the mapping.

*/ inline GetPlanResult& WithScalaCode(Aws::String&& value) { SetScalaCode(std::move(value)); return *this;} /** *

The Scala code to perform the mapping.

*/ inline GetPlanResult& WithScalaCode(const char* value) { SetScalaCode(value); return *this;} private: Aws::String m_pythonScript; Aws::String m_scalaCode; }; } // namespace Model } // namespace Glue } // namespace Aws