/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A single row in the ResultSet.See Also:
AWS
* API Reference
The ID for a particular row.
*/ inline const Aws::String& GetRowId() const{ return m_rowId; } /** *The ID for a particular row.
*/ inline bool RowIdHasBeenSet() const { return m_rowIdHasBeenSet; } /** *The ID for a particular row.
*/ inline void SetRowId(const Aws::String& value) { m_rowIdHasBeenSet = true; m_rowId = value; } /** *The ID for a particular row.
*/ inline void SetRowId(Aws::String&& value) { m_rowIdHasBeenSet = true; m_rowId = std::move(value); } /** *The ID for a particular row.
*/ inline void SetRowId(const char* value) { m_rowIdHasBeenSet = true; m_rowId.assign(value); } /** *The ID for a particular row.
*/ inline ResultRow& WithRowId(const Aws::String& value) { SetRowId(value); return *this;} /** *The ID for a particular row.
*/ inline ResultRow& WithRowId(Aws::String&& value) { SetRowId(std::move(value)); return *this;} /** *The ID for a particular row.
*/ inline ResultRow& WithRowId(const char* value) { SetRowId(value); return *this;} /** *List of all the data cells in a row.
*/ inline const Aws::VectorList of all the data cells in a row.
*/ inline bool DataItemsHasBeenSet() const { return m_dataItemsHasBeenSet; } /** *List of all the data cells in a row.
*/ inline void SetDataItems(const Aws::VectorList of all the data cells in a row.
*/ inline void SetDataItems(Aws::VectorList of all the data cells in a row.
*/ inline ResultRow& WithDataItems(const Aws::VectorList of all the data cells in a row.
*/ inline ResultRow& WithDataItems(Aws::VectorList of all the data cells in a row.
*/ inline ResultRow& AddDataItems(const DataItem& value) { m_dataItemsHasBeenSet = true; m_dataItems.push_back(value); return *this; } /** *List of all the data cells in a row.
*/ inline ResultRow& AddDataItems(DataItem&& value) { m_dataItemsHasBeenSet = true; m_dataItems.push_back(std::move(value)); return *this; } private: Aws::String m_rowId; bool m_rowIdHasBeenSet = false; Aws::Vector