/**
* 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;} 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 DescribeTableResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeTableResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeTableResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: TableDescription m_table; Aws::String m_requestId; }; } // namespace Model } // namespace DynamoDB } // namespace Aws