32 lines
621 B
C++
32 lines
621 B
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/waf/WAFEndpoint.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSStringStream.h>
|
|||
|
|
#include <aws/core/utils/HashingUtils.h>
|
|||
|
|
|
|||
|
|
using namespace Aws;
|
|||
|
|
using namespace Aws::WAF;
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace WAF
|
|||
|
|
{
|
|||
|
|
namespace WAFEndpoint
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
|
|||
|
|
Aws::String ForRegion(const Aws::String& regionName, bool useDualStack)
|
|||
|
|
{
|
|||
|
|
AWS_UNREFERENCED_PARAM(regionName);
|
|||
|
|
AWS_UNREFERENCED_PARAM(useDualStack);
|
|||
|
|
return "waf.amazonaws.com";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace WAFEndpoint
|
|||
|
|
} // namespace WAF
|
|||
|
|
} // namespace Aws
|
|||
|
|
|