Struct rusoto_ec2::HistoryRecord[][src]

pub struct HistoryRecord {
    pub event_information: EventInformation,
    pub event_type: String,
    pub timestamp: String,
}

Describes an event in the history of the Spot Fleet request.

Fields

Information about the event.

The event type.

  • error - An error with the Spot Fleet request.

  • fleetRequestChange - A change in the status or configuration of the Spot Fleet request.

  • instanceChange - An instance was launched or terminated.

  • Information - An informational event.

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

Trait Implementations

impl Default for HistoryRecord
[src]

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

impl Debug for HistoryRecord
[src]

Formats the value using the given formatter. Read more

impl Clone for HistoryRecord
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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