AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
TimedMetadataInsertion.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSVector.h>
8#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
9#include <aws/mediaconvert/model/Id3Insertion.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace MediaConvert {
21namespace Model {
22
31 public:
32 AWS_MEDIACONVERT_API TimedMetadataInsertion() = default;
33 AWS_MEDIACONVERT_API TimedMetadataInsertion(Aws::Utils::Json::JsonView jsonValue);
35 AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const Aws::Vector<Id3Insertion>& GetId3Insertions() const { return m_id3Insertions; }
42 inline bool Id3InsertionsHasBeenSet() const { return m_id3InsertionsHasBeenSet; }
43 template <typename Id3InsertionsT = Aws::Vector<Id3Insertion>>
44 void SetId3Insertions(Id3InsertionsT&& value) {
45 m_id3InsertionsHasBeenSet = true;
46 m_id3Insertions = std::forward<Id3InsertionsT>(value);
47 }
48 template <typename Id3InsertionsT = Aws::Vector<Id3Insertion>>
49 TimedMetadataInsertion& WithId3Insertions(Id3InsertionsT&& value) {
50 SetId3Insertions(std::forward<Id3InsertionsT>(value));
51 return *this;
52 }
53 template <typename Id3InsertionsT = Id3Insertion>
54 TimedMetadataInsertion& AddId3Insertions(Id3InsertionsT&& value) {
55 m_id3InsertionsHasBeenSet = true;
56 m_id3Insertions.emplace_back(std::forward<Id3InsertionsT>(value));
57 return *this;
58 }
60 private:
61 Aws::Vector<Id3Insertion> m_id3Insertions;
62 bool m_id3InsertionsHasBeenSet = false;
63};
64
65} // namespace Model
66} // namespace MediaConvert
67} // namespace Aws
AWS_MEDIACONVERT_API TimedMetadataInsertion & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::Vector< Id3Insertion > & GetId3Insertions() const
TimedMetadataInsertion & WithId3Insertions(Id3InsertionsT &&value)
AWS_MEDIACONVERT_API TimedMetadataInsertion(Aws::Utils::Json::JsonView jsonValue)
TimedMetadataInsertion & AddId3Insertions(Id3InsertionsT &&value)
AWS_MEDIACONVERT_API TimedMetadataInsertion()=default
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue