Skip to content

Commit

Permalink
Updates example for endpoint resolver (#3964)
Browse files Browse the repository at this point in the history
  • Loading branch information
skotambkar authored Jun 17, 2021
1 parent 50a476b commit 9c65847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/aws/endpoints/customEndpoint/customEndpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func main() {
s3CustResolverFn := func(service, region string, optFns ...func(*endpoints.Options)) (endpoints.ResolvedEndpoint, error) {
if service == "s3" {
return endpoints.ResolvedEndpoint{
URL: "s3.custom.endpoint.com",
URL: "https://s3.custom.endpoint.com",
SigningRegion: "custom-signing-region",
}, nil
}
Expand Down

0 comments on commit 9c65847

Please sign in to comment.