This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ssm/source/model/NotificationEvent.cpp

99 lines
3.0 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/ssm/model/NotificationEvent.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 SSM
{
namespace Model
{
namespace NotificationEventMapper
{
static const int All_HASH = HashingUtils::HashString("All");
static const int InProgress_HASH = HashingUtils::HashString("InProgress");
static const int Success_HASH = HashingUtils::HashString("Success");
static const int TimedOut_HASH = HashingUtils::HashString("TimedOut");
static const int Cancelled_HASH = HashingUtils::HashString("Cancelled");
static const int Failed_HASH = HashingUtils::HashString("Failed");
NotificationEvent GetNotificationEventForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == All_HASH)
{
return NotificationEvent::All;
}
else if (hashCode == InProgress_HASH)
{
return NotificationEvent::InProgress;
}
else if (hashCode == Success_HASH)
{
return NotificationEvent::Success;
}
else if (hashCode == TimedOut_HASH)
{
return NotificationEvent::TimedOut;
}
else if (hashCode == Cancelled_HASH)
{
return NotificationEvent::Cancelled;
}
else if (hashCode == Failed_HASH)
{
return NotificationEvent::Failed;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<NotificationEvent>(hashCode);
}
return NotificationEvent::NOT_SET;
}
Aws::String GetNameForNotificationEvent(NotificationEvent enumValue)
{
switch(enumValue)
{
case NotificationEvent::All:
return "All";
case NotificationEvent::InProgress:
return "InProgress";
case NotificationEvent::Success:
return "Success";
case NotificationEvent::TimedOut:
return "TimedOut";
case NotificationEvent::Cancelled:
return "Cancelled";
case NotificationEvent::Failed:
return "Failed";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace NotificationEventMapper
} // namespace Model
} // namespace SSM
} // namespace Aws