pub struct DescribeFleetInstancesRequest {
pub dry_run: Option<bool>,
pub filters: Option<Vec<Filter>>,
pub fleet_id: String,
pub max_results: Option<i64>,
pub next_token: Option<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.
filters: Option<Vec<Filter>>The filters.
-
instance-type- The instance type.
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.
Trait Implementations§
Source§impl Clone for DescribeFleetInstancesRequest
impl Clone for DescribeFleetInstancesRequest
Source§fn clone(&self) -> DescribeFleetInstancesRequest
fn clone(&self) -> DescribeFleetInstancesRequest
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 DescribeFleetInstancesRequest
impl Default for DescribeFleetInstancesRequest
Source§fn default() -> DescribeFleetInstancesRequest
fn default() -> DescribeFleetInstancesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeFleetInstancesRequest
impl PartialEq for DescribeFleetInstancesRequest
Source§fn eq(&self, other: &DescribeFleetInstancesRequest) -> bool
fn eq(&self, other: &DescribeFleetInstancesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeFleetInstancesRequest
Auto Trait Implementations§
impl Freeze for DescribeFleetInstancesRequest
impl RefUnwindSafe for DescribeFleetInstancesRequest
impl Send for DescribeFleetInstancesRequest
impl Sync for DescribeFleetInstancesRequest
impl Unpin for DescribeFleetInstancesRequest
impl UnwindSafe for DescribeFleetInstancesRequest
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