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

See Also:

AWS * API Reference

*/ class AWS_MEDIALIVE_API ArchiveContainerSettings { public: ArchiveContainerSettings(); ArchiveContainerSettings(Aws::Utils::Json::JsonView jsonValue); ArchiveContainerSettings& operator=(Aws::Utils::Json::JsonView jsonValue); 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 ArchiveContainerSettings& WithM2tsSettings(const M2tsSettings& value) { SetM2tsSettings(value); return *this;} inline ArchiveContainerSettings& WithM2tsSettings(M2tsSettings&& value) { SetM2tsSettings(std::move(value)); return *this;} private: M2tsSettings m_m2tsSettings; bool m_m2tsSettingsHasBeenSet; }; } // namespace Model } // namespace MediaLive } // namespace Aws