/**
* 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 a Dataset.
*/ inline const Aws::String& GetDatasetId() const{ return m_datasetId; } /** *The unique identifier for a Dataset.
*/ inline bool DatasetIdHasBeenSet() const { return m_datasetIdHasBeenSet; } /** *The unique identifier for a Dataset.
*/ inline void SetDatasetId(const Aws::String& value) { m_datasetIdHasBeenSet = true; m_datasetId = value; } /** *The unique identifier for a Dataset.
*/ inline void SetDatasetId(Aws::String&& value) { m_datasetIdHasBeenSet = true; m_datasetId = std::move(value); } /** *The unique identifier for a Dataset.
*/ inline void SetDatasetId(const char* value) { m_datasetIdHasBeenSet = true; m_datasetId.assign(value); } /** *The unique identifier for a Dataset.
*/ inline GetDatasetRequest& WithDatasetId(const Aws::String& value) { SetDatasetId(value); return *this;} /** *The unique identifier for a Dataset.
*/ inline GetDatasetRequest& WithDatasetId(Aws::String&& value) { SetDatasetId(std::move(value)); return *this;} /** *The unique identifier for a Dataset.
*/ inline GetDatasetRequest& WithDatasetId(const char* value) { SetDatasetId(value); return *this;} private: Aws::String m_datasetId; bool m_datasetIdHasBeenSet = false; }; } // namespace Model } // namespace FinSpaceData } // namespace Aws