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-budgets/source/BudgetsEndpoint.cpp

32 lines
653 B
C++
Raw Normal View History

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