78 lines
2.3 KiB
C++
78 lines
2.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/cloudformation/model/RequiresRecreation.h>
|
|
#include <aws/core/utils/HashingUtils.h>
|
|
#include <aws/core/Globals.h>
|
|
#include <aws/core/utils/EnumParseOverflowContainer.h>
|
|
|
|
using namespace Aws::Utils;
|
|
|
|
|
|
namespace Aws
|
|
{
|
|
namespace CloudFormation
|
|
{
|
|
namespace Model
|
|
{
|
|
namespace RequiresRecreationMapper
|
|
{
|
|
|
|
static const int Never_HASH = HashingUtils::HashString("Never");
|
|
static const int Conditionally_HASH = HashingUtils::HashString("Conditionally");
|
|
static const int Always_HASH = HashingUtils::HashString("Always");
|
|
|
|
|
|
RequiresRecreation GetRequiresRecreationForName(const Aws::String& name)
|
|
{
|
|
int hashCode = HashingUtils::HashString(name.c_str());
|
|
if (hashCode == Never_HASH)
|
|
{
|
|
return RequiresRecreation::Never;
|
|
}
|
|
else if (hashCode == Conditionally_HASH)
|
|
{
|
|
return RequiresRecreation::Conditionally;
|
|
}
|
|
else if (hashCode == Always_HASH)
|
|
{
|
|
return RequiresRecreation::Always;
|
|
}
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|
if(overflowContainer)
|
|
{
|
|
overflowContainer->StoreOverflow(hashCode, name);
|
|
return static_cast<RequiresRecreation>(hashCode);
|
|
}
|
|
|
|
return RequiresRecreation::NOT_SET;
|
|
}
|
|
|
|
Aws::String GetNameForRequiresRecreation(RequiresRecreation enumValue)
|
|
{
|
|
switch(enumValue)
|
|
{
|
|
case RequiresRecreation::Never:
|
|
return "Never";
|
|
case RequiresRecreation::Conditionally:
|
|
return "Conditionally";
|
|
case RequiresRecreation::Always:
|
|
return "Always";
|
|
default:
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|
if(overflowContainer)
|
|
{
|
|
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
|
|
}
|
|
|
|
return {};
|
|
}
|
|
}
|
|
|
|
} // namespace RequiresRecreationMapper
|
|
} // namespace Model
|
|
} // namespace CloudFormation
|
|
} // namespace Aws
|