#[non_exhaustive]pub struct DeleteFleetsOutputBuilder { /* private fields */ }
Expand description
A builder for DeleteFleetsOutput
.
Implementations§
source§impl DeleteFleetsOutputBuilder
impl DeleteFleetsOutputBuilder
sourcepub fn successful_fleet_deletions(self, input: DeleteFleetSuccessItem) -> Self
pub fn successful_fleet_deletions(self, input: DeleteFleetSuccessItem) -> Self
Appends an item to successful_fleet_deletions
.
To override the contents of this collection use set_successful_fleet_deletions
.
Information about the EC2 Fleets that are successfully deleted.
sourcepub fn set_successful_fleet_deletions(
self,
input: Option<Vec<DeleteFleetSuccessItem>>,
) -> Self
pub fn set_successful_fleet_deletions( self, input: Option<Vec<DeleteFleetSuccessItem>>, ) -> Self
Information about the EC2 Fleets that are successfully deleted.
sourcepub fn get_successful_fleet_deletions(
&self,
) -> &Option<Vec<DeleteFleetSuccessItem>>
pub fn get_successful_fleet_deletions( &self, ) -> &Option<Vec<DeleteFleetSuccessItem>>
Information about the EC2 Fleets that are successfully deleted.
sourcepub fn unsuccessful_fleet_deletions(self, input: DeleteFleetErrorItem) -> Self
pub fn unsuccessful_fleet_deletions(self, input: DeleteFleetErrorItem) -> Self
Appends an item to unsuccessful_fleet_deletions
.
To override the contents of this collection use set_unsuccessful_fleet_deletions
.
Information about the EC2 Fleets that are not successfully deleted.
sourcepub fn set_unsuccessful_fleet_deletions(
self,
input: Option<Vec<DeleteFleetErrorItem>>,
) -> Self
pub fn set_unsuccessful_fleet_deletions( self, input: Option<Vec<DeleteFleetErrorItem>>, ) -> Self
Information about the EC2 Fleets that are not successfully deleted.
sourcepub fn get_unsuccessful_fleet_deletions(
&self,
) -> &Option<Vec<DeleteFleetErrorItem>>
pub fn get_unsuccessful_fleet_deletions( &self, ) -> &Option<Vec<DeleteFleetErrorItem>>
Information about the EC2 Fleets that are not successfully deleted.
sourcepub fn build(self) -> DeleteFleetsOutput
pub fn build(self) -> DeleteFleetsOutput
Consumes the builder and constructs a DeleteFleetsOutput
.
Trait Implementations§
source§impl Clone for DeleteFleetsOutputBuilder
impl Clone for DeleteFleetsOutputBuilder
source§fn clone(&self) -> DeleteFleetsOutputBuilder
fn clone(&self) -> DeleteFleetsOutputBuilder
Returns a copy 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 DeleteFleetsOutputBuilder
impl Debug for DeleteFleetsOutputBuilder
source§impl Default for DeleteFleetsOutputBuilder
impl Default for DeleteFleetsOutputBuilder
source§fn default() -> DeleteFleetsOutputBuilder
fn default() -> DeleteFleetsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DeleteFleetsOutputBuilder
impl PartialEq for DeleteFleetsOutputBuilder
source§fn eq(&self, other: &DeleteFleetsOutputBuilder) -> bool
fn eq(&self, other: &DeleteFleetsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteFleetsOutputBuilder
Auto Trait Implementations§
impl Freeze for DeleteFleetsOutputBuilder
impl RefUnwindSafe for DeleteFleetsOutputBuilder
impl Send for DeleteFleetsOutputBuilder
impl Sync for DeleteFleetsOutputBuilder
impl Unpin for DeleteFleetsOutputBuilder
impl UnwindSafe for DeleteFleetsOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.