/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a DescribeTable
operation.See
* Also:
AWS
* API Reference
The name of the table to describe.
*/ inline const Aws::String& GetTableName() const{ return m_tableName; } /** *The name of the table to describe.
*/ inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; } /** *The name of the table to describe.
*/ inline void SetTableName(const Aws::String& value) { m_tableNameHasBeenSet = true; m_tableName = value; } /** *The name of the table to describe.
*/ inline void SetTableName(Aws::String&& value) { m_tableNameHasBeenSet = true; m_tableName = std::move(value); } /** *The name of the table to describe.
*/ inline void SetTableName(const char* value) { m_tableNameHasBeenSet = true; m_tableName.assign(value); } /** *The name of the table to describe.
*/ inline DescribeTableRequest& WithTableName(const Aws::String& value) { SetTableName(value); return *this;} /** *The name of the table to describe.
*/ inline DescribeTableRequest& WithTableName(Aws::String&& value) { SetTableName(std::move(value)); return *this;} /** *The name of the table to describe.
*/ inline DescribeTableRequest& WithTableName(const char* value) { SetTableName(value); return *this;} private: Aws::String m_tableName; bool m_tableNameHasBeenSet = false; }; } // namespace Model } // namespace DynamoDB } // namespace Aws