pub struct DescribeSpotFleetRequestHistoryResponse {
pub history_records: Option<Vec<HistoryRecord>>,
pub last_evaluated_time: Option<String>,
pub next_token: Option<String>,
pub spot_fleet_request_id: Option<String>,
pub start_time: Option<String>,
}Expand description
Contains the output of DescribeSpotFleetRequestHistory.
Fields§
§history_records: Option<Vec<HistoryRecord>>Information about the events in the history of the Spot Fleet request.
last_evaluated_time: Option<String>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<String>The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
Trait Implementations§
Source§impl Clone for DescribeSpotFleetRequestHistoryResponse
impl Clone for DescribeSpotFleetRequestHistoryResponse
Source§fn clone(&self) -> DescribeSpotFleetRequestHistoryResponse
fn clone(&self) -> DescribeSpotFleetRequestHistoryResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DescribeSpotFleetRequestHistoryResponse
impl Default for DescribeSpotFleetRequestHistoryResponse
Source§fn default() -> DescribeSpotFleetRequestHistoryResponse
fn default() -> DescribeSpotFleetRequestHistoryResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeSpotFleetRequestHistoryResponse
impl PartialEq for DescribeSpotFleetRequestHistoryResponse
Source§fn eq(&self, other: &DescribeSpotFleetRequestHistoryResponse) -> bool
fn eq(&self, other: &DescribeSpotFleetRequestHistoryResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeSpotFleetRequestHistoryResponse
Auto Trait Implementations§
impl Freeze for DescribeSpotFleetRequestHistoryResponse
impl RefUnwindSafe for DescribeSpotFleetRequestHistoryResponse
impl Send for DescribeSpotFleetRequestHistoryResponse
impl Sync for DescribeSpotFleetRequestHistoryResponse
impl Unpin for DescribeSpotFleetRequestHistoryResponse
impl UnwindSafe for DescribeSpotFleetRequestHistoryResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more