Example usage for com.amazonaws.services.simpleemail.model.transform GetSendStatisticsResultStaxUnmarshaller GetSendStatisticsResultStaxUnmarshaller

List of usage examples for com.amazonaws.services.simpleemail.model.transform GetSendStatisticsResultStaxUnmarshaller GetSendStatisticsResultStaxUnmarshaller

Introduction

In this page you can find the example usage for com.amazonaws.services.simpleemail.model.transform GetSendStatisticsResultStaxUnmarshaller GetSendStatisticsResultStaxUnmarshaller.

Prototype

GetSendStatisticsResultStaxUnmarshaller

Source Link

Usage

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();
}