Struct rusoto_ec2::DescribeSpotPriceHistoryResult[][src]

pub struct DescribeSpotPriceHistoryResult {
    pub next_token: Option<String>,
    pub spot_price_history: Option<Vec<SpotPrice>>,
}

Contains the output of DescribeSpotPriceHistory.

Fields

The token required to retrieve the next set of results. This value is null or an empty string when there are no more results to return.

The historical Spot prices.

Trait Implementations

impl Default for DescribeSpotPriceHistoryResult
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeSpotPriceHistoryResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeSpotPriceHistoryResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeSpotPriceHistoryResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations