/** * 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 EC2 { namespace Model { LaunchTemplateCpuOptions::LaunchTemplateCpuOptions() : m_coreCount(0), m_coreCountHasBeenSet(false), m_threadsPerCore(0), m_threadsPerCoreHasBeenSet(false), m_amdSevSnp(AmdSevSnpSpecification::NOT_SET), m_amdSevSnpHasBeenSet(false) { } LaunchTemplateCpuOptions::LaunchTemplateCpuOptions(const XmlNode& xmlNode) : m_coreCount(0), m_coreCountHasBeenSet(false), m_threadsPerCore(0), m_threadsPerCoreHasBeenSet(false), m_amdSevSnp(AmdSevSnpSpecification::NOT_SET), m_amdSevSnpHasBeenSet(false) { *this = xmlNode; } LaunchTemplateCpuOptions& LaunchTemplateCpuOptions::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode coreCountNode = resultNode.FirstChild("coreCount"); if(!coreCountNode.IsNull()) { m_coreCount = StringUtils::ConvertToInt32(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(coreCountNode.GetText()).c_str()).c_str()); m_coreCountHasBeenSet = true; } XmlNode threadsPerCoreNode = resultNode.FirstChild("threadsPerCore"); if(!threadsPerCoreNode.IsNull()) { m_threadsPerCore = StringUtils::ConvertToInt32(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(threadsPerCoreNode.GetText()).c_str()).c_str()); m_threadsPerCoreHasBeenSet = true; } XmlNode amdSevSnpNode = resultNode.FirstChild("amdSevSnp"); if(!amdSevSnpNode.IsNull()) { m_amdSevSnp = AmdSevSnpSpecificationMapper::GetAmdSevSnpSpecificationForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(amdSevSnpNode.GetText()).c_str()).c_str()); m_amdSevSnpHasBeenSet = true; } } return *this; } void LaunchTemplateCpuOptions::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_coreCountHasBeenSet) { oStream << location << index << locationValue << ".CoreCount=" << m_coreCount << "&"; } if(m_threadsPerCoreHasBeenSet) { oStream << location << index << locationValue << ".ThreadsPerCore=" << m_threadsPerCore << "&"; } if(m_amdSevSnpHasBeenSet) { oStream << location << index << locationValue << ".AmdSevSnp=" << AmdSevSnpSpecificationMapper::GetNameForAmdSevSnpSpecification(m_amdSevSnp) << "&"; } } void LaunchTemplateCpuOptions::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_coreCountHasBeenSet) { oStream << location << ".CoreCount=" << m_coreCount << "&"; } if(m_threadsPerCoreHasBeenSet) { oStream << location << ".ThreadsPerCore=" << m_threadsPerCore << "&"; } if(m_amdSevSnpHasBeenSet) { oStream << location << ".AmdSevSnp=" << AmdSevSnpSpecificationMapper::GetNameForAmdSevSnpSpecification(m_amdSevSnp) << "&"; } } } // namespace Model } // namespace EC2 } // namespace Aws