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

The Table object that defines the specified table.

*/ inline const Table& GetTable() const{ return m_table; } /** *

The Table object that defines the specified table.

*/ inline void SetTable(const Table& value) { m_table = value; } /** *

The Table object that defines the specified table.

*/ inline void SetTable(Table&& value) { m_table = std::move(value); } /** *

The Table object that defines the specified table.

*/ inline GetTableResult& WithTable(const Table& value) { SetTable(value); return *this;} /** *

The Table object that defines the specified table.

*/ inline GetTableResult& WithTable(Table&& value) { SetTable(std::move(value)); return *this;} private: Table m_table; }; } // namespace Model } // namespace Glue } // namespace Aws