/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace MediaLive { namespace Model { /** * Settings for the action to emit HLS metadata

See Also:

AWS * API Reference

*/ class HlsTimedMetadataScheduleActionSettings { public: AWS_MEDIALIVE_API HlsTimedMetadataScheduleActionSettings(); AWS_MEDIALIVE_API HlsTimedMetadataScheduleActionSettings(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API HlsTimedMetadataScheduleActionSettings& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const; /** * Base64 string formatted according to the ID3 specification: * http://id3.org/id3v2.4.0-structure */ inline const Aws::String& GetId3() const{ return m_id3; } /** * Base64 string formatted according to the ID3 specification: * http://id3.org/id3v2.4.0-structure */ inline bool Id3HasBeenSet() const { return m_id3HasBeenSet; } /** * Base64 string formatted according to the ID3 specification: * http://id3.org/id3v2.4.0-structure */ inline void SetId3(const Aws::String& value) { m_id3HasBeenSet = true; m_id3 = value; } /** * Base64 string formatted according to the ID3 specification: * http://id3.org/id3v2.4.0-structure */ inline void SetId3(Aws::String&& value) { m_id3HasBeenSet = true; m_id3 = std::move(value); } /** * Base64 string formatted according to the ID3 specification: * http://id3.org/id3v2.4.0-structure */ inline void SetId3(const char* value) { m_id3HasBeenSet = true; m_id3.assign(value); } /** * Base64 string formatted according to the ID3 specification: * http://id3.org/id3v2.4.0-structure */ inline HlsTimedMetadataScheduleActionSettings& WithId3(const Aws::String& value) { SetId3(value); return *this;} /** * Base64 string formatted according to the ID3 specification: * http://id3.org/id3v2.4.0-structure */ inline HlsTimedMetadataScheduleActionSettings& WithId3(Aws::String&& value) { SetId3(std::move(value)); return *this;} /** * Base64 string formatted according to the ID3 specification: * http://id3.org/id3v2.4.0-structure */ inline HlsTimedMetadataScheduleActionSettings& WithId3(const char* value) { SetId3(value); return *this;} private: Aws::String m_id3; bool m_id3HasBeenSet = false; }; } // namespace Model } // namespace MediaLive } // namespace Aws