/** * 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 ConfigService { namespace Model { namespace DeliveryStatusMapper { static const int Success_HASH = HashingUtils::HashString("Success"); static const int Failure_HASH = HashingUtils::HashString("Failure"); static const int Not_Applicable_HASH = HashingUtils::HashString("Not_Applicable"); DeliveryStatus GetDeliveryStatusForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == Success_HASH) { return DeliveryStatus::Success; } else if (hashCode == Failure_HASH) { return DeliveryStatus::Failure; } else if (hashCode == Not_Applicable_HASH) { return DeliveryStatus::Not_Applicable; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return DeliveryStatus::NOT_SET; } Aws::String GetNameForDeliveryStatus(DeliveryStatus enumValue) { switch(enumValue) { case DeliveryStatus::Success: return "Success"; case DeliveryStatus::Failure: return "Failure"; case DeliveryStatus::Not_Applicable: return "Not_Applicable"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace DeliveryStatusMapper } // namespace Model } // namespace ConfigService } // namespace Aws