Example usage for com.amazonaws.services.sns.model ConfirmSubscriptionResult toString

List of usage examples for com.amazonaws.services.sns.model ConfirmSubscriptionResult toString

Introduction

In this page you can find the example usage for com.amazonaws.services.sns.model ConfirmSubscriptionResult toString.

Prototype

@Override
public String toString() 

Source Link

Document

Returns a string representation of this object.

Usage

From source file:ws.argo.responder.transport.sns.SNSListenerResource.java

License:MIT License

private void handleSubscriptionConfirmation(String arn, String token) {
    ConfirmSubscriptionResult result = snsTransport.getSNSClient().confirmSubscription(arn, token);
    LOGGER.info("Confirmed Subsription to [" + arn + "] : " + result.toString());
}