Package com.amazonaws.services.sns

Examples of com.amazonaws.services.sns.AmazonSNSClient.deleteTopic()


      }
     
      // delete queue and topic
     
      DeleteTopicRequest  deleteTopicRequest = new DeleteTopicRequest(topicArn);
      sns.deleteTopic(deleteTopicRequest);
     
          sqs.deleteQueue(new DeleteQueueRequest(queueUrl));
         
          System.out.println("OK");
     
View Full Code Here


          Thread.sleep(10000);
 
        for (String arn : topics) {
       
          DeleteTopicRequest  deleteTopicRequest = new DeleteTopicRequest(arn);
          sns.deleteTopic(deleteTopicRequest);
         
          logger.info("event=delete_topic arn=" + arn);
        }     
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.