View Javadoc
1   package com.github.davidmoten.aws.lw.client;
2   
3   public class LightweightMain {
4       
5       public static void main(String[] args) {
6           Client s3 = Client.s3().region("ap-southeast-2").credentialsFromSystemProperties().build();
7           System.out.println(s3.path("amsa-xml-in", "ExampleObject.txt").responseAsUtf8());
8       }
9   
10  }