#[non_exhaustive]pub struct ListFleetsOutputBuilder { /* private fields */ }
Expand description
A builder for ListFleetsOutput
.
Implementations§
source§impl ListFleetsOutputBuilder
impl ListFleetsOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call.
sourcepub fn fleets(self, input: impl Into<String>) -> Self
pub fn fleets(self, input: impl Into<String>) -> Self
Appends an item to fleets
.
To override the contents of this collection use set_fleets
.
The list of compute fleet names.
sourcepub fn set_fleets(self, input: Option<Vec<String>>) -> Self
pub fn set_fleets(self, input: Option<Vec<String>>) -> Self
The list of compute fleet names.
sourcepub fn get_fleets(&self) -> &Option<Vec<String>>
pub fn get_fleets(&self) -> &Option<Vec<String>>
The list of compute fleet names.
sourcepub fn build(self) -> ListFleetsOutput
pub fn build(self) -> ListFleetsOutput
Consumes the builder and constructs a ListFleetsOutput
.
Trait Implementations§
source§impl Clone for ListFleetsOutputBuilder
impl Clone for ListFleetsOutputBuilder
source§fn clone(&self) -> ListFleetsOutputBuilder
fn clone(&self) -> ListFleetsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListFleetsOutputBuilder
impl Debug for ListFleetsOutputBuilder
source§impl Default for ListFleetsOutputBuilder
impl Default for ListFleetsOutputBuilder
source§fn default() -> ListFleetsOutputBuilder
fn default() -> ListFleetsOutputBuilder
source§impl PartialEq for ListFleetsOutputBuilder
impl PartialEq for ListFleetsOutputBuilder
source§fn eq(&self, other: &ListFleetsOutputBuilder) -> bool
fn eq(&self, other: &ListFleetsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListFleetsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListFleetsOutputBuilder
impl RefUnwindSafe for ListFleetsOutputBuilder
impl Send for ListFleetsOutputBuilder
impl Sync for ListFleetsOutputBuilder
impl Unpin for ListFleetsOutputBuilder
impl UnwindSafe for ListFleetsOutputBuilder
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