Struct rusoto_ec2::DescribeSpotFleetRequestHistoryResponse[][src]

pub struct DescribeSpotFleetRequestHistoryResponse {
    pub history_records: Vec<HistoryRecord>,
    pub last_evaluated_time: String,
    pub next_token: Option<String>,
    pub spot_fleet_request_id: String,
    pub start_time: String,
}

Contains the output of DescribeSpotFleetRequestHistory.

Fields

Information about the events in the history of the Spot Fleet request.

The last date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). All records up to this time were retrieved.

If nextToken indicates that there are more results, this value is not present.

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

The ID of the Spot Fleet request.

The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

Trait Implementations

impl Default for DescribeSpotFleetRequestHistoryResponse
[src]

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

impl Debug for DescribeSpotFleetRequestHistoryResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeSpotFleetRequestHistoryResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeSpotFleetRequestHistoryResponse
[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