/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Http { class URI; } //namespace Http namespace AppSync { namespace Model { /** */ class ListDataSourcesRequest : public AppSyncRequest { public: AWS_APPSYNC_API ListDataSourcesRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "ListDataSources"; } AWS_APPSYNC_API Aws::String SerializePayload() const override; AWS_APPSYNC_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

The API ID.

*/ inline const Aws::String& GetApiId() const{ return m_apiId; } /** *

The API ID.

*/ inline bool ApiIdHasBeenSet() const { return m_apiIdHasBeenSet; } /** *

The API ID.

*/ inline void SetApiId(const Aws::String& value) { m_apiIdHasBeenSet = true; m_apiId = value; } /** *

The API ID.

*/ inline void SetApiId(Aws::String&& value) { m_apiIdHasBeenSet = true; m_apiId = std::move(value); } /** *

The API ID.

*/ inline void SetApiId(const char* value) { m_apiIdHasBeenSet = true; m_apiId.assign(value); } /** *

The API ID.

*/ inline ListDataSourcesRequest& WithApiId(const Aws::String& value) { SetApiId(value); return *this;} /** *

The API ID.

*/ inline ListDataSourcesRequest& WithApiId(Aws::String&& value) { SetApiId(std::move(value)); return *this;} /** *

The API ID.

*/ inline ListDataSourcesRequest& WithApiId(const char* value) { SetApiId(value); return *this;} /** *

An identifier that was returned from the previous call to this operation, * which you can use to return the next set of items in the list.

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

An identifier that was returned from the previous call to this operation, * which you can use to return the next set of items in the list.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

An identifier that was returned from the previous call to this operation, * which you can use to return the next set of items in the list.

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

An identifier that was returned from the previous call to this operation, * which you can use to return the next set of items in the list.

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

An identifier that was returned from the previous call to this operation, * which you can use to return the next set of items in the list.

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

An identifier that was returned from the previous call to this operation, * which you can use to return the next set of items in the list.

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

An identifier that was returned from the previous call to this operation, * which you can use to return the next set of items in the list.

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

An identifier that was returned from the previous call to this operation, * which you can use to return the next set of items in the list.

*/ inline ListDataSourcesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The maximum number of results that you want the request to return.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

The maximum number of results that you want the request to return.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

The maximum number of results that you want the request to return.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

The maximum number of results that you want the request to return.

*/ inline ListDataSourcesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} private: Aws::String m_apiId; bool m_apiIdHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; }; } // namespace Model } // namespace AppSync } // namespace Aws