Struct aws_sdk_ec2::output::DescribeSpotFleetRequestHistoryOutput [−][src]
#[non_exhaustive]pub struct DescribeSpotFleetRequestHistoryOutput {
pub history_records: Option<Vec<HistoryRecord>>,
pub last_evaluated_time: Option<DateTime>,
pub next_token: Option<String>,
pub spot_fleet_request_id: Option<String>,
pub start_time: Option<DateTime>,
}
Expand description
Contains the output of DescribeSpotFleetRequestHistory.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.history_records: Option<Vec<HistoryRecord>>
Information about the events in the history of the Spot Fleet request.
last_evaluated_time: Option<DateTime>
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.
next_token: Option<String>
The token required to retrieve the next set of results. This value is
null
when there are no more results to return.
spot_fleet_request_id: Option<String>
The ID of the Spot Fleet request.
start_time: Option<DateTime>
The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
Implementations
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).
Creates a new builder-style object to manufacture DescribeSpotFleetRequestHistoryOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more