/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that contains attributes about a single row in a
* tableSee Also:
AWS
* API Reference
The id of the row in the table.
*/ inline const Aws::String& GetRowId() const{ return m_rowId; } /** *The id of the row in the table.
*/ inline bool RowIdHasBeenSet() const { return m_rowIdHasBeenSet; } /** *The id of the row in the table.
*/ inline void SetRowId(const Aws::String& value) { m_rowIdHasBeenSet = true; m_rowId = value; } /** *The id of the row in the table.
*/ inline void SetRowId(Aws::String&& value) { m_rowIdHasBeenSet = true; m_rowId = std::move(value); } /** *The id of the row in the table.
*/ inline void SetRowId(const char* value) { m_rowIdHasBeenSet = true; m_rowId.assign(value); } /** *The id of the row in the table.
*/ inline TableRow& WithRowId(const Aws::String& value) { SetRowId(value); return *this;} /** *The id of the row in the table.
*/ inline TableRow& WithRowId(Aws::String&& value) { SetRowId(std::move(value)); return *this;} /** *The id of the row in the table.
*/ inline TableRow& WithRowId(const char* value) { SetRowId(value); return *this;} /** *A list of cells in the table row. The cells appear in the same order as the * columns of the table.
*/ inline const Aws::VectorA list of cells in the table row. The cells appear in the same order as the * columns of the table.
*/ inline bool CellsHasBeenSet() const { return m_cellsHasBeenSet; } /** *A list of cells in the table row. The cells appear in the same order as the * columns of the table.
*/ inline void SetCells(const Aws::VectorA list of cells in the table row. The cells appear in the same order as the * columns of the table.
*/ inline void SetCells(Aws::VectorA list of cells in the table row. The cells appear in the same order as the * columns of the table.
*/ inline TableRow& WithCells(const Aws::VectorA list of cells in the table row. The cells appear in the same order as the * columns of the table.
*/ inline TableRow& WithCells(Aws::VectorA list of cells in the table row. The cells appear in the same order as the * columns of the table.
*/ inline TableRow& AddCells(const Cell& value) { m_cellsHasBeenSet = true; m_cells.push_back(value); return *this; } /** *A list of cells in the table row. The cells appear in the same order as the * columns of the table.
*/ inline TableRow& AddCells(Cell&& value) { m_cellsHasBeenSet = true; m_cells.push_back(std::move(value)); return *this; } private: Aws::String m_rowId; bool m_rowIdHasBeenSet = false; Aws::Vector