Example usage for com.amazonaws.services.pricing.model GetProductsResult getPriceList

List of usage examples for com.amazonaws.services.pricing.model GetProductsResult getPriceList

Introduction

In this page you can find the example usage for com.amazonaws.services.pricing.model GetProductsResult getPriceList.

Prototype


public java.util.List<String> getPriceList() 

Source Link

Document

The list of products that match your filters.

Usage

From source file:org.pentaho.amazon.client.impl.PricingClientImpl.java

License:Apache License

private List<String> getProductDescriptions() {
    GetProductsRequest productsRequest = initProductsRequest();
    GetProductsResult productsResult = pricing.getProducts(productsRequest);
    List<String> productDescriptions = productsResult.getPriceList();

    return productDescriptions;
}