AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DatasetEntry.h
1
6#pragma once
7#include <aws/iotanalytics/IoTAnalytics_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace IoTAnalytics
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_IOTANALYTICS_API DatasetEntry();
35 AWS_IOTANALYTICS_API DatasetEntry(Aws::Utils::Json::JsonView jsonValue);
36 AWS_IOTANALYTICS_API DatasetEntry& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_IOTANALYTICS_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetEntryName() const{ return m_entryName; }
45 inline bool EntryNameHasBeenSet() const { return m_entryNameHasBeenSet; }
46 inline void SetEntryName(const Aws::String& value) { m_entryNameHasBeenSet = true; m_entryName = value; }
47 inline void SetEntryName(Aws::String&& value) { m_entryNameHasBeenSet = true; m_entryName = std::move(value); }
48 inline void SetEntryName(const char* value) { m_entryNameHasBeenSet = true; m_entryName.assign(value); }
49 inline DatasetEntry& WithEntryName(const Aws::String& value) { SetEntryName(value); return *this;}
50 inline DatasetEntry& WithEntryName(Aws::String&& value) { SetEntryName(std::move(value)); return *this;}
51 inline DatasetEntry& WithEntryName(const char* value) { SetEntryName(value); return *this;}
53
55
58 inline const Aws::String& GetDataURI() const{ return m_dataURI; }
59 inline bool DataURIHasBeenSet() const { return m_dataURIHasBeenSet; }
60 inline void SetDataURI(const Aws::String& value) { m_dataURIHasBeenSet = true; m_dataURI = value; }
61 inline void SetDataURI(Aws::String&& value) { m_dataURIHasBeenSet = true; m_dataURI = std::move(value); }
62 inline void SetDataURI(const char* value) { m_dataURIHasBeenSet = true; m_dataURI.assign(value); }
63 inline DatasetEntry& WithDataURI(const Aws::String& value) { SetDataURI(value); return *this;}
64 inline DatasetEntry& WithDataURI(Aws::String&& value) { SetDataURI(std::move(value)); return *this;}
65 inline DatasetEntry& WithDataURI(const char* value) { SetDataURI(value); return *this;}
67 private:
68
69 Aws::String m_entryName;
70 bool m_entryNameHasBeenSet = false;
71
72 Aws::String m_dataURI;
73 bool m_dataURIHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace IoTAnalytics
78} // namespace Aws
void SetEntryName(const Aws::String &value)
AWS_IOTANALYTICS_API DatasetEntry()
bool EntryNameHasBeenSet() const
DatasetEntry & WithEntryName(const Aws::String &value)
const Aws::String & GetEntryName() const
void SetDataURI(Aws::String &&value)
void SetDataURI(const char *value)
bool DataURIHasBeenSet() const
void SetDataURI(const Aws::String &value)
DatasetEntry & WithDataURI(Aws::String &&value)
DatasetEntry & WithEntryName(const char *value)
AWS_IOTANALYTICS_API Aws::Utils::Json::JsonValue Jsonize() const
DatasetEntry & WithDataURI(const Aws::String &value)
void SetEntryName(Aws::String &&value)
const Aws::String & GetDataURI() const
AWS_IOTANALYTICS_API DatasetEntry(Aws::Utils::Json::JsonView jsonValue)
void SetEntryName(const char *value)
DatasetEntry & WithEntryName(Aws::String &&value)
AWS_IOTANALYTICS_API DatasetEntry & operator=(Aws::Utils::Json::JsonView jsonValue)
DatasetEntry & WithDataURI(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue