pub struct DeleteFleetsRequest {
pub dry_run: Option<bool>,
pub fleet_ids: Vec<String>,
pub terminate_instances: bool,
}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.
fleet_ids: Vec<String>The IDs of the EC2 Fleets.
terminate_instances: boolIndicates whether to terminate instances for an EC2 Fleet if it is deleted successfully.
Trait Implementations§
Source§impl Clone for DeleteFleetsRequest
impl Clone for DeleteFleetsRequest
Source§fn clone(&self) -> DeleteFleetsRequest
fn clone(&self) -> DeleteFleetsRequest
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 DeleteFleetsRequest
impl Debug for DeleteFleetsRequest
Source§impl Default for DeleteFleetsRequest
impl Default for DeleteFleetsRequest
Source§fn default() -> DeleteFleetsRequest
fn default() -> DeleteFleetsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteFleetsRequest
impl PartialEq for DeleteFleetsRequest
impl StructuralPartialEq for DeleteFleetsRequest
Auto Trait Implementations§
impl Freeze for DeleteFleetsRequest
impl RefUnwindSafe for DeleteFleetsRequest
impl Send for DeleteFleetsRequest
impl Sync for DeleteFleetsRequest
impl Unpin for DeleteFleetsRequest
impl UnwindSafe for DeleteFleetsRequest
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