/** * 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 MediaConvert { namespace Model { /** * Settings for F4v container

See Also:

AWS * API Reference

*/ class F4vSettings { public: AWS_MEDIACONVERT_API F4vSettings(); AWS_MEDIACONVERT_API F4vSettings(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIACONVERT_API F4vSettings& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const; /** * If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of * the archive as required for progressive downloading. Otherwise it is placed * normally at the end. */ inline const F4vMoovPlacement& GetMoovPlacement() const{ return m_moovPlacement; } /** * If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of * the archive as required for progressive downloading. Otherwise it is placed * normally at the end. */ inline bool MoovPlacementHasBeenSet() const { return m_moovPlacementHasBeenSet; } /** * If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of * the archive as required for progressive downloading. Otherwise it is placed * normally at the end. */ inline void SetMoovPlacement(const F4vMoovPlacement& value) { m_moovPlacementHasBeenSet = true; m_moovPlacement = value; } /** * If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of * the archive as required for progressive downloading. Otherwise it is placed * normally at the end. */ inline void SetMoovPlacement(F4vMoovPlacement&& value) { m_moovPlacementHasBeenSet = true; m_moovPlacement = std::move(value); } /** * If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of * the archive as required for progressive downloading. Otherwise it is placed * normally at the end. */ inline F4vSettings& WithMoovPlacement(const F4vMoovPlacement& value) { SetMoovPlacement(value); return *this;} /** * If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of * the archive as required for progressive downloading. Otherwise it is placed * normally at the end. */ inline F4vSettings& WithMoovPlacement(F4vMoovPlacement&& value) { SetMoovPlacement(std::move(value)); return *this;} private: F4vMoovPlacement m_moovPlacement; bool m_moovPlacementHasBeenSet = false; }; } // namespace Model } // namespace MediaConvert } // namespace Aws