1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/s3/S3_EXPORTS.h>
#include <aws/core/Region.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/s3/S3ARN.h>
namespace Aws
{
namespace S3
{
namespace S3Endpoint
{
/**
* Compute endpoint based on region.
* @param regionName The AWS region used in the endpoint
* @param useDualStack Using dual-stack endpoint if true
* @param USEast1UseRegionalEndpoint Using global endpoint for us-east-1 if the value is LEGACY, or using regional endpoint if it's REGIONAL
*/
AWS_S3_API Aws::String ForRegion(const Aws::String& regionName, bool useDualStack = false, bool USEast1UseRegionalEndpoint = false, const Aws::String& serviceName = "");
/**
* Compute endpoint based on Access Point ARN.
* @param arn The S3 Access Point ARN
* @param regionNameOverride Override region name in ARN if it's not empty
* @param useDualStack Using dual-stack endpoint if true
* @param endpointOverride Override endpoint if it's not empty
*/
AWS_S3_API Aws::String ForAccessPointArn(const S3ARN& arn, const Aws::String& regionNameOverride = "", bool useDualStack = false, const Aws::String& endpointOverride = "");
/**
* Compute endpoint based on Outposts ARN.
* @param arn The S3 Outposts ARN
* @param regionNameOverride Override region name in ARN if it's not empty
* @param useDualStack Using dual-stack endpoint if true
* @param endpointOverride Override endpoint if it's not empty
*/
AWS_S3_API Aws::String ForOutpostsArn(const S3ARN& arn, const Aws::String& regionNameOverride = "", bool useDualStack = false, const Aws::String& endpointOverride = "");
/**
* Compute endpoint based on Object Lambda Access Point ARN.
* @param arn The S3 Object Lambda Access Point ARN
* @param regionNameOverride Override region name in ARN if it's not empty
* @param useDualStack Using dual-stack endpoint if true
* @param endpointOverride Override endpoint if it's not empty
*/
AWS_S3_API Aws::String ForObjectLambdaAccessPointArn(const S3ARN& arn, const Aws::String& regionNameOverride = "", bool useDualStack = false, const Aws::String& endpointOverride = "");
} // namespace S3Endpoint
} // namespace S3
} // namespace Aws
|