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-cloudtrail/source/model/LookupAttributeKey.cpp

113 lines
3.7 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/cloudtrail/model/LookupAttributeKey.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 CloudTrail
{
namespace Model
{
namespace LookupAttributeKeyMapper
{
static const int EventId_HASH = HashingUtils::HashString("EventId");
static const int EventName_HASH = HashingUtils::HashString("EventName");
static const int ReadOnly_HASH = HashingUtils::HashString("ReadOnly");
static const int Username_HASH = HashingUtils::HashString("Username");
static const int ResourceType_HASH = HashingUtils::HashString("ResourceType");
static const int ResourceName_HASH = HashingUtils::HashString("ResourceName");
static const int EventSource_HASH = HashingUtils::HashString("EventSource");
static const int AccessKeyId_HASH = HashingUtils::HashString("AccessKeyId");
LookupAttributeKey GetLookupAttributeKeyForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == EventId_HASH)
{
return LookupAttributeKey::EventId;
}
else if (hashCode == EventName_HASH)
{
return LookupAttributeKey::EventName;
}
else if (hashCode == ReadOnly_HASH)
{
return LookupAttributeKey::ReadOnly;
}
else if (hashCode == Username_HASH)
{
return LookupAttributeKey::Username;
}
else if (hashCode == ResourceType_HASH)
{
return LookupAttributeKey::ResourceType;
}
else if (hashCode == ResourceName_HASH)
{
return LookupAttributeKey::ResourceName;
}
else if (hashCode == EventSource_HASH)
{
return LookupAttributeKey::EventSource;
}
else if (hashCode == AccessKeyId_HASH)
{
return LookupAttributeKey::AccessKeyId;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<LookupAttributeKey>(hashCode);
}
return LookupAttributeKey::NOT_SET;
}
Aws::String GetNameForLookupAttributeKey(LookupAttributeKey enumValue)
{
switch(enumValue)
{
case LookupAttributeKey::EventId:
return "EventId";
case LookupAttributeKey::EventName:
return "EventName";
case LookupAttributeKey::ReadOnly:
return "ReadOnly";
case LookupAttributeKey::Username:
return "Username";
case LookupAttributeKey::ResourceType:
return "ResourceType";
case LookupAttributeKey::ResourceName:
return "ResourceName";
case LookupAttributeKey::EventSource:
return "EventSource";
case LookupAttributeKey::AccessKeyId:
return "AccessKeyId";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace LookupAttributeKeyMapper
} // namespace Model
} // namespace CloudTrail
} // namespace Aws