/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace MediaConvert { namespace Model { OutputGroupSettings::OutputGroupSettings() : m_cmafGroupSettingsHasBeenSet(false), m_dashIsoGroupSettingsHasBeenSet(false), m_fileGroupSettingsHasBeenSet(false), m_hlsGroupSettingsHasBeenSet(false), m_msSmoothGroupSettingsHasBeenSet(false), m_type(OutputGroupType::NOT_SET), m_typeHasBeenSet(false) { } OutputGroupSettings::OutputGroupSettings(JsonView jsonValue) : m_cmafGroupSettingsHasBeenSet(false), m_dashIsoGroupSettingsHasBeenSet(false), m_fileGroupSettingsHasBeenSet(false), m_hlsGroupSettingsHasBeenSet(false), m_msSmoothGroupSettingsHasBeenSet(false), m_type(OutputGroupType::NOT_SET), m_typeHasBeenSet(false) { *this = jsonValue; } OutputGroupSettings& OutputGroupSettings::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("cmafGroupSettings")) { m_cmafGroupSettings = jsonValue.GetObject("cmafGroupSettings"); m_cmafGroupSettingsHasBeenSet = true; } if(jsonValue.ValueExists("dashIsoGroupSettings")) { m_dashIsoGroupSettings = jsonValue.GetObject("dashIsoGroupSettings"); m_dashIsoGroupSettingsHasBeenSet = true; } if(jsonValue.ValueExists("fileGroupSettings")) { m_fileGroupSettings = jsonValue.GetObject("fileGroupSettings"); m_fileGroupSettingsHasBeenSet = true; } if(jsonValue.ValueExists("hlsGroupSettings")) { m_hlsGroupSettings = jsonValue.GetObject("hlsGroupSettings"); m_hlsGroupSettingsHasBeenSet = true; } if(jsonValue.ValueExists("msSmoothGroupSettings")) { m_msSmoothGroupSettings = jsonValue.GetObject("msSmoothGroupSettings"); m_msSmoothGroupSettingsHasBeenSet = true; } if(jsonValue.ValueExists("type")) { m_type = OutputGroupTypeMapper::GetOutputGroupTypeForName(jsonValue.GetString("type")); m_typeHasBeenSet = true; } return *this; } JsonValue OutputGroupSettings::Jsonize() const { JsonValue payload; if(m_cmafGroupSettingsHasBeenSet) { payload.WithObject("cmafGroupSettings", m_cmafGroupSettings.Jsonize()); } if(m_dashIsoGroupSettingsHasBeenSet) { payload.WithObject("dashIsoGroupSettings", m_dashIsoGroupSettings.Jsonize()); } if(m_fileGroupSettingsHasBeenSet) { payload.WithObject("fileGroupSettings", m_fileGroupSettings.Jsonize()); } if(m_hlsGroupSettingsHasBeenSet) { payload.WithObject("hlsGroupSettings", m_hlsGroupSettings.Jsonize()); } if(m_msSmoothGroupSettingsHasBeenSet) { payload.WithObject("msSmoothGroupSettings", m_msSmoothGroupSettings.Jsonize()); } if(m_typeHasBeenSet) { payload.WithString("type", OutputGroupTypeMapper::GetNameForOutputGroupType(m_type)); } return payload; } } // namespace Model } // namespace MediaConvert } // namespace Aws