Struct aws_sdk_sagemaker::input::ListLabelingJobsInput [−][src]
#[non_exhaustive]pub struct ListLabelingJobsInput {
pub creation_time_after: Option<DateTime>,
pub creation_time_before: Option<DateTime>,
pub last_modified_time_after: Option<DateTime>,
pub last_modified_time_before: Option<DateTime>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub name_contains: Option<String>,
pub sort_by: Option<SortBy>,
pub sort_order: Option<SortOrder>,
pub status_equals: Option<LabelingJobStatus>,
}
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.creation_time_after: Option<DateTime>
A filter that returns only labeling jobs created after the specified time (timestamp).
creation_time_before: Option<DateTime>
A filter that returns only labeling jobs created before the specified time (timestamp).
last_modified_time_after: Option<DateTime>
A filter that returns only labeling jobs modified after the specified time (timestamp).
last_modified_time_before: Option<DateTime>
A filter that returns only labeling jobs modified before the specified time (timestamp).
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 ListLabelingJobs
request was truncated, the
response includes a NextToken
. To retrieve the next set of labeling jobs,
use the token in the next request.
name_contains: Option<String>
A string in the labeling job name. This filter returns only labeling jobs whose name contains the specified string.
sort_by: Option<SortBy>
The field to sort results by. The default is CreationTime
.
sort_order: Option<SortOrder>
The sort order for results. The default is Ascending
.
status_equals: Option<LabelingJobStatus>
A filter that retrieves only labeling jobs with a specific status.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListLabelingJobs, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListLabelingJobs, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListLabelingJobs
>
Creates a new builder-style object to manufacture ListLabelingJobsInput
A filter that returns only labeling jobs created after the specified time (timestamp).
A filter that returns only labeling jobs created before the specified time (timestamp).
A filter that returns only labeling jobs modified after the specified time (timestamp).
A filter that returns only labeling jobs modified before the specified time (timestamp).
The maximum number of labeling jobs to return in each page of the response.
If the result of the previous ListLabelingJobs
request was truncated, the
response includes a NextToken
. To retrieve the next set of labeling jobs,
use the token in the next request.
A string in the labeling job name. This filter returns only labeling jobs whose name contains the specified string.
The field to sort results by. The default is CreationTime
.
The sort order for results. The default is Ascending
.
A filter that retrieves only labeling jobs with a specific status.
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 RefUnwindSafe for ListLabelingJobsInput
impl Send for ListLabelingJobsInput
impl Sync for ListLabelingJobsInput
impl Unpin for ListLabelingJobsInput
impl UnwindSafe for ListLabelingJobsInput
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