This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-iotanalytics/include/aws/iotanalytics/model/DatasetContentVersionValue.h

98 lines
3.0 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/iotanalytics/IoTAnalytics_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace IoTAnalytics
{
namespace Model
{
/**
* <p>The data set whose latest contents are used as input to the notebook or
* application.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/iotanalytics-2017-11-27/DatasetContentVersionValue">AWS
* API Reference</a></p>
*/
class AWS_IOTANALYTICS_API DatasetContentVersionValue
{
public:
DatasetContentVersionValue();
DatasetContentVersionValue(Aws::Utils::Json::JsonView jsonValue);
DatasetContentVersionValue& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The name of the data set whose latest contents are used as input to the
* notebook or application.</p>
*/
inline const Aws::String& GetDatasetName() const{ return m_datasetName; }
/**
* <p>The name of the data set whose latest contents are used as input to the
* notebook or application.</p>
*/
inline bool DatasetNameHasBeenSet() const { return m_datasetNameHasBeenSet; }
/**
* <p>The name of the data set whose latest contents are used as input to the
* notebook or application.</p>
*/
inline void SetDatasetName(const Aws::String& value) { m_datasetNameHasBeenSet = true; m_datasetName = value; }
/**
* <p>The name of the data set whose latest contents are used as input to the
* notebook or application.</p>
*/
inline void SetDatasetName(Aws::String&& value) { m_datasetNameHasBeenSet = true; m_datasetName = std::move(value); }
/**
* <p>The name of the data set whose latest contents are used as input to the
* notebook or application.</p>
*/
inline void SetDatasetName(const char* value) { m_datasetNameHasBeenSet = true; m_datasetName.assign(value); }
/**
* <p>The name of the data set whose latest contents are used as input to the
* notebook or application.</p>
*/
inline DatasetContentVersionValue& WithDatasetName(const Aws::String& value) { SetDatasetName(value); return *this;}
/**
* <p>The name of the data set whose latest contents are used as input to the
* notebook or application.</p>
*/
inline DatasetContentVersionValue& WithDatasetName(Aws::String&& value) { SetDatasetName(std::move(value)); return *this;}
/**
* <p>The name of the data set whose latest contents are used as input to the
* notebook or application.</p>
*/
inline DatasetContentVersionValue& WithDatasetName(const char* value) { SetDatasetName(value); return *this;}
private:
Aws::String m_datasetName;
bool m_datasetNameHasBeenSet;
};
} // namespace Model
} // namespace IoTAnalytics
} // namespace Aws