/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The metadata and rows that make up a query result set. The metadata describes
* the column structure and data types. To return a ResultSet
object,
* use GetQueryResults.See Also:
AWS
* API Reference
The rows in the table.
*/ inline const Aws::VectorThe rows in the table.
*/ inline bool RowsHasBeenSet() const { return m_rowsHasBeenSet; } /** *The rows in the table.
*/ inline void SetRows(const Aws::VectorThe rows in the table.
*/ inline void SetRows(Aws::VectorThe rows in the table.
*/ inline ResultSet& WithRows(const Aws::VectorThe rows in the table.
*/ inline ResultSet& WithRows(Aws::VectorThe rows in the table.
*/ inline ResultSet& AddRows(const Row& value) { m_rowsHasBeenSet = true; m_rows.push_back(value); return *this; } /** *The rows in the table.
*/ inline ResultSet& AddRows(Row&& value) { m_rowsHasBeenSet = true; m_rows.push_back(std::move(value)); return *this; } /** *The metadata that describes the column structure and data types of a table of * query results.
*/ inline const ResultSetMetadata& GetResultSetMetadata() const{ return m_resultSetMetadata; } /** *The metadata that describes the column structure and data types of a table of * query results.
*/ inline bool ResultSetMetadataHasBeenSet() const { return m_resultSetMetadataHasBeenSet; } /** *The metadata that describes the column structure and data types of a table of * query results.
*/ inline void SetResultSetMetadata(const ResultSetMetadata& value) { m_resultSetMetadataHasBeenSet = true; m_resultSetMetadata = value; } /** *The metadata that describes the column structure and data types of a table of * query results.
*/ inline void SetResultSetMetadata(ResultSetMetadata&& value) { m_resultSetMetadataHasBeenSet = true; m_resultSetMetadata = std::move(value); } /** *The metadata that describes the column structure and data types of a table of * query results.
*/ inline ResultSet& WithResultSetMetadata(const ResultSetMetadata& value) { SetResultSetMetadata(value); return *this;} /** *The metadata that describes the column structure and data types of a table of * query results.
*/ inline ResultSet& WithResultSetMetadata(ResultSetMetadata&& value) { SetResultSetMetadata(std::move(value)); return *this;} private: Aws::Vector