/** * 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 DataExchange { namespace Model { /** */ class ListJobsRequest : public DataExchangeRequest { public: AWS_DATAEXCHANGE_API ListJobsRequest(); // 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 "ListJobs"; } AWS_DATAEXCHANGE_API Aws::String SerializePayload() const override; AWS_DATAEXCHANGE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

The unique identifier for a data set.

*/ inline const Aws::String& GetDataSetId() const{ return m_dataSetId; } /** *

The unique identifier for a data set.

*/ inline bool DataSetIdHasBeenSet() const { return m_dataSetIdHasBeenSet; } /** *

The unique identifier for a data set.

*/ inline void SetDataSetId(const Aws::String& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = value; } /** *

The unique identifier for a data set.

*/ inline void SetDataSetId(Aws::String&& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = std::move(value); } /** *

The unique identifier for a data set.

*/ inline void SetDataSetId(const char* value) { m_dataSetIdHasBeenSet = true; m_dataSetId.assign(value); } /** *

The unique identifier for a data set.

*/ inline ListJobsRequest& WithDataSetId(const Aws::String& value) { SetDataSetId(value); return *this;} /** *

The unique identifier for a data set.

*/ inline ListJobsRequest& WithDataSetId(Aws::String&& value) { SetDataSetId(std::move(value)); return *this;} /** *

The unique identifier for a data set.

*/ inline ListJobsRequest& WithDataSetId(const char* value) { SetDataSetId(value); return *this;} /** *

The maximum number of results returned by a single call.

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

The maximum number of results returned by a single call.

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

The maximum number of results returned by a single call.

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

The maximum number of results returned by a single call.

*/ inline ListJobsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

The token value retrieved from a previous call to access the next page of * results.

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

The token value retrieved from a previous call to access the next page of * results.

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

The token value retrieved from a previous call to access the next page of * results.

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

The token value retrieved from a previous call to access the next page of * results.

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

The token value retrieved from a previous call to access the next page of * results.

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

The token value retrieved from a previous call to access the next page of * results.

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

The token value retrieved from a previous call to access the next page of * results.

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

The token value retrieved from a previous call to access the next page of * results.

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

The unique identifier for a revision.

*/ inline const Aws::String& GetRevisionId() const{ return m_revisionId; } /** *

The unique identifier for a revision.

*/ inline bool RevisionIdHasBeenSet() const { return m_revisionIdHasBeenSet; } /** *

The unique identifier for a revision.

*/ inline void SetRevisionId(const Aws::String& value) { m_revisionIdHasBeenSet = true; m_revisionId = value; } /** *

The unique identifier for a revision.

*/ inline void SetRevisionId(Aws::String&& value) { m_revisionIdHasBeenSet = true; m_revisionId = std::move(value); } /** *

The unique identifier for a revision.

*/ inline void SetRevisionId(const char* value) { m_revisionIdHasBeenSet = true; m_revisionId.assign(value); } /** *

The unique identifier for a revision.

*/ inline ListJobsRequest& WithRevisionId(const Aws::String& value) { SetRevisionId(value); return *this;} /** *

The unique identifier for a revision.

*/ inline ListJobsRequest& WithRevisionId(Aws::String&& value) { SetRevisionId(std::move(value)); return *this;} /** *

The unique identifier for a revision.

*/ inline ListJobsRequest& WithRevisionId(const char* value) { SetRevisionId(value); return *this;} private: Aws::String m_dataSetId; bool m_dataSetIdHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; Aws::String m_revisionId; bool m_revisionIdHasBeenSet = false; }; } // namespace Model } // namespace DataExchange } // namespace Aws