65 lines
1.6 KiB
C++
65 lines
1.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/honeycode/HoneycodeEndpoint.h>
|
|
#include <aws/core/utils/memory/stl/AWSStringStream.h>
|
|
#include <aws/core/utils/HashingUtils.h>
|
|
|
|
using namespace Aws;
|
|
using namespace Aws::Honeycode;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Honeycode
|
|
{
|
|
namespace HoneycodeEndpoint
|
|
{
|
|
static const int CN_NORTH_1_HASH = Aws::Utils::HashingUtils::HashString("cn-north-1");
|
|
static const int CN_NORTHWEST_1_HASH = Aws::Utils::HashingUtils::HashString("cn-northwest-1");
|
|
static const int US_ISO_EAST_1_HASH = Aws::Utils::HashingUtils::HashString("us-iso-east-1");
|
|
static const int US_ISOB_EAST_1_HASH = Aws::Utils::HashingUtils::HashString("us-isob-east-1");
|
|
|
|
|
|
Aws::String ForRegion(const Aws::String& regionName, bool useDualStack)
|
|
{
|
|
// Fallback to us-east-1 if global endpoint does not exists.
|
|
Aws::String region = regionName == Aws::Region::AWS_GLOBAL ? Aws::Region::US_EAST_1 : regionName;
|
|
auto hash = Aws::Utils::HashingUtils::HashString(region.c_str());
|
|
|
|
Aws::StringStream ss;
|
|
ss << "honeycode" << ".";
|
|
|
|
if(useDualStack)
|
|
{
|
|
ss << "dualstack.";
|
|
}
|
|
|
|
ss << region;
|
|
|
|
if (hash == CN_NORTH_1_HASH || hash == CN_NORTHWEST_1_HASH)
|
|
{
|
|
ss << ".amazonaws.com.cn";
|
|
}
|
|
else if (hash == US_ISO_EAST_1_HASH)
|
|
{
|
|
ss << ".c2s.ic.gov";
|
|
}
|
|
else if (hash == US_ISOB_EAST_1_HASH)
|
|
{
|
|
ss << ".sc2s.sgov.gov";
|
|
}
|
|
else
|
|
{
|
|
ss << ".amazonaws.com";
|
|
}
|
|
|
|
return ss.str();
|
|
}
|
|
|
|
} // namespace HoneycodeEndpoint
|
|
} // namespace Honeycode
|
|
} // namespace Aws
|
|
|