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/kinesisanalyticsv2/KinesisAnalyticsV2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/kinesisanalyticsv2/model/InputProcessingConfigurationUpdate.h>
10#include <aws/kinesisanalyticsv2/model/KinesisStreamsInputUpdate.h>
11#include <aws/kinesisanalyticsv2/model/KinesisFirehoseInputUpdate.h>
12#include <aws/kinesisanalyticsv2/model/InputSchemaUpdate.h>
13#include <aws/kinesisanalyticsv2/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 KinesisAnalyticsV2
27{
28namespace Model
29{
30
39 {
40 public:
41 AWS_KINESISANALYTICSV2_API InputUpdate();
42 AWS_KINESISANALYTICSV2_API InputUpdate(Aws::Utils::Json::JsonView jsonValue);
43 AWS_KINESISANALYTICSV2_API InputUpdate& operator=(Aws::Utils::Json::JsonView jsonValue);
44 AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const;
45
46
48
51 inline const Aws::String& GetInputId() const{ return m_inputId; }
52 inline bool InputIdHasBeenSet() const { return m_inputIdHasBeenSet; }
53 inline void SetInputId(const Aws::String& value) { m_inputIdHasBeenSet = true; m_inputId = value; }
54 inline void SetInputId(Aws::String&& value) { m_inputIdHasBeenSet = true; m_inputId = std::move(value); }
55 inline void SetInputId(const char* value) { m_inputIdHasBeenSet = true; m_inputId.assign(value); }
56 inline InputUpdate& WithInputId(const Aws::String& value) { SetInputId(value); return *this;}
57 inline InputUpdate& WithInputId(Aws::String&& value) { SetInputId(std::move(value)); return *this;}
58 inline InputUpdate& WithInputId(const char* value) { SetInputId(value); return *this;}
60
62
66 inline const Aws::String& GetNamePrefixUpdate() const{ return m_namePrefixUpdate; }
67 inline bool NamePrefixUpdateHasBeenSet() const { return m_namePrefixUpdateHasBeenSet; }
68 inline void SetNamePrefixUpdate(const Aws::String& value) { m_namePrefixUpdateHasBeenSet = true; m_namePrefixUpdate = value; }
69 inline void SetNamePrefixUpdate(Aws::String&& value) { m_namePrefixUpdateHasBeenSet = true; m_namePrefixUpdate = std::move(value); }
70 inline void SetNamePrefixUpdate(const char* value) { m_namePrefixUpdateHasBeenSet = true; m_namePrefixUpdate.assign(value); }
71 inline InputUpdate& WithNamePrefixUpdate(const Aws::String& value) { SetNamePrefixUpdate(value); return *this;}
72 inline InputUpdate& WithNamePrefixUpdate(Aws::String&& value) { SetNamePrefixUpdate(std::move(value)); return *this;}
73 inline InputUpdate& WithNamePrefixUpdate(const char* value) { SetNamePrefixUpdate(value); return *this;}
75
77
80 inline const InputProcessingConfigurationUpdate& GetInputProcessingConfigurationUpdate() const{ return m_inputProcessingConfigurationUpdate; }
81 inline bool InputProcessingConfigurationUpdateHasBeenSet() const { return m_inputProcessingConfigurationUpdateHasBeenSet; }
82 inline void SetInputProcessingConfigurationUpdate(const InputProcessingConfigurationUpdate& value) { m_inputProcessingConfigurationUpdateHasBeenSet = true; m_inputProcessingConfigurationUpdate = value; }
83 inline void SetInputProcessingConfigurationUpdate(InputProcessingConfigurationUpdate&& value) { m_inputProcessingConfigurationUpdateHasBeenSet = true; m_inputProcessingConfigurationUpdate = std::move(value); }
87
89
93 inline const KinesisStreamsInputUpdate& GetKinesisStreamsInputUpdate() const{ return m_kinesisStreamsInputUpdate; }
94 inline bool KinesisStreamsInputUpdateHasBeenSet() const { return m_kinesisStreamsInputUpdateHasBeenSet; }
95 inline void SetKinesisStreamsInputUpdate(const KinesisStreamsInputUpdate& value) { m_kinesisStreamsInputUpdateHasBeenSet = true; m_kinesisStreamsInputUpdate = value; }
96 inline void SetKinesisStreamsInputUpdate(KinesisStreamsInputUpdate&& value) { m_kinesisStreamsInputUpdateHasBeenSet = true; m_kinesisStreamsInputUpdate = std::move(value); }
100
102
106 inline const KinesisFirehoseInputUpdate& GetKinesisFirehoseInputUpdate() const{ return m_kinesisFirehoseInputUpdate; }
107 inline bool KinesisFirehoseInputUpdateHasBeenSet() const { return m_kinesisFirehoseInputUpdateHasBeenSet; }
108 inline void SetKinesisFirehoseInputUpdate(const KinesisFirehoseInputUpdate& value) { m_kinesisFirehoseInputUpdateHasBeenSet = true; m_kinesisFirehoseInputUpdate = value; }
109 inline void SetKinesisFirehoseInputUpdate(KinesisFirehoseInputUpdate&& value) { m_kinesisFirehoseInputUpdateHasBeenSet = true; m_kinesisFirehoseInputUpdate = std::move(value); }
113
115
120 inline const InputSchemaUpdate& GetInputSchemaUpdate() const{ return m_inputSchemaUpdate; }
121 inline bool InputSchemaUpdateHasBeenSet() const { return m_inputSchemaUpdateHasBeenSet; }
122 inline void SetInputSchemaUpdate(const InputSchemaUpdate& value) { m_inputSchemaUpdateHasBeenSet = true; m_inputSchemaUpdate = value; }
123 inline void SetInputSchemaUpdate(InputSchemaUpdate&& value) { m_inputSchemaUpdateHasBeenSet = true; m_inputSchemaUpdate = std::move(value); }
124 inline InputUpdate& WithInputSchemaUpdate(const InputSchemaUpdate& value) { SetInputSchemaUpdate(value); return *this;}
125 inline InputUpdate& WithInputSchemaUpdate(InputSchemaUpdate&& value) { SetInputSchemaUpdate(std::move(value)); return *this;}
127
129
133 inline const InputParallelismUpdate& GetInputParallelismUpdate() const{ return m_inputParallelismUpdate; }
134 inline bool InputParallelismUpdateHasBeenSet() const { return m_inputParallelismUpdateHasBeenSet; }
135 inline void SetInputParallelismUpdate(const InputParallelismUpdate& value) { m_inputParallelismUpdateHasBeenSet = true; m_inputParallelismUpdate = value; }
136 inline void SetInputParallelismUpdate(InputParallelismUpdate&& value) { m_inputParallelismUpdateHasBeenSet = true; m_inputParallelismUpdate = std::move(value); }
140 private:
141
142 Aws::String m_inputId;
143 bool m_inputIdHasBeenSet = false;
144
145 Aws::String m_namePrefixUpdate;
146 bool m_namePrefixUpdateHasBeenSet = false;
147
148 InputProcessingConfigurationUpdate m_inputProcessingConfigurationUpdate;
149 bool m_inputProcessingConfigurationUpdateHasBeenSet = false;
150
151 KinesisStreamsInputUpdate m_kinesisStreamsInputUpdate;
152 bool m_kinesisStreamsInputUpdateHasBeenSet = false;
153
154 KinesisFirehoseInputUpdate m_kinesisFirehoseInputUpdate;
155 bool m_kinesisFirehoseInputUpdateHasBeenSet = false;
156
157 InputSchemaUpdate m_inputSchemaUpdate;
158 bool m_inputSchemaUpdateHasBeenSet = false;
159
160 InputParallelismUpdate m_inputParallelismUpdate;
161 bool m_inputParallelismUpdateHasBeenSet = false;
162 };
163
164} // namespace Model
165} // namespace KinesisAnalyticsV2
166} // namespace Aws
InputUpdate & WithInputId(Aws::String &&value)
Definition InputUpdate.h:57
InputUpdate & WithInputParallelismUpdate(const InputParallelismUpdate &value)
void SetInputParallelismUpdate(const InputParallelismUpdate &value)
InputUpdate & WithInputParallelismUpdate(InputParallelismUpdate &&value)
AWS_KINESISANALYTICSV2_API InputUpdate(Aws::Utils::Json::JsonView jsonValue)
InputUpdate & WithKinesisFirehoseInputUpdate(const KinesisFirehoseInputUpdate &value)
void SetInputSchemaUpdate(InputSchemaUpdate &&value)
const KinesisFirehoseInputUpdate & GetKinesisFirehoseInputUpdate() const
void SetNamePrefixUpdate(Aws::String &&value)
Definition InputUpdate.h:69
void SetInputId(const Aws::String &value)
Definition InputUpdate.h:53
void SetInputSchemaUpdate(const InputSchemaUpdate &value)
InputUpdate & WithInputId(const char *value)
Definition InputUpdate.h:58
void SetKinesisStreamsInputUpdate(const KinesisStreamsInputUpdate &value)
Definition InputUpdate.h:95
InputUpdate & WithKinesisFirehoseInputUpdate(KinesisFirehoseInputUpdate &&value)
const InputProcessingConfigurationUpdate & GetInputProcessingConfigurationUpdate() const
Definition InputUpdate.h:80
AWS_KINESISANALYTICSV2_API InputUpdate & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetNamePrefixUpdate() const
Definition InputUpdate.h:66
void SetNamePrefixUpdate(const Aws::String &value)
Definition InputUpdate.h:68
InputUpdate & WithKinesisStreamsInputUpdate(const KinesisStreamsInputUpdate &value)
Definition InputUpdate.h:97
const InputSchemaUpdate & GetInputSchemaUpdate() const
AWS_KINESISANALYTICSV2_API InputUpdate()
InputUpdate & WithInputProcessingConfigurationUpdate(InputProcessingConfigurationUpdate &&value)
Definition InputUpdate.h:85
void SetKinesisFirehoseInputUpdate(const KinesisFirehoseInputUpdate &value)
InputUpdate & WithInputSchemaUpdate(const InputSchemaUpdate &value)
InputUpdate & WithInputProcessingConfigurationUpdate(const InputProcessingConfigurationUpdate &value)
Definition InputUpdate.h:84
void SetNamePrefixUpdate(const char *value)
Definition InputUpdate.h:70
void SetInputParallelismUpdate(InputParallelismUpdate &&value)
InputUpdate & WithKinesisStreamsInputUpdate(KinesisStreamsInputUpdate &&value)
Definition InputUpdate.h:98
const Aws::String & GetInputId() const
Definition InputUpdate.h:51
void SetInputProcessingConfigurationUpdate(InputProcessingConfigurationUpdate &&value)
Definition InputUpdate.h:83
InputUpdate & WithNamePrefixUpdate(Aws::String &&value)
Definition InputUpdate.h:72
InputUpdate & WithInputId(const Aws::String &value)
Definition InputUpdate.h:56
const InputParallelismUpdate & GetInputParallelismUpdate() const
AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const
InputUpdate & WithNamePrefixUpdate(const char *value)
Definition InputUpdate.h:73
const KinesisStreamsInputUpdate & GetKinesisStreamsInputUpdate() const
Definition InputUpdate.h:93
void SetKinesisStreamsInputUpdate(KinesisStreamsInputUpdate &&value)
Definition InputUpdate.h:96
void SetKinesisFirehoseInputUpdate(KinesisFirehoseInputUpdate &&value)
void SetInputProcessingConfigurationUpdate(const InputProcessingConfigurationUpdate &value)
Definition InputUpdate.h:82
InputUpdate & WithInputSchemaUpdate(InputSchemaUpdate &&value)
InputUpdate & WithNamePrefixUpdate(const Aws::String &value)
Definition InputUpdate.h:71
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue