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