/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoTAnalytics { namespace Model { /** *

The dataset whose latest contents are used as input to the notebook or * application.

See Also:

AWS * API Reference

*/ class DatasetContentVersionValue { public: AWS_IOTANALYTICS_API DatasetContentVersionValue(); AWS_IOTANALYTICS_API DatasetContentVersionValue(Aws::Utils::Json::JsonView jsonValue); AWS_IOTANALYTICS_API DatasetContentVersionValue& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_IOTANALYTICS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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