List of usage examples for com.amazonaws.services.simpleemail.model.transform GetSendStatisticsResultStaxUnmarshaller GetSendStatisticsResultStaxUnmarshaller
GetSendStatisticsResultStaxUnmarshaller
From source file:com.kolich.aws.services.ses.impl.KolichSESClient.java
License:Open Source License
@Override public Either<HttpFailure, GetSendStatisticsResult> getSendStatistics() { return new AwsSESHttpClosure<GetSendStatisticsResult>(client_, SC_OK, new GetSendStatisticsResultStaxUnmarshaller()) { @Override/*from www.ja v a 2s. c o m*/ public void prepare(final AwsHttpRequest request) throws Exception { request.addParameter(SES_ACTION_PARAM, SES_ACTION_GETSENDSTATISTICS); } }.post(); }