AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
DashDvbFontDownload.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/mediapackagev2/Mediapackagev2_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace mediapackagev2 {
20namespace Model {
21
30 public:
31 AWS_MEDIAPACKAGEV2_API DashDvbFontDownload() = default;
32 AWS_MEDIAPACKAGEV2_API DashDvbFontDownload(Aws::Utils::Json::JsonView jsonValue);
33 AWS_MEDIAPACKAGEV2_API DashDvbFontDownload& operator=(Aws::Utils::Json::JsonView jsonValue);
34 AWS_MEDIAPACKAGEV2_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const Aws::String& GetUrl() const { return m_url; }
41 inline bool UrlHasBeenSet() const { return m_urlHasBeenSet; }
42 template <typename UrlT = Aws::String>
43 void SetUrl(UrlT&& value) {
44 m_urlHasBeenSet = true;
45 m_url = std::forward<UrlT>(value);
46 }
47 template <typename UrlT = Aws::String>
49 SetUrl(std::forward<UrlT>(value));
50 return *this;
51 }
53
55
62 inline const Aws::String& GetMimeType() const { return m_mimeType; }
63 inline bool MimeTypeHasBeenSet() const { return m_mimeTypeHasBeenSet; }
64 template <typename MimeTypeT = Aws::String>
65 void SetMimeType(MimeTypeT&& value) {
66 m_mimeTypeHasBeenSet = true;
67 m_mimeType = std::forward<MimeTypeT>(value);
68 }
69 template <typename MimeTypeT = Aws::String>
70 DashDvbFontDownload& WithMimeType(MimeTypeT&& value) {
71 SetMimeType(std::forward<MimeTypeT>(value));
72 return *this;
73 }
75
77
82 inline const Aws::String& GetFontFamily() const { return m_fontFamily; }
83 inline bool FontFamilyHasBeenSet() const { return m_fontFamilyHasBeenSet; }
84 template <typename FontFamilyT = Aws::String>
85 void SetFontFamily(FontFamilyT&& value) {
86 m_fontFamilyHasBeenSet = true;
87 m_fontFamily = std::forward<FontFamilyT>(value);
88 }
89 template <typename FontFamilyT = Aws::String>
90 DashDvbFontDownload& WithFontFamily(FontFamilyT&& value) {
91 SetFontFamily(std::forward<FontFamilyT>(value));
92 return *this;
93 }
95 private:
96 Aws::String m_url;
97
98 Aws::String m_mimeType;
99
100 Aws::String m_fontFamily;
101 bool m_urlHasBeenSet = false;
102 bool m_mimeTypeHasBeenSet = false;
103 bool m_fontFamilyHasBeenSet = false;
104};
105
106} // namespace Model
107} // namespace mediapackagev2
108} // namespace Aws
DashDvbFontDownload & WithUrl(UrlT &&value)
AWS_MEDIAPACKAGEV2_API DashDvbFontDownload()=default
DashDvbFontDownload & WithFontFamily(FontFamilyT &&value)
DashDvbFontDownload & WithMimeType(MimeTypeT &&value)
AWS_MEDIAPACKAGEV2_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_MEDIAPACKAGEV2_API DashDvbFontDownload & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDIAPACKAGEV2_API DashDvbFontDownload(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue