Closed davidmoten closed 2 years ago
As discussed in #50, this PR adds a new builder method that allows customization of the base URL used for requests:
Client s3 = Client .s3() .region("ap-southeast-2") .accessKey(accessKey) .secretKey(secretKey) .baseUrlFactory((service, region) -> "https://" + service + ".mine.com/") .build();
As discussed in #50, this PR adds a new builder method that allows customization of the base URL used for requests: