AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
TimecodeBurnin.h
1
6#pragma once
7#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
8#include <aws/mediaconvert/model/TimecodeBurninPosition.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace MediaConvert
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_MEDIACONVERT_API TimecodeBurnin();
37 AWS_MEDIACONVERT_API TimecodeBurnin(Aws::Utils::Json::JsonView jsonValue);
38 AWS_MEDIACONVERT_API TimecodeBurnin& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline int GetFontSize() const{ return m_fontSize; }
48 inline bool FontSizeHasBeenSet() const { return m_fontSizeHasBeenSet; }
49 inline void SetFontSize(int value) { m_fontSizeHasBeenSet = true; m_fontSize = value; }
50 inline TimecodeBurnin& WithFontSize(int value) { SetFontSize(value); return *this;}
52
54
58 inline const TimecodeBurninPosition& GetPosition() const{ return m_position; }
59 inline bool PositionHasBeenSet() const { return m_positionHasBeenSet; }
60 inline void SetPosition(const TimecodeBurninPosition& value) { m_positionHasBeenSet = true; m_position = value; }
61 inline void SetPosition(TimecodeBurninPosition&& value) { m_positionHasBeenSet = true; m_position = std::move(value); }
62 inline TimecodeBurnin& WithPosition(const TimecodeBurninPosition& value) { SetPosition(value); return *this;}
63 inline TimecodeBurnin& WithPosition(TimecodeBurninPosition&& value) { SetPosition(std::move(value)); return *this;}
65
67
74 inline const Aws::String& GetPrefix() const{ return m_prefix; }
75 inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; }
76 inline void SetPrefix(const Aws::String& value) { m_prefixHasBeenSet = true; m_prefix = value; }
77 inline void SetPrefix(Aws::String&& value) { m_prefixHasBeenSet = true; m_prefix = std::move(value); }
78 inline void SetPrefix(const char* value) { m_prefixHasBeenSet = true; m_prefix.assign(value); }
79 inline TimecodeBurnin& WithPrefix(const Aws::String& value) { SetPrefix(value); return *this;}
80 inline TimecodeBurnin& WithPrefix(Aws::String&& value) { SetPrefix(std::move(value)); return *this;}
81 inline TimecodeBurnin& WithPrefix(const char* value) { SetPrefix(value); return *this;}
83 private:
84
85 int m_fontSize;
86 bool m_fontSizeHasBeenSet = false;
87
88 TimecodeBurninPosition m_position;
89 bool m_positionHasBeenSet = false;
90
91 Aws::String m_prefix;
92 bool m_prefixHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace MediaConvert
97} // namespace Aws
TimecodeBurnin & WithPrefix(const Aws::String &value)
AWS_MEDIACONVERT_API TimecodeBurnin & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetPosition(TimecodeBurninPosition &&value)
TimecodeBurnin & WithPosition(TimecodeBurninPosition &&value)
void SetPrefix(const Aws::String &value)
TimecodeBurnin & WithPrefix(Aws::String &&value)
const Aws::String & GetPrefix() const
void SetPosition(const TimecodeBurninPosition &value)
TimecodeBurnin & WithFontSize(int value)
TimecodeBurnin & WithPosition(const TimecodeBurninPosition &value)
const TimecodeBurninPosition & GetPosition() const
AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const
TimecodeBurnin & WithPrefix(const char *value)
AWS_MEDIACONVERT_API TimecodeBurnin(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue