AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
Id3Insertion.h
1
6#pragma once
7#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace MediaConvert
22{
23namespace Model
24{
25
35 {
36 public:
37 AWS_MEDIACONVERT_API Id3Insertion() = default;
38 AWS_MEDIACONVERT_API Id3Insertion(Aws::Utils::Json::JsonView jsonValue);
39 AWS_MEDIACONVERT_API Id3Insertion& operator=(Aws::Utils::Json::JsonView jsonValue);
40 AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline const Aws::String& GetId3() const { return m_id3; }
48 inline bool Id3HasBeenSet() const { return m_id3HasBeenSet; }
49 template<typename Id3T = Aws::String>
50 void SetId3(Id3T&& value) { m_id3HasBeenSet = true; m_id3 = std::forward<Id3T>(value); }
51 template<typename Id3T = Aws::String>
52 Id3Insertion& WithId3(Id3T&& value) { SetId3(std::forward<Id3T>(value)); return *this;}
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) { m_timecodeHasBeenSet = true; m_timecode = std::forward<TimecodeT>(value); }
63 template<typename TimecodeT = Aws::String>
64 Id3Insertion& WithTimecode(TimecodeT&& value) { SetTimecode(std::forward<TimecodeT>(value)); return *this;}
66 private:
67
68 Aws::String m_id3;
69 bool m_id3HasBeenSet = false;
70
71 Aws::String m_timecode;
72 bool m_timecodeHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace MediaConvert
77} // 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