AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
VideoOverlayInput.h
1
6#pragma once
7#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/mediaconvert/model/InputTimecodeSource.h>
11#include <aws/mediaconvert/model/VideoOverlayInputClipping.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace MediaConvert
25{
26namespace Model
27{
28
36 {
37 public:
38 AWS_MEDIACONVERT_API VideoOverlayInput() = default;
39 AWS_MEDIACONVERT_API VideoOverlayInput(Aws::Utils::Json::JsonView jsonValue);
40 AWS_MEDIACONVERT_API VideoOverlayInput& operator=(Aws::Utils::Json::JsonView jsonValue);
41 AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
50 inline const Aws::String& GetFileInput() const { return m_fileInput; }
51 inline bool FileInputHasBeenSet() const { return m_fileInputHasBeenSet; }
52 template<typename FileInputT = Aws::String>
53 void SetFileInput(FileInputT&& value) { m_fileInputHasBeenSet = true; m_fileInput = std::forward<FileInputT>(value); }
54 template<typename FileInputT = Aws::String>
55 VideoOverlayInput& WithFileInput(FileInputT&& value) { SetFileInput(std::forward<FileInputT>(value)); return *this;}
57
59
64 inline const Aws::Vector<VideoOverlayInputClipping>& GetInputClippings() const { return m_inputClippings; }
65 inline bool InputClippingsHasBeenSet() const { return m_inputClippingsHasBeenSet; }
66 template<typename InputClippingsT = Aws::Vector<VideoOverlayInputClipping>>
67 void SetInputClippings(InputClippingsT&& value) { m_inputClippingsHasBeenSet = true; m_inputClippings = std::forward<InputClippingsT>(value); }
68 template<typename InputClippingsT = Aws::Vector<VideoOverlayInputClipping>>
69 VideoOverlayInput& WithInputClippings(InputClippingsT&& value) { SetInputClippings(std::forward<InputClippingsT>(value)); return *this;}
70 template<typename InputClippingsT = VideoOverlayInputClipping>
71 VideoOverlayInput& AddInputClippings(InputClippingsT&& value) { m_inputClippingsHasBeenSet = true; m_inputClippings.emplace_back(std::forward<InputClippingsT>(value)); return *this; }
73
75
82 inline InputTimecodeSource GetTimecodeSource() const { return m_timecodeSource; }
83 inline bool TimecodeSourceHasBeenSet() const { return m_timecodeSourceHasBeenSet; }
84 inline void SetTimecodeSource(InputTimecodeSource value) { m_timecodeSourceHasBeenSet = true; m_timecodeSource = value; }
87
89
93 inline const Aws::String& GetTimecodeStart() const { return m_timecodeStart; }
94 inline bool TimecodeStartHasBeenSet() const { return m_timecodeStartHasBeenSet; }
95 template<typename TimecodeStartT = Aws::String>
96 void SetTimecodeStart(TimecodeStartT&& value) { m_timecodeStartHasBeenSet = true; m_timecodeStart = std::forward<TimecodeStartT>(value); }
97 template<typename TimecodeStartT = Aws::String>
98 VideoOverlayInput& WithTimecodeStart(TimecodeStartT&& value) { SetTimecodeStart(std::forward<TimecodeStartT>(value)); return *this;}
100 private:
101
102 Aws::String m_fileInput;
103 bool m_fileInputHasBeenSet = false;
104
106 bool m_inputClippingsHasBeenSet = false;
107
109 bool m_timecodeSourceHasBeenSet = false;
110
111 Aws::String m_timecodeStart;
112 bool m_timecodeStartHasBeenSet = false;
113 };
114
115} // namespace Model
116} // namespace MediaConvert
117} // namespace Aws
const Aws::Vector< VideoOverlayInputClipping > & GetInputClippings() const
VideoOverlayInput & WithFileInput(FileInputT &&value)
VideoOverlayInput & WithInputClippings(InputClippingsT &&value)
VideoOverlayInput & AddInputClippings(InputClippingsT &&value)
void SetInputClippings(InputClippingsT &&value)
AWS_MEDIACONVERT_API VideoOverlayInput()=default
void SetTimecodeStart(TimecodeStartT &&value)
VideoOverlayInput & WithTimecodeSource(InputTimecodeSource value)
AWS_MEDIACONVERT_API VideoOverlayInput & operator=(Aws::Utils::Json::JsonView jsonValue)
VideoOverlayInput & WithTimecodeStart(TimecodeStartT &&value)
void SetTimecodeSource(InputTimecodeSource value)
AWS_MEDIACONVERT_API VideoOverlayInput(Aws::Utils::Json::JsonView jsonValue)
InputTimecodeSource GetTimecodeSource() const
AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue