/** * 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 ECS { namespace Model { namespace DesiredStatusMapper { static const int RUNNING_HASH = HashingUtils::HashString("RUNNING"); static const int PENDING_HASH = HashingUtils::HashString("PENDING"); static const int STOPPED_HASH = HashingUtils::HashString("STOPPED"); DesiredStatus GetDesiredStatusForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == RUNNING_HASH) { return DesiredStatus::RUNNING; } else if (hashCode == PENDING_HASH) { return DesiredStatus::PENDING; } else if (hashCode == STOPPED_HASH) { return DesiredStatus::STOPPED; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return DesiredStatus::NOT_SET; } Aws::String GetNameForDesiredStatus(DesiredStatus enumValue) { switch(enumValue) { case DesiredStatus::RUNNING: return "RUNNING"; case DesiredStatus::PENDING: return "PENDING"; case DesiredStatus::STOPPED: return "STOPPED"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace DesiredStatusMapper } // namespace Model } // namespace ECS } // namespace Aws