Example usage for com.amazonaws.services.ec2 AmazonEC2Client describeSpotPriceHistory

List of usage examples for com.amazonaws.services.ec2 AmazonEC2Client describeSpotPriceHistory

Introduction

In this page you can find the example usage for com.amazonaws.services.ec2 AmazonEC2Client describeSpotPriceHistory.

Prototype

@Override
public DescribeSpotPriceHistoryResult describeSpotPriceHistory(DescribeSpotPriceHistoryRequest request) 

Source Link

Document

Describes the Spot price history.

Usage

From source file:org.finra.dm.dao.impl.Ec2OperationsImpl.java

License:Apache License

@Override
public DescribeSpotPriceHistoryResult describeSpotPriceHistory(AmazonEC2Client ec2Client,
        DescribeSpotPriceHistoryRequest describeSpotPriceHistoryRequest) {
    return ec2Client.describeSpotPriceHistory(describeSpotPriceHistoryRequest);
}