/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of an UpdateTable
operation.See
* Also:
AWS
* API Reference
Represents the properties of the table.
*/ inline const TableDescription& GetTableDescription() const{ return m_tableDescription; } /** *Represents the properties of the table.
*/ inline void SetTableDescription(const TableDescription& value) { m_tableDescription = value; } /** *Represents the properties of the table.
*/ inline void SetTableDescription(TableDescription&& value) { m_tableDescription = std::move(value); } /** *Represents the properties of the table.
*/ inline UpdateTableResult& WithTableDescription(const TableDescription& value) { SetTableDescription(value); return *this;} /** *Represents the properties of the table.
*/ inline UpdateTableResult& 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 UpdateTableResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateTableResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateTableResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: TableDescription m_tableDescription; Aws::String m_requestId; }; } // namespace Model } // namespace DynamoDB } // namespace Aws