/**
* 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 where the Changeset is * created.
*/ inline const Aws::String& GetDatasetId() const{ return m_datasetId; } /** *The unique identifier for the FinSpace Dataset where the Changeset is * created.
*/ inline bool DatasetIdHasBeenSet() const { return m_datasetIdHasBeenSet; } /** *The unique identifier for the FinSpace Dataset where the Changeset is * created.
*/ inline void SetDatasetId(const Aws::String& value) { m_datasetIdHasBeenSet = true; m_datasetId = value; } /** *The unique identifier for the FinSpace Dataset where the Changeset is * created.
*/ inline void SetDatasetId(Aws::String&& value) { m_datasetIdHasBeenSet = true; m_datasetId = std::move(value); } /** *The unique identifier for the FinSpace Dataset where the Changeset is * created.
*/ inline void SetDatasetId(const char* value) { m_datasetIdHasBeenSet = true; m_datasetId.assign(value); } /** *The unique identifier for the FinSpace Dataset where the Changeset is * created.
*/ inline GetChangesetRequest& WithDatasetId(const Aws::String& value) { SetDatasetId(value); return *this;} /** *The unique identifier for the FinSpace Dataset where the Changeset is * created.
*/ inline GetChangesetRequest& WithDatasetId(Aws::String&& value) { SetDatasetId(std::move(value)); return *this;} /** *The unique identifier for the FinSpace Dataset where the Changeset is * created.
*/ inline GetChangesetRequest& WithDatasetId(const char* value) { SetDatasetId(value); return *this;} /** *The unique identifier of the Changeset for which to get data.
*/ inline const Aws::String& GetChangesetId() const{ return m_changesetId; } /** *The unique identifier of the Changeset for which to get data.
*/ inline bool ChangesetIdHasBeenSet() const { return m_changesetIdHasBeenSet; } /** *The unique identifier of the Changeset for which to get data.
*/ inline void SetChangesetId(const Aws::String& value) { m_changesetIdHasBeenSet = true; m_changesetId = value; } /** *The unique identifier of the Changeset for which to get data.
*/ inline void SetChangesetId(Aws::String&& value) { m_changesetIdHasBeenSet = true; m_changesetId = std::move(value); } /** *The unique identifier of the Changeset for which to get data.
*/ inline void SetChangesetId(const char* value) { m_changesetIdHasBeenSet = true; m_changesetId.assign(value); } /** *The unique identifier of the Changeset for which to get data.
*/ inline GetChangesetRequest& WithChangesetId(const Aws::String& value) { SetChangesetId(value); return *this;} /** *The unique identifier of the Changeset for which to get data.
*/ inline GetChangesetRequest& WithChangesetId(Aws::String&& value) { SetChangesetId(std::move(value)); return *this;} /** *The unique identifier of the Changeset for which to get data.
*/ inline GetChangesetRequest& WithChangesetId(const char* value) { SetChangesetId(value); return *this;} private: Aws::String m_datasetId; bool m_datasetIdHasBeenSet = false; Aws::String m_changesetId; bool m_changesetIdHasBeenSet = false; }; } // namespace Model } // namespace FinSpaceData } // namespace Aws