pub struct DescribeFleetHistoryRequest {
pub dry_run: Option<bool>,
pub event_type: Option<String>,
pub fleet_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub start_time: String,
}Fields§
§dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
event_type: Option<String>The type of events to describe. By default, all events are described.
fleet_id: StringThe ID of the EC2 Fleet.
max_results: Option<i64>The maximum number of results to return in a single call. Specify a value between 1 and 1000. The default value is 1000. To retrieve the remaining results, make another call with the returned NextToken value.
next_token: Option<String>The token for the next set of results.
start_time: StringThe start date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
Trait Implementations§
Source§impl Clone for DescribeFleetHistoryRequest
impl Clone for DescribeFleetHistoryRequest
Source§fn clone(&self) -> DescribeFleetHistoryRequest
fn clone(&self) -> DescribeFleetHistoryRequest
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 Debug for DescribeFleetHistoryRequest
impl Debug for DescribeFleetHistoryRequest
Source§impl Default for DescribeFleetHistoryRequest
impl Default for DescribeFleetHistoryRequest
Source§fn default() -> DescribeFleetHistoryRequest
fn default() -> DescribeFleetHistoryRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DescribeFleetHistoryRequest
Auto Trait Implementations§
impl Freeze for DescribeFleetHistoryRequest
impl RefUnwindSafe for DescribeFleetHistoryRequest
impl Send for DescribeFleetHistoryRequest
impl Sync for DescribeFleetHistoryRequest
impl Unpin for DescribeFleetHistoryRequest
impl UnwindSafe for DescribeFleetHistoryRequest
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