/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #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 DeleteTableResult { public: AWS_DYNAMODB_API DeleteTableResult(); AWS_DYNAMODB_API DeleteTableResult(const Aws::AmazonWebServiceResult& result); AWS_DYNAMODB_API 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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DeleteTableResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteTableResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteTableResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: TableDescription m_tableDescription; Aws::String m_requestId; }; } // namespace Model } // namespace DynamoDB } // namespace Aws