/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of a DescribeTable
* operation.See Also:
AWS
* API Reference
The properties of the table.
*/ inline const TableDescription& GetTable() const{ return m_table; } /** *The properties of the table.
*/ inline void SetTable(const TableDescription& value) { m_table = value; } /** *The properties of the table.
*/ inline void SetTable(TableDescription&& value) { m_table = std::move(value); } /** *The properties of the table.
*/ inline DescribeTableResult& WithTable(const TableDescription& value) { SetTable(value); return *this;} /** *The properties of the table.
*/ inline DescribeTableResult& WithTable(TableDescription&& value) { SetTable(std::move(value)); return *this;} private: TableDescription m_table; }; } // namespace Model } // namespace DynamoDB } // namespace Aws