/** * 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 { /** * Udp Container Settings

See Also:

AWS * API Reference

*/ class UdpContainerSettings { public: AWS_MEDIALIVE_API UdpContainerSettings(); AWS_MEDIALIVE_API UdpContainerSettings(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API UdpContainerSettings& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const; inline const M2tsSettings& GetM2tsSettings() const{ return m_m2tsSettings; } inline bool M2tsSettingsHasBeenSet() const { return m_m2tsSettingsHasBeenSet; } inline void SetM2tsSettings(const M2tsSettings& value) { m_m2tsSettingsHasBeenSet = true; m_m2tsSettings = value; } inline void SetM2tsSettings(M2tsSettings&& value) { m_m2tsSettingsHasBeenSet = true; m_m2tsSettings = std::move(value); } inline UdpContainerSettings& WithM2tsSettings(const M2tsSettings& value) { SetM2tsSettings(value); return *this;} inline UdpContainerSettings& WithM2tsSettings(M2tsSettings&& value) { SetM2tsSettings(std::move(value)); return *this;} private: M2tsSettings m_m2tsSettings; bool m_m2tsSettingsHasBeenSet = false; }; } // namespace Model } // namespace MediaLive } // namespace Aws