1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #include <aws/ce/CostExplorerEndpoint.h>
7 #include <aws/core/utils/memory/stl/AWSStringStream.h>
8 #include <aws/core/utils/HashingUtils.h>
9 
10 using namespace Aws;
11 using namespace Aws::CostExplorer;
12 
13 namespace Aws
14 {
15 namespace CostExplorer
16 {
17 namespace CostExplorerEndpoint
18 {
19 
20 
ForRegion(const Aws::String & regionName,bool useDualStack)21   Aws::String ForRegion(const Aws::String& regionName, bool useDualStack)
22   {
23     AWS_UNREFERENCED_PARAM(regionName);
24     AWS_UNREFERENCED_PARAM(useDualStack);
25     return "ce.us-east-1.amazonaws.com";
26   }
27 
28 } // namespace CostExplorerEndpoint
29 } // namespace CostExplorer
30 } // namespace Aws
31 
32