Struct aws_sdk_sagemaker::operation::list_subscribed_workteams::ListSubscribedWorkteamsInput
source · #[non_exhaustive]pub struct ListSubscribedWorkteamsInput {
pub name_contains: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name_contains: Option<String>
A string in the work team name. This filter returns only work teams whose name contains the specified string.
next_token: Option<String>
If the result of the previous ListSubscribedWorkteams
request was truncated, the response includes a NextToken
. To retrieve the next set of labeling jobs, use the token in the next request.
max_results: Option<i32>
The maximum number of work teams to return in each page of the response.
Implementations§
source§impl ListSubscribedWorkteamsInput
impl ListSubscribedWorkteamsInput
sourcepub fn name_contains(&self) -> Option<&str>
pub fn name_contains(&self) -> Option<&str>
A string in the work team name. This filter returns only work teams whose name contains the specified string.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the result of the previous ListSubscribedWorkteams
request was truncated, the response includes a NextToken
. To retrieve the next set of labeling jobs, use the token in the next request.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of work teams to return in each page of the response.
source§impl ListSubscribedWorkteamsInput
impl ListSubscribedWorkteamsInput
sourcepub fn builder() -> ListSubscribedWorkteamsInputBuilder
pub fn builder() -> ListSubscribedWorkteamsInputBuilder
Creates a new builder-style object to manufacture ListSubscribedWorkteamsInput
.
Trait Implementations§
source§impl Clone for ListSubscribedWorkteamsInput
impl Clone for ListSubscribedWorkteamsInput
source§fn clone(&self) -> ListSubscribedWorkteamsInput
fn clone(&self) -> ListSubscribedWorkteamsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListSubscribedWorkteamsInput
impl Debug for ListSubscribedWorkteamsInput
source§impl PartialEq for ListSubscribedWorkteamsInput
impl PartialEq for ListSubscribedWorkteamsInput
source§fn eq(&self, other: &ListSubscribedWorkteamsInput) -> bool
fn eq(&self, other: &ListSubscribedWorkteamsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListSubscribedWorkteamsInput
Auto Trait Implementations§
impl Freeze for ListSubscribedWorkteamsInput
impl RefUnwindSafe for ListSubscribedWorkteamsInput
impl Send for ListSubscribedWorkteamsInput
impl Sync for ListSubscribedWorkteamsInput
impl Unpin for ListSubscribedWorkteamsInput
impl UnwindSafe for ListSubscribedWorkteamsInput
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