/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See
* Also:
AWS
* API Reference
The unique identifier for the FinSpace Dataset to which the Changeset * belongs.
*/ inline const Aws::String& GetDatasetId() const{ return m_datasetId; } /** *The unique identifier for the FinSpace Dataset to which the Changeset * belongs.
*/ inline bool DatasetIdHasBeenSet() const { return m_datasetIdHasBeenSet; } /** *The unique identifier for the FinSpace Dataset to which the Changeset * belongs.
*/ inline void SetDatasetId(const Aws::String& value) { m_datasetIdHasBeenSet = true; m_datasetId = value; } /** *The unique identifier for the FinSpace Dataset to which the Changeset * belongs.
*/ inline void SetDatasetId(Aws::String&& value) { m_datasetIdHasBeenSet = true; m_datasetId = std::move(value); } /** *The unique identifier for the FinSpace Dataset to which the Changeset * belongs.
*/ inline void SetDatasetId(const char* value) { m_datasetIdHasBeenSet = true; m_datasetId.assign(value); } /** *The unique identifier for the FinSpace Dataset to which the Changeset * belongs.
*/ inline ListChangesetsRequest& WithDatasetId(const Aws::String& value) { SetDatasetId(value); return *this;} /** *The unique identifier for the FinSpace Dataset to which the Changeset * belongs.
*/ inline ListChangesetsRequest& WithDatasetId(Aws::String&& value) { SetDatasetId(std::move(value)); return *this;} /** *The unique identifier for the FinSpace Dataset to which the Changeset * belongs.
*/ inline ListChangesetsRequest& WithDatasetId(const char* value) { SetDatasetId(value); return *this;} /** *The maximum number of results per page.
*/ inline int GetMaxResults() const{ return m_maxResults; } /** *The maximum number of results per page.
*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *The maximum number of results per page.
*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *The maximum number of results per page.
*/ inline ListChangesetsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *A token that indicates where a results page should begin.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *A token that indicates where a results page should begin.
*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *A token that indicates where a results page should begin.
*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *A token that indicates where a results page should begin.
*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *A token that indicates where a results page should begin.
*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *A token that indicates where a results page should begin.
*/ inline ListChangesetsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *A token that indicates where a results page should begin.
*/ inline ListChangesetsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *A token that indicates where a results page should begin.
*/ inline ListChangesetsRequest& WithNextToken(const char* value) { SetNextToken(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; }; } // namespace Model } // namespace FinSpaceData } // namespace Aws