AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
Id3Insertion.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace MediaConvert {
20namespace Model {
21
31 public:
32 AWS_MEDIACONVERT_API Id3Insertion() = default;
33 AWS_MEDIACONVERT_API Id3Insertion(Aws::Utils::Json::JsonView jsonValue);
34 AWS_MEDIACONVERT_API Id3Insertion& operator=(Aws::Utils::Json::JsonView jsonValue);
35 AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const Aws::String& GetId3() const { return m_id3; }
42 inline bool Id3HasBeenSet() const { return m_id3HasBeenSet; }
43 template <typename Id3T = Aws::String>
44 void SetId3(Id3T&& value) {
45 m_id3HasBeenSet = true;
46 m_id3 = std::forward<Id3T>(value);
47 }
48 template <typename Id3T = Aws::String>
49 Id3Insertion& WithId3(Id3T&& value) {
50 SetId3(std::forward<Id3T>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetTimecode() const { return m_timecode; }
60 inline bool TimecodeHasBeenSet() const { return m_timecodeHasBeenSet; }
61 template <typename TimecodeT = Aws::String>
62 void SetTimecode(TimecodeT&& value) {
63 m_timecodeHasBeenSet = true;
64 m_timecode = std::forward<TimecodeT>(value);
65 }
66 template <typename TimecodeT = Aws::String>
67 Id3Insertion& WithTimecode(TimecodeT&& value) {
68 SetTimecode(std::forward<TimecodeT>(value));
69 return *this;
70 }
72 private:
73 Aws::String m_id3;
74
75 Aws::String m_timecode;
76 bool m_id3HasBeenSet = false;
77 bool m_timecodeHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace MediaConvert
82} // namespace Aws
Id3Insertion & WithTimecode(TimecodeT &&value)
AWS_MEDIACONVERT_API Id3Insertion & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetTimecode(TimecodeT &&value)
AWS_MEDIACONVERT_API Id3Insertion()=default
Id3Insertion & WithId3(Id3T &&value)
const Aws::String & GetId3() const
const Aws::String & GetTimecode() const
AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_MEDIACONVERT_API Id3Insertion(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue