/** * 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 DynamoDB { namespace Model { /** *

Represents the output of a DeleteTable operation.

See * Also:

AWS * API Reference

*/ class AWS_DYNAMODB_API DeleteTableResult { public: DeleteTableResult(); DeleteTableResult(const Aws::AmazonWebServiceResult& result); DeleteTableResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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