/** * 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 DescribeTable * operation.

See Also:

AWS * API Reference

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

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