AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
MediaStreamAttributesRequest.h
1
6#pragma once
7#include <aws/mediaconnect/MediaConnect_EXPORTS.h>
8#include <aws/mediaconnect/model/FmtpRequest.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 MediaConnect
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_MEDIACONNECT_API MediaStreamAttributesRequest() = default;
39 AWS_MEDIACONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const FmtpRequest& GetFmtp() const { return m_fmtp; }
47 inline bool FmtpHasBeenSet() const { return m_fmtpHasBeenSet; }
48 template<typename FmtpT = FmtpRequest>
49 void SetFmtp(FmtpT&& value) { m_fmtpHasBeenSet = true; m_fmtp = std::forward<FmtpT>(value); }
50 template<typename FmtpT = FmtpRequest>
51 MediaStreamAttributesRequest& WithFmtp(FmtpT&& value) { SetFmtp(std::forward<FmtpT>(value)); return *this;}
53
55
58 inline const Aws::String& GetLang() const { return m_lang; }
59 inline bool LangHasBeenSet() const { return m_langHasBeenSet; }
60 template<typename LangT = Aws::String>
61 void SetLang(LangT&& value) { m_langHasBeenSet = true; m_lang = std::forward<LangT>(value); }
62 template<typename LangT = Aws::String>
63 MediaStreamAttributesRequest& WithLang(LangT&& value) { SetLang(std::forward<LangT>(value)); return *this;}
65 private:
66
67 FmtpRequest m_fmtp;
68 bool m_fmtpHasBeenSet = false;
69
70 Aws::String m_lang;
71 bool m_langHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace MediaConnect
76} // namespace Aws
AWS_MEDIACONNECT_API MediaStreamAttributesRequest()=default
MediaStreamAttributesRequest & WithFmtp(FmtpT &&value)
AWS_MEDIACONNECT_API MediaStreamAttributesRequest & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDIACONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_MEDIACONNECT_API MediaStreamAttributesRequest(Aws::Utils::Json::JsonView jsonValue)
MediaStreamAttributesRequest & WithLang(LangT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue