Example usage for com.amazonaws.services.sns.model DeletePlatformApplicationRequest setPlatformApplicationArn

List of usage examples for com.amazonaws.services.sns.model DeletePlatformApplicationRequest setPlatformApplicationArn

Introduction

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

Prototype


public void setPlatformApplicationArn(String platformApplicationArn) 

Source Link

Document

PlatformApplicationArn of platform application object to delete.

Usage

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