/** * 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 SnapshotAttributeNameMapper { static const int productCodes_HASH = HashingUtils::HashString("productCodes"); static const int createVolumePermission_HASH = HashingUtils::HashString("createVolumePermission"); SnapshotAttributeName GetSnapshotAttributeNameForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == productCodes_HASH) { return SnapshotAttributeName::productCodes; } else if (hashCode == createVolumePermission_HASH) { return SnapshotAttributeName::createVolumePermission; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return SnapshotAttributeName::NOT_SET; } Aws::String GetNameForSnapshotAttributeName(SnapshotAttributeName enumValue) { switch(enumValue) { case SnapshotAttributeName::productCodes: return "productCodes"; case SnapshotAttributeName::createVolumePermission: return "createVolumePermission"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace SnapshotAttributeNameMapper } // namespace Model } // namespace EC2 } // namespace Aws