/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include using namespace Aws::Utils; namespace Aws { namespace ECR { namespace Model { namespace FindingSeverityMapper { static const int INFORMATIONAL_HASH = HashingUtils::HashString("INFORMATIONAL"); static const int LOW_HASH = HashingUtils::HashString("LOW"); static const int MEDIUM_HASH = HashingUtils::HashString("MEDIUM"); static const int HIGH_HASH = HashingUtils::HashString("HIGH"); static const int CRITICAL_HASH = HashingUtils::HashString("CRITICAL"); static const int UNDEFINED_HASH = HashingUtils::HashString("UNDEFINED"); FindingSeverity GetFindingSeverityForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == INFORMATIONAL_HASH) { return FindingSeverity::INFORMATIONAL; } else if (hashCode == LOW_HASH) { return FindingSeverity::LOW; } else if (hashCode == MEDIUM_HASH) { return FindingSeverity::MEDIUM; } else if (hashCode == HIGH_HASH) { return FindingSeverity::HIGH; } else if (hashCode == CRITICAL_HASH) { return FindingSeverity::CRITICAL; } else if (hashCode == UNDEFINED_HASH) { return FindingSeverity::UNDEFINED; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return FindingSeverity::NOT_SET; } Aws::String GetNameForFindingSeverity(FindingSeverity enumValue) { switch(enumValue) { case FindingSeverity::INFORMATIONAL: return "INFORMATIONAL"; case FindingSeverity::LOW: return "LOW"; case FindingSeverity::MEDIUM: return "MEDIUM"; case FindingSeverity::HIGH: return "HIGH"; case FindingSeverity::CRITICAL: return "CRITICAL"; case FindingSeverity::UNDEFINED: return "UNDEFINED"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace FindingSeverityMapper } // namespace Model } // namespace ECR } // namespace Aws