Struct aws_sdk_sagemaker::input::ListEdgePackagingJobsInput [−][src]
#[non_exhaustive]pub struct ListEdgePackagingJobsInput {
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 model_name_contains: Option<String>,
pub status_equals: Option<EdgePackagingJobStatus>,
pub sort_by: Option<ListEdgePackagingJobsSortBy>,
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>
The response from the last list when returning a list large enough to need tokening.
max_results: Option<i32>
Maximum number of results to select.
creation_time_after: Option<DateTime>
Select jobs where the job was created after specified time.
creation_time_before: Option<DateTime>
Select jobs where the job was created before specified time.
last_modified_time_after: Option<DateTime>
Select jobs where the job was updated after specified time.
last_modified_time_before: Option<DateTime>
Select jobs where the job was updated before specified time.
name_contains: Option<String>
Filter for jobs containing this name in their packaging job name.
model_name_contains: Option<String>
Filter for jobs where the model name contains this string.
status_equals: Option<EdgePackagingJobStatus>
The job status to filter for.
sort_by: Option<ListEdgePackagingJobsSortBy>
Use to specify what column to sort by.
sort_order: Option<SortOrder>
What direction to sort by.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListEdgePackagingJobs, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListEdgePackagingJobs, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListEdgePackagingJobs
>
Creates a new builder-style object to manufacture ListEdgePackagingJobsInput
The response from the last list when returning a list large enough to need tokening.
Maximum number of results to select.
Select jobs where the job was created after specified time.
Select jobs where the job was created before specified time.
Select jobs where the job was updated after specified time.
Select jobs where the job was updated before specified time.
Filter for jobs containing this name in their packaging job name.
Filter for jobs where the model name contains this string.
The job status to filter for.
Use to specify what column to sort by.
What direction to sort by.
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 ListEdgePackagingJobsInput
impl Send for ListEdgePackagingJobsInput
impl Sync for ListEdgePackagingJobsInput
impl Unpin for ListEdgePackagingJobsInput
impl UnwindSafe for ListEdgePackagingJobsInput
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