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 ==
.