/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the query results from a DescribeDataSources operation. The
* content is essentially a list of DataSource.See
* Also:
AWS
* API Reference
A list of DataSource that meet the search criteria.
A list of DataSource that meet the search criteria.
A list of DataSource that meet the search criteria.
A list of DataSource that meet the search criteria.
A list of DataSource that meet the search criteria.
A list of DataSource that meet the search criteria.
A list of DataSource that meet the search criteria.
An ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *An ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *An ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *An ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *An ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline DescribeDataSourcesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *An ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline DescribeDataSourcesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *An ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline DescribeDataSourcesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector