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

133 lines
3.6 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 reference to a data set entry.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/iotanalytics-2017-11-27/DatasetEntry">AWS
* API Reference</a></p>
*/
class AWS_IOTANALYTICS_API DatasetEntry
{
public:
DatasetEntry();
DatasetEntry(Aws::Utils::Json::JsonView jsonValue);
DatasetEntry& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The name of the data set item.</p>
*/
inline const Aws::String& GetEntryName() const{ return m_entryName; }
/**
* <p>The name of the data set item.</p>
*/
inline bool EntryNameHasBeenSet() const { return m_entryNameHasBeenSet; }
/**
* <p>The name of the data set item.</p>
*/
inline void SetEntryName(const Aws::String& value) { m_entryNameHasBeenSet = true; m_entryName = value; }
/**
* <p>The name of the data set item.</p>
*/
inline void SetEntryName(Aws::String&& value) { m_entryNameHasBeenSet = true; m_entryName = std::move(value); }
/**
* <p>The name of the data set item.</p>
*/
inline void SetEntryName(const char* value) { m_entryNameHasBeenSet = true; m_entryName.assign(value); }
/**
* <p>The name of the data set item.</p>
*/
inline DatasetEntry& WithEntryName(const Aws::String& value) { SetEntryName(value); return *this;}
/**
* <p>The name of the data set item.</p>
*/
inline DatasetEntry& WithEntryName(Aws::String&& value) { SetEntryName(std::move(value)); return *this;}
/**
* <p>The name of the data set item.</p>
*/
inline DatasetEntry& WithEntryName(const char* value) { SetEntryName(value); return *this;}
/**
* <p>The pre-signed URI of the data set item.</p>
*/
inline const Aws::String& GetDataURI() const{ return m_dataURI; }
/**
* <p>The pre-signed URI of the data set item.</p>
*/
inline bool DataURIHasBeenSet() const { return m_dataURIHasBeenSet; }
/**
* <p>The pre-signed URI of the data set item.</p>
*/
inline void SetDataURI(const Aws::String& value) { m_dataURIHasBeenSet = true; m_dataURI = value; }
/**
* <p>The pre-signed URI of the data set item.</p>
*/
inline void SetDataURI(Aws::String&& value) { m_dataURIHasBeenSet = true; m_dataURI = std::move(value); }
/**
* <p>The pre-signed URI of the data set item.</p>
*/
inline void SetDataURI(const char* value) { m_dataURIHasBeenSet = true; m_dataURI.assign(value); }
/**
* <p>The pre-signed URI of the data set item.</p>
*/
inline DatasetEntry& WithDataURI(const Aws::String& value) { SetDataURI(value); return *this;}
/**
* <p>The pre-signed URI of the data set item.</p>
*/
inline DatasetEntry& WithDataURI(Aws::String&& value) { SetDataURI(std::move(value)); return *this;}
/**
* <p>The pre-signed URI of the data set item.</p>
*/
inline DatasetEntry& WithDataURI(const char* value) { SetDataURI(value); return *this;}
private:
Aws::String m_entryName;
bool m_entryNameHasBeenSet;
Aws::String m_dataURI;
bool m_dataURIHasBeenSet;
};
} // namespace Model
} // namespace IoTAnalytics
} // namespace Aws