AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
InsertableImage.h
1
6#pragma once
7#include <aws/mediaconvert/MediaConvert_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 MediaConvert
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_MEDIACONVERT_API InsertableImage();
36 AWS_MEDIACONVERT_API InsertableImage(Aws::Utils::Json::JsonView jsonValue);
37 AWS_MEDIACONVERT_API InsertableImage& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline int GetDuration() const{ return m_duration; }
47 inline bool DurationHasBeenSet() const { return m_durationHasBeenSet; }
48 inline void SetDuration(int value) { m_durationHasBeenSet = true; m_duration = value; }
49 inline InsertableImage& WithDuration(int value) { SetDuration(value); return *this;}
51
53
60 inline int GetFadeIn() const{ return m_fadeIn; }
61 inline bool FadeInHasBeenSet() const { return m_fadeInHasBeenSet; }
62 inline void SetFadeIn(int value) { m_fadeInHasBeenSet = true; m_fadeIn = value; }
63 inline InsertableImage& WithFadeIn(int value) { SetFadeIn(value); return *this;}
65
67
73 inline int GetFadeOut() const{ return m_fadeOut; }
74 inline bool FadeOutHasBeenSet() const { return m_fadeOutHasBeenSet; }
75 inline void SetFadeOut(int value) { m_fadeOutHasBeenSet = true; m_fadeOut = value; }
76 inline InsertableImage& WithFadeOut(int value) { SetFadeOut(value); return *this;}
78
80
86 inline int GetHeight() const{ return m_height; }
87 inline bool HeightHasBeenSet() const { return m_heightHasBeenSet; }
88 inline void SetHeight(int value) { m_heightHasBeenSet = true; m_height = value; }
89 inline InsertableImage& WithHeight(int value) { SetHeight(value); return *this;}
91
93
97 inline const Aws::String& GetImageInserterInput() const{ return m_imageInserterInput; }
98 inline bool ImageInserterInputHasBeenSet() const { return m_imageInserterInputHasBeenSet; }
99 inline void SetImageInserterInput(const Aws::String& value) { m_imageInserterInputHasBeenSet = true; m_imageInserterInput = value; }
100 inline void SetImageInserterInput(Aws::String&& value) { m_imageInserterInputHasBeenSet = true; m_imageInserterInput = std::move(value); }
101 inline void SetImageInserterInput(const char* value) { m_imageInserterInputHasBeenSet = true; m_imageInserterInput.assign(value); }
102 inline InsertableImage& WithImageInserterInput(const Aws::String& value) { SetImageInserterInput(value); return *this;}
103 inline InsertableImage& WithImageInserterInput(Aws::String&& value) { SetImageInserterInput(std::move(value)); return *this;}
104 inline InsertableImage& WithImageInserterInput(const char* value) { SetImageInserterInput(value); return *this;}
106
108
112 inline int GetImageX() const{ return m_imageX; }
113 inline bool ImageXHasBeenSet() const { return m_imageXHasBeenSet; }
114 inline void SetImageX(int value) { m_imageXHasBeenSet = true; m_imageX = value; }
115 inline InsertableImage& WithImageX(int value) { SetImageX(value); return *this;}
117
119
123 inline int GetImageY() const{ return m_imageY; }
124 inline bool ImageYHasBeenSet() const { return m_imageYHasBeenSet; }
125 inline void SetImageY(int value) { m_imageYHasBeenSet = true; m_imageY = value; }
126 inline InsertableImage& WithImageY(int value) { SetImageY(value); return *this;}
128
130
134 inline int GetLayer() const{ return m_layer; }
135 inline bool LayerHasBeenSet() const { return m_layerHasBeenSet; }
136 inline void SetLayer(int value) { m_layerHasBeenSet = true; m_layer = value; }
137 inline InsertableImage& WithLayer(int value) { SetLayer(value); return *this;}
139
141
145 inline int GetOpacity() const{ return m_opacity; }
146 inline bool OpacityHasBeenSet() const { return m_opacityHasBeenSet; }
147 inline void SetOpacity(int value) { m_opacityHasBeenSet = true; m_opacity = value; }
148 inline InsertableImage& WithOpacity(int value) { SetOpacity(value); return *this;}
150
152
157 inline const Aws::String& GetStartTime() const{ return m_startTime; }
158 inline bool StartTimeHasBeenSet() const { return m_startTimeHasBeenSet; }
159 inline void SetStartTime(const Aws::String& value) { m_startTimeHasBeenSet = true; m_startTime = value; }
160 inline void SetStartTime(Aws::String&& value) { m_startTimeHasBeenSet = true; m_startTime = std::move(value); }
161 inline void SetStartTime(const char* value) { m_startTimeHasBeenSet = true; m_startTime.assign(value); }
162 inline InsertableImage& WithStartTime(const Aws::String& value) { SetStartTime(value); return *this;}
163 inline InsertableImage& WithStartTime(Aws::String&& value) { SetStartTime(std::move(value)); return *this;}
164 inline InsertableImage& WithStartTime(const char* value) { SetStartTime(value); return *this;}
166
168
173 inline int GetWidth() const{ return m_width; }
174 inline bool WidthHasBeenSet() const { return m_widthHasBeenSet; }
175 inline void SetWidth(int value) { m_widthHasBeenSet = true; m_width = value; }
176 inline InsertableImage& WithWidth(int value) { SetWidth(value); return *this;}
178 private:
179
180 int m_duration;
181 bool m_durationHasBeenSet = false;
182
183 int m_fadeIn;
184 bool m_fadeInHasBeenSet = false;
185
186 int m_fadeOut;
187 bool m_fadeOutHasBeenSet = false;
188
189 int m_height;
190 bool m_heightHasBeenSet = false;
191
192 Aws::String m_imageInserterInput;
193 bool m_imageInserterInputHasBeenSet = false;
194
195 int m_imageX;
196 bool m_imageXHasBeenSet = false;
197
198 int m_imageY;
199 bool m_imageYHasBeenSet = false;
200
201 int m_layer;
202 bool m_layerHasBeenSet = false;
203
204 int m_opacity;
205 bool m_opacityHasBeenSet = false;
206
207 Aws::String m_startTime;
208 bool m_startTimeHasBeenSet = false;
209
210 int m_width;
211 bool m_widthHasBeenSet = false;
212 };
213
214} // namespace Model
215} // namespace MediaConvert
216} // namespace Aws
AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const
void SetStartTime(const Aws::String &value)
InsertableImage & WithImageY(int value)
InsertableImage & WithWidth(int value)
InsertableImage & WithImageInserterInput(const Aws::String &value)
InsertableImage & WithImageInserterInput(Aws::String &&value)
InsertableImage & WithLayer(int value)
AWS_MEDIACONVERT_API InsertableImage & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetStartTime() const
InsertableImage & WithOpacity(int value)
const Aws::String & GetImageInserterInput() const
InsertableImage & WithImageInserterInput(const char *value)
InsertableImage & WithDuration(int value)
InsertableImage & WithFadeOut(int value)
InsertableImage & WithStartTime(Aws::String &&value)
InsertableImage & WithFadeIn(int value)
InsertableImage & WithStartTime(const Aws::String &value)
void SetImageInserterInput(Aws::String &&value)
void SetImageInserterInput(const Aws::String &value)
AWS_MEDIACONVERT_API InsertableImage(Aws::Utils::Json::JsonView jsonValue)
InsertableImage & WithImageX(int value)
InsertableImage & WithHeight(int value)
InsertableImage & WithStartTime(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue