Example usage for com.amazonaws.services.devicefarm.model GetAccountSettingsRequest GetAccountSettingsRequest

List of usage examples for com.amazonaws.services.devicefarm.model GetAccountSettingsRequest GetAccountSettingsRequest

Introduction

In this page you can find the example usage for com.amazonaws.services.devicefarm.model GetAccountSettingsRequest GetAccountSettingsRequest.

Prototype

GetAccountSettingsRequest

Source Link

Usage

From source file:org.jenkinsci.plugins.awsdevicefarm.AWSDeviceFarm.java

License:Open Source License

public AccountSettings getAccountSettings() {
    try {/*w  ww . j a  va  2s. co m*/
        GetAccountSettingsRequest request = new GetAccountSettingsRequest();
        return api.getAccountSettings(request).getAccountSettings();
    } catch (NotFoundException e) {
        return null;
    }
}