#[non_exhaustive]pub struct ListWorkteamsOutputBuilder { /* private fields */ }
Expand description
A builder for ListWorkteamsOutput
.
Implementations§
source§impl ListWorkteamsOutputBuilder
impl ListWorkteamsOutputBuilder
sourcepub fn workteams(self, input: Workteam) -> Self
pub fn workteams(self, input: Workteam) -> Self
Appends an item to workteams
.
To override the contents of this collection use set_workteams
.
An array of Workteam
objects, each describing a work team.
sourcepub fn set_workteams(self, input: Option<Vec<Workteam>>) -> Self
pub fn set_workteams(self, input: Option<Vec<Workteam>>) -> Self
An array of Workteam
objects, each describing a work team.
sourcepub fn get_workteams(&self) -> &Option<Vec<Workteam>>
pub fn get_workteams(&self) -> &Option<Vec<Workteam>>
An array of Workteam
objects, each describing a work team.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of work teams, use it in the subsequent request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of work teams, use it in the subsequent request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of work teams, use it in the subsequent request.
sourcepub fn build(self) -> ListWorkteamsOutput
pub fn build(self) -> ListWorkteamsOutput
Consumes the builder and constructs a ListWorkteamsOutput
.
Trait Implementations§
source§impl Clone for ListWorkteamsOutputBuilder
impl Clone for ListWorkteamsOutputBuilder
source§fn clone(&self) -> ListWorkteamsOutputBuilder
fn clone(&self) -> ListWorkteamsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListWorkteamsOutputBuilder
impl Debug for ListWorkteamsOutputBuilder
source§impl Default for ListWorkteamsOutputBuilder
impl Default for ListWorkteamsOutputBuilder
source§fn default() -> ListWorkteamsOutputBuilder
fn default() -> ListWorkteamsOutputBuilder
source§impl PartialEq for ListWorkteamsOutputBuilder
impl PartialEq for ListWorkteamsOutputBuilder
source§fn eq(&self, other: &ListWorkteamsOutputBuilder) -> bool
fn eq(&self, other: &ListWorkteamsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListWorkteamsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListWorkteamsOutputBuilder
impl RefUnwindSafe for ListWorkteamsOutputBuilder
impl Send for ListWorkteamsOutputBuilder
impl Sync for ListWorkteamsOutputBuilder
impl Unpin for ListWorkteamsOutputBuilder
impl UnwindSafe for ListWorkteamsOutputBuilder
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