/** * 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 SES { namespace Model { namespace DimensionValueSourceMapper { static const int messageTag_HASH = HashingUtils::HashString("messageTag"); static const int emailHeader_HASH = HashingUtils::HashString("emailHeader"); static const int linkTag_HASH = HashingUtils::HashString("linkTag"); DimensionValueSource GetDimensionValueSourceForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == messageTag_HASH) { return DimensionValueSource::messageTag; } else if (hashCode == emailHeader_HASH) { return DimensionValueSource::emailHeader; } else if (hashCode == linkTag_HASH) { return DimensionValueSource::linkTag; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return DimensionValueSource::NOT_SET; } Aws::String GetNameForDimensionValueSource(DimensionValueSource enumValue) { switch(enumValue) { case DimensionValueSource::messageTag: return "messageTag"; case DimensionValueSource::emailHeader: return "emailHeader"; case DimensionValueSource::linkTag: return "linkTag"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace DimensionValueSourceMapper } // namespace Model } // namespace SES } // namespace Aws