in src/main/java/software/aws/glue/tableversions/utils/Test.java [10:17]
public static void main(String[] args) {
AWSSecurityTokenService client = AWSSecurityTokenServiceClientBuilder.standard().build();
GetCallerIdentityRequest request = new GetCallerIdentityRequest();
GetCallerIdentityResult response = client.getCallerIdentity(request);
System.out.println("Account Id: " + response.getAccount());
}