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

The requested table version.

*/ inline const TableVersion& GetTableVersion() const{ return m_tableVersion; } /** *

The requested table version.

*/ inline void SetTableVersion(const TableVersion& value) { m_tableVersion = value; } /** *

The requested table version.

*/ inline void SetTableVersion(TableVersion&& value) { m_tableVersion = std::move(value); } /** *

The requested table version.

*/ inline GetTableVersionResult& WithTableVersion(const TableVersion& value) { SetTableVersion(value); return *this;} /** *

The requested table version.

*/ inline GetTableVersionResult& WithTableVersion(TableVersion&& value) { SetTableVersion(std::move(value)); return *this;} private: TableVersion m_tableVersion; }; } // namespace Model } // namespace Glue } // namespace Aws