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

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

Introduction

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

Prototype

GetSendQuotaResultStaxUnmarshaller

Source Link

Usage

From source file:com.kolich.aws.services.ses.impl.KolichSESClient.java

License:Open Source License

@Override
public Either<HttpFailure, GetSendQuotaResult> getSendQuota() {
    return new AwsSESHttpClosure<GetSendQuotaResult>(client_, SC_OK, new GetSendQuotaResultStaxUnmarshaller()) {
        @Override/*from www.  j a  v a2 s.c o m*/
        public void prepare(final AwsHttpRequest request) throws Exception {
            request.addParameter(SES_ACTION_PARAM, SES_ACTION_GETSENDQUOTA);
        }
    }.post();
}