This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-glue/include/aws/glue/model/GetUserDefinedFunctionResult.h

68 lines
1.8 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/glue/Glue_EXPORTS.h>
#include <aws/glue/model/UserDefinedFunction.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace Glue
{
namespace Model
{
class AWS_GLUE_API GetUserDefinedFunctionResult
{
public:
GetUserDefinedFunctionResult();
GetUserDefinedFunctionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetUserDefinedFunctionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The requested function definition.</p>
*/
inline const UserDefinedFunction& GetUserDefinedFunction() const{ return m_userDefinedFunction; }
/**
* <p>The requested function definition.</p>
*/
inline void SetUserDefinedFunction(const UserDefinedFunction& value) { m_userDefinedFunction = value; }
/**
* <p>The requested function definition.</p>
*/
inline void SetUserDefinedFunction(UserDefinedFunction&& value) { m_userDefinedFunction = std::move(value); }
/**
* <p>The requested function definition.</p>
*/
inline GetUserDefinedFunctionResult& WithUserDefinedFunction(const UserDefinedFunction& value) { SetUserDefinedFunction(value); return *this;}
/**
* <p>The requested function definition.</p>
*/
inline GetUserDefinedFunctionResult& WithUserDefinedFunction(UserDefinedFunction&& value) { SetUserDefinedFunction(std::move(value)); return *this;}
private:
UserDefinedFunction m_userDefinedFunction;
};
} // namespace Model
} // namespace Glue
} // namespace Aws