#[non_exhaustive]pub struct ListClassificationJobsInput {
pub filter_criteria: Option<ListJobsFilterCriteria>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub sort_criteria: Option<ListJobsSortCriteria>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.filter_criteria: Option<ListJobsFilterCriteria>
The criteria to use to filter the results.
max_results: Option<i32>
The maximum number of items to include in each page of the response.
next_token: Option<String>
The nextToken string that specifies which page of results to return in a paginated response.
sort_criteria: Option<ListJobsSortCriteria>
The criteria to use to sort the results.
Implementations§
source§impl ListClassificationJobsInput
impl ListClassificationJobsInput
sourcepub fn filter_criteria(&self) -> Option<&ListJobsFilterCriteria>
pub fn filter_criteria(&self) -> Option<&ListJobsFilterCriteria>
The criteria to use to filter the results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to include in each page of the response.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The nextToken string that specifies which page of results to return in a paginated response.
sourcepub fn sort_criteria(&self) -> Option<&ListJobsSortCriteria>
pub fn sort_criteria(&self) -> Option<&ListJobsSortCriteria>
The criteria to use to sort the results.
source§impl ListClassificationJobsInput
impl ListClassificationJobsInput
sourcepub fn builder() -> ListClassificationJobsInputBuilder
pub fn builder() -> ListClassificationJobsInputBuilder
Creates a new builder-style object to manufacture ListClassificationJobsInput
.
Trait Implementations§
source§impl Clone for ListClassificationJobsInput
impl Clone for ListClassificationJobsInput
source§fn clone(&self) -> ListClassificationJobsInput
fn clone(&self) -> ListClassificationJobsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ListClassificationJobsInput
impl Debug for ListClassificationJobsInput
source§impl PartialEq for ListClassificationJobsInput
impl PartialEq for ListClassificationJobsInput
source§fn eq(&self, other: &ListClassificationJobsInput) -> bool
fn eq(&self, other: &ListClassificationJobsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListClassificationJobsInput
Auto Trait Implementations§
impl RefUnwindSafe for ListClassificationJobsInput
impl Send for ListClassificationJobsInput
impl Sync for ListClassificationJobsInput
impl Unpin for ListClassificationJobsInput
impl UnwindSafe for ListClassificationJobsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.