/** * 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 EC2 { namespace Model { namespace VolumeStatusNameMapper { static const int io_enabled_HASH = HashingUtils::HashString("io-enabled"); static const int io_performance_HASH = HashingUtils::HashString("io-performance"); VolumeStatusName GetVolumeStatusNameForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == io_enabled_HASH) { return VolumeStatusName::io_enabled; } else if (hashCode == io_performance_HASH) { return VolumeStatusName::io_performance; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return VolumeStatusName::NOT_SET; } Aws::String GetNameForVolumeStatusName(VolumeStatusName enumValue) { switch(enumValue) { case VolumeStatusName::io_enabled: return "io-enabled"; case VolumeStatusName::io_performance: return "io-performance"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace VolumeStatusNameMapper } // namespace Model } // namespace EC2 } // namespace Aws