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/GetTableVersionResult.h

68 lines
1.6 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/TableVersion.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 GetTableVersionResult
{
public:
GetTableVersionResult();
GetTableVersionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetTableVersionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The requested table version.</p>
*/
inline const TableVersion& GetTableVersion() const{ return m_tableVersion; }
/**
* <p>The requested table version.</p>
*/
inline void SetTableVersion(const TableVersion& value) { m_tableVersion = value; }
/**
* <p>The requested table version.</p>
*/
inline void SetTableVersion(TableVersion&& value) { m_tableVersion = std::move(value); }
/**
* <p>The requested table version.</p>
*/
inline GetTableVersionResult& WithTableVersion(const TableVersion& value) { SetTableVersion(value); return *this;}
/**
* <p>The requested table version.</p>
*/
inline GetTableVersionResult& WithTableVersion(TableVersion&& value) { SetTableVersion(std::move(value)); return *this;}
private:
TableVersion m_tableVersion;
};
} // namespace Model
} // namespace Glue
} // namespace Aws