This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-securityhub/source/model/SeverityRating.cpp

85 lines
2.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/securityhub/model/SeverityRating.h>
#include <aws/core/utils/HashingUtils.h>
#include <aws/core/Globals.h>
#include <aws/core/utils/EnumParseOverflowContainer.h>
using namespace Aws::Utils;
namespace Aws
{
namespace SecurityHub
{
namespace Model
{
namespace SeverityRatingMapper
{
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");
SeverityRating GetSeverityRatingForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == LOW_HASH)
{
return SeverityRating::LOW;
}
else if (hashCode == MEDIUM_HASH)
{
return SeverityRating::MEDIUM;
}
else if (hashCode == HIGH_HASH)
{
return SeverityRating::HIGH;
}
else if (hashCode == CRITICAL_HASH)
{
return SeverityRating::CRITICAL;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<SeverityRating>(hashCode);
}
return SeverityRating::NOT_SET;
}
Aws::String GetNameForSeverityRating(SeverityRating enumValue)
{
switch(enumValue)
{
case SeverityRating::LOW:
return "LOW";
case SeverityRating::MEDIUM:
return "MEDIUM";
case SeverityRating::HIGH:
return "HIGH";
case SeverityRating::CRITICAL:
return "CRITICAL";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace SeverityRatingMapper
} // namespace Model
} // namespace SecurityHub
} // namespace Aws