AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
TeletextSourceSettings.h
1
6#pragma once
7#include <aws/medialive/MediaLive_EXPORTS.h>
8#include <aws/medialive/model/CaptionRectangle.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 MediaLive
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_MEDIALIVE_API TeletextSourceSettings();
38 AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const CaptionRectangle& GetOutputRectangle() const{ return m_outputRectangle; }
46 inline bool OutputRectangleHasBeenSet() const { return m_outputRectangleHasBeenSet; }
47 inline void SetOutputRectangle(const CaptionRectangle& value) { m_outputRectangleHasBeenSet = true; m_outputRectangle = value; }
48 inline void SetOutputRectangle(CaptionRectangle&& value) { m_outputRectangleHasBeenSet = true; m_outputRectangle = std::move(value); }
50 inline TeletextSourceSettings& WithOutputRectangle(CaptionRectangle&& value) { SetOutputRectangle(std::move(value)); return *this;}
52
54
59 inline const Aws::String& GetPageNumber() const{ return m_pageNumber; }
60 inline bool PageNumberHasBeenSet() const { return m_pageNumberHasBeenSet; }
61 inline void SetPageNumber(const Aws::String& value) { m_pageNumberHasBeenSet = true; m_pageNumber = value; }
62 inline void SetPageNumber(Aws::String&& value) { m_pageNumberHasBeenSet = true; m_pageNumber = std::move(value); }
63 inline void SetPageNumber(const char* value) { m_pageNumberHasBeenSet = true; m_pageNumber.assign(value); }
64 inline TeletextSourceSettings& WithPageNumber(const Aws::String& value) { SetPageNumber(value); return *this;}
65 inline TeletextSourceSettings& WithPageNumber(Aws::String&& value) { SetPageNumber(std::move(value)); return *this;}
66 inline TeletextSourceSettings& WithPageNumber(const char* value) { SetPageNumber(value); return *this;}
68 private:
69
70 CaptionRectangle m_outputRectangle;
71 bool m_outputRectangleHasBeenSet = false;
72
73 Aws::String m_pageNumber;
74 bool m_pageNumberHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace MediaLive
79} // namespace Aws
TeletextSourceSettings & WithPageNumber(const Aws::String &value)
TeletextSourceSettings & WithOutputRectangle(CaptionRectangle &&value)
AWS_MEDIALIVE_API TeletextSourceSettings(Aws::Utils::Json::JsonView jsonValue)
void SetOutputRectangle(const CaptionRectangle &value)
TeletextSourceSettings & WithOutputRectangle(const CaptionRectangle &value)
TeletextSourceSettings & WithPageNumber(const char *value)
AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const
TeletextSourceSettings & WithPageNumber(Aws::String &&value)
AWS_MEDIALIVE_API TeletextSourceSettings & operator=(Aws::Utils::Json::JsonView jsonValue)
const CaptionRectangle & GetOutputRectangle() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue