Skip to content

Instantly share code, notes, and snippets.

public class BuilderExample {
public static void main(String... args) {
Client client = Client
.build(Client.parameters().withRegion("us-east-1").withCredentials(new Credentials("username")));
client.action();
}
public static abstract class Parameter<T> {
public abstract boolean isPresent();