AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
InputUpdate.h
1
6#pragma once
7#include <aws/kinesisanalytics/KinesisAnalytics_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/kinesisanalytics/model/InputProcessingConfigurationUpdate.h>
10#include <aws/kinesisanalytics/model/KinesisStreamsInputUpdate.h>
11#include <aws/kinesisanalytics/model/KinesisFirehoseInputUpdate.h>
12#include <aws/kinesisanalytics/model/InputSchemaUpdate.h>
13#include <aws/kinesisanalytics/model/InputParallelismUpdate.h>
14#include <utility>
15
16namespace Aws
17{
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23 class JsonView;
24} // namespace Json
25} // namespace Utils
26namespace KinesisAnalytics
27{
28namespace Model
29{
30
38 {
39 public:
40 AWS_KINESISANALYTICS_API InputUpdate();
41 AWS_KINESISANALYTICS_API InputUpdate(Aws::Utils::Json::JsonView jsonValue);
42 AWS_KINESISANALYTICS_API InputUpdate& operator=(Aws::Utils::Json::JsonView jsonValue);
43 AWS_KINESISANALYTICS_API Aws::Utils::Json::JsonValue Jsonize() const;
44
45
47
50 inline const Aws::String& GetInputId() const{ return m_inputId; }
51 inline bool InputIdHasBeenSet() const { return m_inputIdHasBeenSet; }
52 inline void SetInputId(const Aws::String& value) { m_inputIdHasBeenSet = true; m_inputId = value; }
53 inline void SetInputId(Aws::String&& value) { m_inputIdHasBeenSet = true; m_inputId = std::move(value); }
54 inline void SetInputId(const char* value) { m_inputIdHasBeenSet = true; m_inputId.assign(value); }
55 inline InputUpdate& WithInputId(const Aws::String& value) { SetInputId(value); return *this;}
56 inline InputUpdate& WithInputId(Aws::String&& value) { SetInputId(std::move(value)); return *this;}
57 inline InputUpdate& WithInputId(const char* value) { SetInputId(value); return *this;}
59
61
65 inline const Aws::String& GetNamePrefixUpdate() const{ return m_namePrefixUpdate; }
66 inline bool NamePrefixUpdateHasBeenSet() const { return m_namePrefixUpdateHasBeenSet; }
67 inline void SetNamePrefixUpdate(const Aws::String& value) { m_namePrefixUpdateHasBeenSet = true; m_namePrefixUpdate = value; }
68 inline void SetNamePrefixUpdate(Aws::String&& value) { m_namePrefixUpdateHasBeenSet = true; m_namePrefixUpdate = std::move(value); }
69 inline void SetNamePrefixUpdate(const char* value) { m_namePrefixUpdateHasBeenSet = true; m_namePrefixUpdate.assign(value); }
70 inline InputUpdate& WithNamePrefixUpdate(const Aws::String& value) { SetNamePrefixUpdate(value); return *this;}
71 inline InputUpdate& WithNamePrefixUpdate(Aws::String&& value) { SetNamePrefixUpdate(std::move(value)); return *this;}
72 inline InputUpdate& WithNamePrefixUpdate(const char* value) { SetNamePrefixUpdate(value); return *this;}
74
76
79 inline const InputProcessingConfigurationUpdate& GetInputProcessingConfigurationUpdate() const{ return m_inputProcessingConfigurationUpdate; }
80 inline bool InputProcessingConfigurationUpdateHasBeenSet() const { return m_inputProcessingConfigurationUpdateHasBeenSet; }
81 inline void SetInputProcessingConfigurationUpdate(const InputProcessingConfigurationUpdate& value) { m_inputProcessingConfigurationUpdateHasBeenSet = true; m_inputProcessingConfigurationUpdate = value; }
82 inline void SetInputProcessingConfigurationUpdate(InputProcessingConfigurationUpdate&& value) { m_inputProcessingConfigurationUpdateHasBeenSet = true; m_inputProcessingConfigurationUpdate = std::move(value); }
86
88
92 inline const KinesisStreamsInputUpdate& GetKinesisStreamsInputUpdate() const{ return m_kinesisStreamsInputUpdate; }
93 inline bool KinesisStreamsInputUpdateHasBeenSet() const { return m_kinesisStreamsInputUpdateHasBeenSet; }
94 inline void SetKinesisStreamsInputUpdate(const KinesisStreamsInputUpdate& value) { m_kinesisStreamsInputUpdateHasBeenSet = true; m_kinesisStreamsInputUpdate = value; }
95 inline void SetKinesisStreamsInputUpdate(KinesisStreamsInputUpdate&& value) { m_kinesisStreamsInputUpdateHasBeenSet = true; m_kinesisStreamsInputUpdate = std::move(value); }
99
101
105 inline const KinesisFirehoseInputUpdate& GetKinesisFirehoseInputUpdate() const{ return m_kinesisFirehoseInputUpdate; }
106 inline bool KinesisFirehoseInputUpdateHasBeenSet() const { return m_kinesisFirehoseInputUpdateHasBeenSet; }
107 inline void SetKinesisFirehoseInputUpdate(const KinesisFirehoseInputUpdate& value) { m_kinesisFirehoseInputUpdateHasBeenSet = true; m_kinesisFirehoseInputUpdate = value; }
108 inline void SetKinesisFirehoseInputUpdate(KinesisFirehoseInputUpdate&& value) { m_kinesisFirehoseInputUpdateHasBeenSet = true; m_kinesisFirehoseInputUpdate = std::move(value); }
112
114
119 inline const InputSchemaUpdate& GetInputSchemaUpdate() const{ return m_inputSchemaUpdate; }
120 inline bool InputSchemaUpdateHasBeenSet() const { return m_inputSchemaUpdateHasBeenSet; }
121 inline void SetInputSchemaUpdate(const InputSchemaUpdate& value) { m_inputSchemaUpdateHasBeenSet = true; m_inputSchemaUpdate = value; }
122 inline void SetInputSchemaUpdate(InputSchemaUpdate&& value) { m_inputSchemaUpdateHasBeenSet = true; m_inputSchemaUpdate = std::move(value); }
123 inline InputUpdate& WithInputSchemaUpdate(const InputSchemaUpdate& value) { SetInputSchemaUpdate(value); return *this;}
124 inline InputUpdate& WithInputSchemaUpdate(InputSchemaUpdate&& value) { SetInputSchemaUpdate(std::move(value)); return *this;}
126
128
132 inline const InputParallelismUpdate& GetInputParallelismUpdate() const{ return m_inputParallelismUpdate; }
133 inline bool InputParallelismUpdateHasBeenSet() const { return m_inputParallelismUpdateHasBeenSet; }
134 inline void SetInputParallelismUpdate(const InputParallelismUpdate& value) { m_inputParallelismUpdateHasBeenSet = true; m_inputParallelismUpdate = value; }
135 inline void SetInputParallelismUpdate(InputParallelismUpdate&& value) { m_inputParallelismUpdateHasBeenSet = true; m_inputParallelismUpdate = std::move(value); }
139 private:
140
141 Aws::String m_inputId;
142 bool m_inputIdHasBeenSet = false;
143
144 Aws::String m_namePrefixUpdate;
145 bool m_namePrefixUpdateHasBeenSet = false;
146
147 InputProcessingConfigurationUpdate m_inputProcessingConfigurationUpdate;
148 bool m_inputProcessingConfigurationUpdateHasBeenSet = false;
149
150 KinesisStreamsInputUpdate m_kinesisStreamsInputUpdate;
151 bool m_kinesisStreamsInputUpdateHasBeenSet = false;
152
153 KinesisFirehoseInputUpdate m_kinesisFirehoseInputUpdate;
154 bool m_kinesisFirehoseInputUpdateHasBeenSet = false;
155
156 InputSchemaUpdate m_inputSchemaUpdate;
157 bool m_inputSchemaUpdateHasBeenSet = false;
158
159 InputParallelismUpdate m_inputParallelismUpdate;
160 bool m_inputParallelismUpdateHasBeenSet = false;
161 };
162
163} // namespace Model
164} // namespace KinesisAnalytics
165} // namespace Aws
InputUpdate & WithInputSchemaUpdate(InputSchemaUpdate &&value)
void SetKinesisStreamsInputUpdate(const KinesisStreamsInputUpdate &value)
Definition InputUpdate.h:94
const InputSchemaUpdate & GetInputSchemaUpdate() const
void SetInputParallelismUpdate(InputParallelismUpdate &&value)
void SetKinesisFirehoseInputUpdate(KinesisFirehoseInputUpdate &&value)
InputUpdate & WithInputId(Aws::String &&value)
Definition InputUpdate.h:56
void SetInputSchemaUpdate(InputSchemaUpdate &&value)
const InputProcessingConfigurationUpdate & GetInputProcessingConfigurationUpdate() const
Definition InputUpdate.h:79
void SetNamePrefixUpdate(const char *value)
Definition InputUpdate.h:69
const InputParallelismUpdate & GetInputParallelismUpdate() const
InputUpdate & WithKinesisStreamsInputUpdate(const KinesisStreamsInputUpdate &value)
Definition InputUpdate.h:96
void SetInputParallelismUpdate(const InputParallelismUpdate &value)
void SetInputSchemaUpdate(const InputSchemaUpdate &value)
void SetInputProcessingConfigurationUpdate(const InputProcessingConfigurationUpdate &value)
Definition InputUpdate.h:81
InputUpdate & WithInputProcessingConfigurationUpdate(InputProcessingConfigurationUpdate &&value)
Definition InputUpdate.h:84
InputUpdate & WithInputId(const char *value)
Definition InputUpdate.h:57
InputUpdate & WithInputParallelismUpdate(const InputParallelismUpdate &value)
AWS_KINESISANALYTICS_API InputUpdate(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetNamePrefixUpdate() const
Definition InputUpdate.h:65
void SetInputProcessingConfigurationUpdate(InputProcessingConfigurationUpdate &&value)
Definition InputUpdate.h:82
AWS_KINESISANALYTICS_API Aws::Utils::Json::JsonValue Jsonize() const
InputUpdate & WithNamePrefixUpdate(const char *value)
Definition InputUpdate.h:72
const Aws::String & GetInputId() const
Definition InputUpdate.h:50
InputUpdate & WithInputParallelismUpdate(InputParallelismUpdate &&value)
InputUpdate & WithKinesisFirehoseInputUpdate(KinesisFirehoseInputUpdate &&value)
AWS_KINESISANALYTICS_API InputUpdate()
void SetInputId(Aws::String &&value)
Definition InputUpdate.h:53
InputUpdate & WithInputId(const Aws::String &value)
Definition InputUpdate.h:55
const KinesisFirehoseInputUpdate & GetKinesisFirehoseInputUpdate() const
InputUpdate & WithKinesisStreamsInputUpdate(KinesisStreamsInputUpdate &&value)
Definition InputUpdate.h:97
AWS_KINESISANALYTICS_API InputUpdate & operator=(Aws::Utils::Json::JsonView jsonValue)
InputUpdate & WithNamePrefixUpdate(const Aws::String &value)
Definition InputUpdate.h:70
void SetKinesisStreamsInputUpdate(KinesisStreamsInputUpdate &&value)
Definition InputUpdate.h:95
void SetInputId(const Aws::String &value)
Definition InputUpdate.h:52
InputUpdate & WithNamePrefixUpdate(Aws::String &&value)
Definition InputUpdate.h:71
InputUpdate & WithInputProcessingConfigurationUpdate(const InputProcessingConfigurationUpdate &value)
Definition InputUpdate.h:83
InputUpdate & WithInputSchemaUpdate(const InputSchemaUpdate &value)
const KinesisStreamsInputUpdate & GetKinesisStreamsInputUpdate() const
Definition InputUpdate.h:92
void SetKinesisFirehoseInputUpdate(const KinesisFirehoseInputUpdate &value)
void SetNamePrefixUpdate(const Aws::String &value)
Definition InputUpdate.h:67
InputUpdate & WithKinesisFirehoseInputUpdate(const KinesisFirehoseInputUpdate &value)
void SetNamePrefixUpdate(Aws::String &&value)
Definition InputUpdate.h:68
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue