/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace MediaConvert { namespace Model { /** * Enable Timed metadata insertion (TimedMetadataInsertion) to include ID3 tags in * your job. To include timed metadata, you must enable it here, enable it in each * output container, and specify tags and timecodes in ID3 insertion (Id3Insertion) * objects.

See Also:

AWS * API Reference

*/ class AWS_MEDIACONVERT_API TimedMetadataInsertion { public: TimedMetadataInsertion(); TimedMetadataInsertion(Aws::Utils::Json::JsonView jsonValue); TimedMetadataInsertion& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** * Id3Insertions contains the array of Id3Insertion instances. */ inline const Aws::Vector& GetId3Insertions() const{ return m_id3Insertions; } /** * Id3Insertions contains the array of Id3Insertion instances. */ inline bool Id3InsertionsHasBeenSet() const { return m_id3InsertionsHasBeenSet; } /** * Id3Insertions contains the array of Id3Insertion instances. */ inline void SetId3Insertions(const Aws::Vector& value) { m_id3InsertionsHasBeenSet = true; m_id3Insertions = value; } /** * Id3Insertions contains the array of Id3Insertion instances. */ inline void SetId3Insertions(Aws::Vector&& value) { m_id3InsertionsHasBeenSet = true; m_id3Insertions = std::move(value); } /** * Id3Insertions contains the array of Id3Insertion instances. */ inline TimedMetadataInsertion& WithId3Insertions(const Aws::Vector& value) { SetId3Insertions(value); return *this;} /** * Id3Insertions contains the array of Id3Insertion instances. */ inline TimedMetadataInsertion& WithId3Insertions(Aws::Vector&& value) { SetId3Insertions(std::move(value)); return *this;} /** * Id3Insertions contains the array of Id3Insertion instances. */ inline TimedMetadataInsertion& AddId3Insertions(const Id3Insertion& value) { m_id3InsertionsHasBeenSet = true; m_id3Insertions.push_back(value); return *this; } /** * Id3Insertions contains the array of Id3Insertion instances. */ inline TimedMetadataInsertion& AddId3Insertions(Id3Insertion&& value) { m_id3InsertionsHasBeenSet = true; m_id3Insertions.push_back(std::move(value)); return *this; } private: Aws::Vector m_id3Insertions; bool m_id3InsertionsHasBeenSet; }; } // namespace Model } // namespace MediaConvert } // namespace Aws