/** * 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 ListNamedQueriesResult { public: AWS_ATHENA_API ListNamedQueriesResult(); AWS_ATHENA_API ListNamedQueriesResult(const Aws::AmazonWebServiceResult& result); AWS_ATHENA_API ListNamedQueriesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The list of unique query IDs.

*/ inline const Aws::Vector& GetNamedQueryIds() const{ return m_namedQueryIds; } /** *

The list of unique query IDs.

*/ inline void SetNamedQueryIds(const Aws::Vector& value) { m_namedQueryIds = value; } /** *

The list of unique query IDs.

*/ inline void SetNamedQueryIds(Aws::Vector&& value) { m_namedQueryIds = std::move(value); } /** *

The list of unique query IDs.

*/ inline ListNamedQueriesResult& WithNamedQueryIds(const Aws::Vector& value) { SetNamedQueryIds(value); return *this;} /** *

The list of unique query IDs.

*/ inline ListNamedQueriesResult& WithNamedQueryIds(Aws::Vector&& value) { SetNamedQueryIds(std::move(value)); return *this;} /** *

The list of unique query IDs.

*/ inline ListNamedQueriesResult& AddNamedQueryIds(const Aws::String& value) { m_namedQueryIds.push_back(value); return *this; } /** *

The list of unique query IDs.

*/ inline ListNamedQueriesResult& AddNamedQueryIds(Aws::String&& value) { m_namedQueryIds.push_back(std::move(value)); return *this; } /** *

The list of unique query IDs.

*/ inline ListNamedQueriesResult& AddNamedQueryIds(const char* value) { m_namedQueryIds.push_back(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 ListNamedQueriesResult& 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 ListNamedQueriesResult& 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 ListNamedQueriesResult& 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 ListNamedQueriesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListNamedQueriesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListNamedQueriesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_namedQueryIds; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace Athena } // namespace Aws