pub struct DescribeSpotFleetRequestsRequest {
pub dry_run: Option<bool>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub spot_fleet_request_ids: Option<Vec<String>>,
}Expand description
Contains the parameters for DescribeSpotFleetRequests.
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.
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.
spot_fleet_request_ids: Option<Vec<String>>The IDs of the Spot Fleet requests.
Trait Implementations§
Source§impl Clone for DescribeSpotFleetRequestsRequest
impl Clone for DescribeSpotFleetRequestsRequest
Source§fn clone(&self) -> DescribeSpotFleetRequestsRequest
fn clone(&self) -> DescribeSpotFleetRequestsRequest
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 DescribeSpotFleetRequestsRequest
impl Default for DescribeSpotFleetRequestsRequest
Source§fn default() -> DescribeSpotFleetRequestsRequest
fn default() -> DescribeSpotFleetRequestsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeSpotFleetRequestsRequest
impl PartialEq for DescribeSpotFleetRequestsRequest
Source§fn eq(&self, other: &DescribeSpotFleetRequestsRequest) -> bool
fn eq(&self, other: &DescribeSpotFleetRequestsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeSpotFleetRequestsRequest
Auto Trait Implementations§
impl Freeze for DescribeSpotFleetRequestsRequest
impl RefUnwindSafe for DescribeSpotFleetRequestsRequest
impl Send for DescribeSpotFleetRequestsRequest
impl Sync for DescribeSpotFleetRequestsRequest
impl Unpin for DescribeSpotFleetRequestsRequest
impl UnwindSafe for DescribeSpotFleetRequestsRequest
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