/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Athena { namespace Model { class GetQueryResultsResult { public: AWS_ATHENA_API GetQueryResultsResult(); AWS_ATHENA_API GetQueryResultsResult(const Aws::AmazonWebServiceResult& result); AWS_ATHENA_API GetQueryResultsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The number of rows inserted with a CREATE TABLE AS SELECT * statement.

*/ inline long long GetUpdateCount() const{ return m_updateCount; } /** *

The number of rows inserted with a CREATE TABLE AS SELECT * statement.

*/ inline void SetUpdateCount(long long value) { m_updateCount = value; } /** *

The number of rows inserted with a CREATE TABLE AS SELECT * statement.

*/ inline GetQueryResultsResult& WithUpdateCount(long long value) { SetUpdateCount(value); return *this;} /** *

The results of the query execution.

*/ inline const ResultSet& GetResultSet() const{ return m_resultSet; } /** *

The results of the query execution.

*/ inline void SetResultSet(const ResultSet& value) { m_resultSet = value; } /** *

The results of the query execution.

*/ inline void SetResultSet(ResultSet&& value) { m_resultSet = std::move(value); } /** *

The results of the query execution.

*/ inline GetQueryResultsResult& WithResultSet(const ResultSet& value) { SetResultSet(value); return *this;} /** *

The results of the query execution.

*/ inline GetQueryResultsResult& WithResultSet(ResultSet&& value) { SetResultSet(std::move(value)); return *this;} /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page * call.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page * call.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page * call.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page * call.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page * call.

*/ inline GetQueryResultsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page * call.

*/ inline GetQueryResultsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page * call.

*/ inline GetQueryResultsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetQueryResultsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetQueryResultsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetQueryResultsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: long long m_updateCount; ResultSet m_resultSet; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace Athena } // namespace Aws