/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The dataset whose latest contents are used as input to the notebook or
* application.See Also:
AWS
* API Reference
The name of the dataset whose latest contents are used as input to the * notebook or application.
*/ inline const Aws::String& GetDatasetName() const{ return m_datasetName; } /** *The name of the dataset whose latest contents are used as input to the * notebook or application.
*/ inline bool DatasetNameHasBeenSet() const { return m_datasetNameHasBeenSet; } /** *The name of the dataset whose latest contents are used as input to the * notebook or application.
*/ inline void SetDatasetName(const Aws::String& value) { m_datasetNameHasBeenSet = true; m_datasetName = value; } /** *The name of the dataset whose latest contents are used as input to the * notebook or application.
*/ inline void SetDatasetName(Aws::String&& value) { m_datasetNameHasBeenSet = true; m_datasetName = std::move(value); } /** *The name of the dataset whose latest contents are used as input to the * notebook or application.
*/ inline void SetDatasetName(const char* value) { m_datasetNameHasBeenSet = true; m_datasetName.assign(value); } /** *The name of the dataset whose latest contents are used as input to the * notebook or application.
*/ inline DatasetContentVersionValue& WithDatasetName(const Aws::String& value) { SetDatasetName(value); return *this;} /** *The name of the dataset whose latest contents are used as input to the * notebook or application.
*/ inline DatasetContentVersionValue& WithDatasetName(Aws::String&& value) { SetDatasetName(std::move(value)); return *this;} /** *The name of the dataset whose latest contents are used as input to the * notebook or application.
*/ inline DatasetContentVersionValue& WithDatasetName(const char* value) { SetDatasetName(value); return *this;} private: Aws::String m_datasetName; bool m_datasetNameHasBeenSet = false; }; } // namespace Model } // namespace IoTAnalytics } // namespace Aws