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

A list of WorkGroupSummary objects that include the names, * descriptions, creation times, and states for each workgroup.

*/ inline const Aws::Vector& GetWorkGroups() const{ return m_workGroups; } /** *

A list of WorkGroupSummary objects that include the names, * descriptions, creation times, and states for each workgroup.

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

A list of WorkGroupSummary objects that include the names, * descriptions, creation times, and states for each workgroup.

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

A list of WorkGroupSummary objects that include the names, * descriptions, creation times, and states for each workgroup.

*/ inline ListWorkGroupsResult& WithWorkGroups(const Aws::Vector& value) { SetWorkGroups(value); return *this;} /** *

A list of WorkGroupSummary objects that include the names, * descriptions, creation times, and states for each workgroup.

*/ inline ListWorkGroupsResult& WithWorkGroups(Aws::Vector&& value) { SetWorkGroups(std::move(value)); return *this;} /** *

A list of WorkGroupSummary objects that include the names, * descriptions, creation times, and states for each workgroup.

*/ inline ListWorkGroupsResult& AddWorkGroups(const WorkGroupSummary& value) { m_workGroups.push_back(value); return *this; } /** *

A list of WorkGroupSummary objects that include the names, * descriptions, creation times, and states for each workgroup.

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