Skip to content

Commit

Permalink
support multiple interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
sbera87 committed Feb 3, 2025
1 parent 1e9e322 commit 645ebd8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/aws-cpp-sdk-core/include/smithy/client/AwsSmithyClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,25 @@ namespace client
return {};
}

Aws::String GeneratePresignedUrl(const Aws::Http::URI& uri,
Aws::Http::HttpMethod method,
const Aws::String& region,
const Aws::String& serviceName,
long long expirationInSeconds,
const Aws::Http::HeaderValueCollection& customizedHeaders,
const std::shared_ptr<Aws::Http::ServiceSpecificParameters> serviceSpecificParameters) const
{
return GeneratePresignedUrl(uri,
method,
region,
serviceName,
Aws::String(),
expirationInSeconds,
customizedHeaders,
serviceSpecificParameters);

}

Aws::String GeneratePresignedUrl(const Aws::Endpoint::AWSEndpoint& endpoint,
Aws::Http::HttpMethod method,
const Aws::String& region,
Expand Down

0 comments on commit 645ebd8

Please sign in to comment.