Struct aws_sdk_sagemaker::input::ListLabelingJobsForWorkteamInput [−][src]
#[non_exhaustive]pub struct ListLabelingJobsForWorkteamInput {
pub workteam_arn: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub creation_time_after: Option<Instant>,
pub creation_time_before: Option<Instant>,
pub job_reference_code_contains: Option<String>,
pub sort_by: Option<ListLabelingJobsForWorkteamSortByOptions>,
pub sort_order: Option<SortOrder>,
}
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.workteam_arn: Option<String>
The Amazon Resource Name (ARN) of the work team for which you want to see labeling jobs for.
max_results: Option<i32>
The maximum number of labeling jobs to return in each page of the response.
next_token: Option<String>
If the result of the previous ListLabelingJobsForWorkteam
request was
truncated, the response includes a NextToken
. To retrieve the next set of
labeling jobs, use the token in the next request.
creation_time_after: Option<Instant>
A filter that returns only labeling jobs created after the specified time (timestamp).
creation_time_before: Option<Instant>
A filter that returns only labeling jobs created before the specified time (timestamp).
job_reference_code_contains: Option<String>
A filter the limits jobs to only the ones whose job reference code contains the specified string.
sort_by: Option<ListLabelingJobsForWorkteamSortByOptions>
The field to sort results by. The default is CreationTime
.
sort_order: Option<SortOrder>
The sort order for results. The default is Ascending
.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListLabelingJobsForWorkteam, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListLabelingJobsForWorkteam, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListLabelingJobsForWorkteam
>
Creates a new builder-style object to manufacture ListLabelingJobsForWorkteamInput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ListLabelingJobsForWorkteamInput
impl Sync for ListLabelingJobsForWorkteamInput
impl Unpin for ListLabelingJobsForWorkteamInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more