/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The metadata of the result set returned by a SQL statement.See
* Also:
AWS
* API Reference
The number of columns in the result set.
*/ inline long long GetColumnCount() const{ return m_columnCount; } /** *The number of columns in the result set.
*/ inline bool ColumnCountHasBeenSet() const { return m_columnCountHasBeenSet; } /** *The number of columns in the result set.
*/ inline void SetColumnCount(long long value) { m_columnCountHasBeenSet = true; m_columnCount = value; } /** *The number of columns in the result set.
*/ inline ResultSetMetadata& WithColumnCount(long long value) { SetColumnCount(value); return *this;} /** *The metadata of the columns in the result set.
*/ inline const Aws::VectorThe metadata of the columns in the result set.
*/ inline bool ColumnMetadataHasBeenSet() const { return m_columnMetadataHasBeenSet; } /** *The metadata of the columns in the result set.
*/ inline void SetColumnMetadata(const Aws::VectorThe metadata of the columns in the result set.
*/ inline void SetColumnMetadata(Aws::VectorThe metadata of the columns in the result set.
*/ inline ResultSetMetadata& WithColumnMetadata(const Aws::VectorThe metadata of the columns in the result set.
*/ inline ResultSetMetadata& WithColumnMetadata(Aws::VectorThe metadata of the columns in the result set.
*/ inline ResultSetMetadata& AddColumnMetadata(const ColumnMetadata& value) { m_columnMetadataHasBeenSet = true; m_columnMetadata.push_back(value); return *this; } /** *The metadata of the columns in the result set.
*/ inline ResultSetMetadata& AddColumnMetadata(ColumnMetadata&& value) { m_columnMetadataHasBeenSet = true; m_columnMetadata.push_back(std::move(value)); return *this; } private: long long m_columnCount; bool m_columnCountHasBeenSet = false; Aws::Vector