/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::Utils::Xml; using namespace Aws::Utils; namespace Aws { namespace RDS { namespace Model { EventCategoriesMap::EventCategoriesMap() : m_sourceTypeHasBeenSet(false), m_eventCategoriesHasBeenSet(false) { } EventCategoriesMap::EventCategoriesMap(const XmlNode& xmlNode) : m_sourceTypeHasBeenSet(false), m_eventCategoriesHasBeenSet(false) { *this = xmlNode; } EventCategoriesMap& EventCategoriesMap::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode sourceTypeNode = resultNode.FirstChild("SourceType"); if(!sourceTypeNode.IsNull()) { m_sourceType = Aws::Utils::Xml::DecodeEscapedXmlText(sourceTypeNode.GetText()); m_sourceTypeHasBeenSet = true; } XmlNode eventCategoriesNode = resultNode.FirstChild("EventCategories"); if(!eventCategoriesNode.IsNull()) { XmlNode eventCategoriesMember = eventCategoriesNode.FirstChild("EventCategory"); while(!eventCategoriesMember.IsNull()) { m_eventCategories.push_back(eventCategoriesMember.GetText()); eventCategoriesMember = eventCategoriesMember.NextNode("EventCategory"); } m_eventCategoriesHasBeenSet = true; } } return *this; } void EventCategoriesMap::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_sourceTypeHasBeenSet) { oStream << location << index << locationValue << ".SourceType=" << StringUtils::URLEncode(m_sourceType.c_str()) << "&"; } if(m_eventCategoriesHasBeenSet) { unsigned eventCategoriesIdx = 1; for(auto& item : m_eventCategories) { oStream << location << index << locationValue << ".EventCategory." << eventCategoriesIdx++ << "=" << StringUtils::URLEncode(item.c_str()) << "&"; } } } void EventCategoriesMap::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_sourceTypeHasBeenSet) { oStream << location << ".SourceType=" << StringUtils::URLEncode(m_sourceType.c_str()) << "&"; } if(m_eventCategoriesHasBeenSet) { unsigned eventCategoriesIdx = 1; for(auto& item : m_eventCategories) { oStream << location << ".EventCategory." << eventCategoriesIdx++ << "=" << StringUtils::URLEncode(item.c_str()) << "&"; } } } } // namespace Model } // namespace RDS } // namespace Aws