/** * 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 CustomMailFromStatusMapper { static const int Pending_HASH = HashingUtils::HashString("Pending"); static const int Success_HASH = HashingUtils::HashString("Success"); static const int Failed_HASH = HashingUtils::HashString("Failed"); static const int TemporaryFailure_HASH = HashingUtils::HashString("TemporaryFailure"); CustomMailFromStatus GetCustomMailFromStatusForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == Pending_HASH) { return CustomMailFromStatus::Pending; } else if (hashCode == Success_HASH) { return CustomMailFromStatus::Success; } else if (hashCode == Failed_HASH) { return CustomMailFromStatus::Failed; } else if (hashCode == TemporaryFailure_HASH) { return CustomMailFromStatus::TemporaryFailure; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return CustomMailFromStatus::NOT_SET; } Aws::String GetNameForCustomMailFromStatus(CustomMailFromStatus enumValue) { switch(enumValue) { case CustomMailFromStatus::Pending: return "Pending"; case CustomMailFromStatus::Success: return "Success"; case CustomMailFromStatus::Failed: return "Failed"; case CustomMailFromStatus::TemporaryFailure: return "TemporaryFailure"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace CustomMailFromStatusMapper } // namespace Model } // namespace SES } // namespace Aws