List of usage examples for com.amazonaws.services.sns.model DeletePlatformApplicationRequest DeletePlatformApplicationRequest
DeletePlatformApplicationRequest
From source file:AmazonSNSClientWrapper.java
License:Open Source License
private void deletePlatformApplication(String applicationArn) { DeletePlatformApplicationRequest request = new DeletePlatformApplicationRequest(); request.setPlatformApplicationArn(applicationArn); snsClient.deletePlatformApplication(request); }
From source file:com.cloudbees.gasp.services.SNSMobile.java
License:Open Source License
public void deletePlatformApplication(String applicationArn) { DeletePlatformApplicationRequest request = new DeletePlatformApplicationRequest(); request.setPlatformApplicationArn(applicationArn); snsClient.deletePlatformApplication(request); }