/** * 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 CloudFormation { namespace Model { namespace RequiresRecreationMapper { static const int Never_HASH = HashingUtils::HashString("Never"); static const int Conditionally_HASH = HashingUtils::HashString("Conditionally"); static const int Always_HASH = HashingUtils::HashString("Always"); RequiresRecreation GetRequiresRecreationForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == Never_HASH) { return RequiresRecreation::Never; } else if (hashCode == Conditionally_HASH) { return RequiresRecreation::Conditionally; } else if (hashCode == Always_HASH) { return RequiresRecreation::Always; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return RequiresRecreation::NOT_SET; } Aws::String GetNameForRequiresRecreation(RequiresRecreation enumValue) { switch(enumValue) { case RequiresRecreation::Never: return "Never"; case RequiresRecreation::Conditionally: return "Conditionally"; case RequiresRecreation::Always: return "Always"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace RequiresRecreationMapper } // namespace Model } // namespace CloudFormation } // namespace Aws