/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #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 GetUserDefinedFunctionsResult { public: GetUserDefinedFunctionsResult(); GetUserDefinedFunctionsResult(const Aws::AmazonWebServiceResult& result); GetUserDefinedFunctionsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list of requested function definitions.

*/ inline const Aws::Vector& GetUserDefinedFunctions() const{ return m_userDefinedFunctions; } /** *

A list of requested function definitions.

*/ inline void SetUserDefinedFunctions(const Aws::Vector& value) { m_userDefinedFunctions = value; } /** *

A list of requested function definitions.

*/ inline void SetUserDefinedFunctions(Aws::Vector&& value) { m_userDefinedFunctions = std::move(value); } /** *

A list of requested function definitions.

*/ inline GetUserDefinedFunctionsResult& WithUserDefinedFunctions(const Aws::Vector& value) { SetUserDefinedFunctions(value); return *this;} /** *

A list of requested function definitions.

*/ inline GetUserDefinedFunctionsResult& WithUserDefinedFunctions(Aws::Vector&& value) { SetUserDefinedFunctions(std::move(value)); return *this;} /** *

A list of requested function definitions.

*/ inline GetUserDefinedFunctionsResult& AddUserDefinedFunctions(const UserDefinedFunction& value) { m_userDefinedFunctions.push_back(value); return *this; } /** *

A list of requested function definitions.

*/ inline GetUserDefinedFunctionsResult& AddUserDefinedFunctions(UserDefinedFunction&& value) { m_userDefinedFunctions.push_back(std::move(value)); return *this; } /** *

A continuation token, if the list of functions returned does not include the * last requested function.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

A continuation token, if the list of functions returned does not include the * last requested function.

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

A continuation token, if the list of functions returned does not include the * last requested function.

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

A continuation token, if the list of functions returned does not include the * last requested function.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

A continuation token, if the list of functions returned does not include the * last requested function.

*/ inline GetUserDefinedFunctionsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

A continuation token, if the list of functions returned does not include the * last requested function.

*/ inline GetUserDefinedFunctionsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

A continuation token, if the list of functions returned does not include the * last requested function.

*/ inline GetUserDefinedFunctionsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector m_userDefinedFunctions; Aws::String m_nextToken; }; } // namespace Model } // namespace Glue } // namespace Aws