pub struct FleetStartedFluentBuilder { /* private fields */ }
Expand description
Fluent builder for the fleet_started
waiter.
This builder is intended to be used similar to the other fluent builders for
normal operations on the client. However, instead of a send
method, it has
a wait
method that takes a maximum amount of time to wait.
Construct this fluent builder using the client by importing the
Waiters
trait and calling the methods
prefixed with wait_until
.
Implementations§
source§impl FleetStartedFluentBuilder
impl FleetStartedFluentBuilder
sourcepub fn as_input(&self) -> &DescribeFleetsInputBuilder
pub fn as_input(&self) -> &DescribeFleetsInputBuilder
Access the DescribeFleets as a reference.
sourcepub async fn wait(
self,
max_wait: Duration
) -> Result<FleetStartedFinalPoll, WaitUntilFleetStartedError>
pub async fn wait( self, max_wait: Duration ) -> Result<FleetStartedFinalPoll, WaitUntilFleetStartedError>
Wait for fleet_started
sourcepub fn names(self, input: impl Into<String>) -> Self
pub fn names(self, input: impl Into<String>) -> Self
Appends an item to Names
.
To override the contents of this collection use set_names
.
The names of the fleets to describe.
sourcepub fn set_names(self, input: Option<Vec<String>>) -> Self
pub fn set_names(self, input: Option<Vec<String>>) -> Self
The names of the fleets to describe.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
Trait Implementations§
source§impl Clone for FleetStartedFluentBuilder
impl Clone for FleetStartedFluentBuilder
source§fn clone(&self) -> FleetStartedFluentBuilder
fn clone(&self) -> FleetStartedFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for FleetStartedFluentBuilder
impl !RefUnwindSafe for FleetStartedFluentBuilder
impl Send for FleetStartedFluentBuilder
impl Sync for FleetStartedFluentBuilder
impl Unpin for FleetStartedFluentBuilder
impl !UnwindSafe for FleetStartedFluentBuilder
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
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>
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>
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 more