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

A list of databases from a data catalog.

*/ inline const Aws::Vector& GetDatabaseList() const{ return m_databaseList; } /** *

A list of databases from a data catalog.

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

A list of databases from a data catalog.

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

A list of databases from a data catalog.

*/ inline ListDatabasesResult& WithDatabaseList(const Aws::Vector& value) { SetDatabaseList(value); return *this;} /** *

A list of databases from a data catalog.

*/ inline ListDatabasesResult& WithDatabaseList(Aws::Vector&& value) { SetDatabaseList(std::move(value)); return *this;} /** *

A list of databases from a data catalog.

*/ inline ListDatabasesResult& AddDatabaseList(const Database& value) { m_databaseList.push_back(value); return *this; } /** *

A list of databases from a data catalog.

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