public static AWSECommerceService newService(String awsSecret) {
if (awsSecret == null) {
throw new IllegalStateException("awsSecretKey not configured");
}
final AWSECommerceService svc = new AWSECommerceService();
svc.setHandlerResolver(new AWSHandlerResolver(awsSecret));
return svc;
}