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