/** * 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 CodeStarNotifications { namespace Model { namespace TargetStatusMapper { static const int PENDING_HASH = HashingUtils::HashString("PENDING"); static const int ACTIVE_HASH = HashingUtils::HashString("ACTIVE"); static const int UNREACHABLE_HASH = HashingUtils::HashString("UNREACHABLE"); static const int INACTIVE_HASH = HashingUtils::HashString("INACTIVE"); static const int DEACTIVATED_HASH = HashingUtils::HashString("DEACTIVATED"); TargetStatus GetTargetStatusForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == PENDING_HASH) { return TargetStatus::PENDING; } else if (hashCode == ACTIVE_HASH) { return TargetStatus::ACTIVE; } else if (hashCode == UNREACHABLE_HASH) { return TargetStatus::UNREACHABLE; } else if (hashCode == INACTIVE_HASH) { return TargetStatus::INACTIVE; } else if (hashCode == DEACTIVATED_HASH) { return TargetStatus::DEACTIVATED; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return TargetStatus::NOT_SET; } Aws::String GetNameForTargetStatus(TargetStatus enumValue) { switch(enumValue) { case TargetStatus::PENDING: return "PENDING"; case TargetStatus::ACTIVE: return "ACTIVE"; case TargetStatus::UNREACHABLE: return "UNREACHABLE"; case TargetStatus::INACTIVE: return "INACTIVE"; case TargetStatus::DEACTIVATED: return "DEACTIVATED"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace TargetStatusMapper } // namespace Model } // namespace CodeStarNotifications } // namespace Aws