#[non_exhaustive]pub struct GetMlTaskRunsInput {
pub transform_id: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub filter: Option<TaskRunFilterCriteria>,
pub sort: Option<TaskRunSortCriteria>,
}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.transform_id: Option<String>The unique identifier of the machine learning transform.
next_token: Option<String>A token for pagination of the results. The default is empty.
max_results: Option<i32>The maximum number of results to return.
filter: Option<TaskRunFilterCriteria>The filter criteria, in the TaskRunFilterCriteria structure, for the task run.
sort: Option<TaskRunSortCriteria>The sorting criteria, in the TaskRunSortCriteria structure, for the task run.
Implementations§
source§impl GetMlTaskRunsInput
impl GetMlTaskRunsInput
sourcepub fn transform_id(&self) -> Option<&str>
pub fn transform_id(&self) -> Option<&str>
The unique identifier of the machine learning transform.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token for pagination of the results. The default is empty.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return.
sourcepub fn filter(&self) -> Option<&TaskRunFilterCriteria>
pub fn filter(&self) -> Option<&TaskRunFilterCriteria>
The filter criteria, in the TaskRunFilterCriteria structure, for the task run.
sourcepub fn sort(&self) -> Option<&TaskRunSortCriteria>
pub fn sort(&self) -> Option<&TaskRunSortCriteria>
The sorting criteria, in the TaskRunSortCriteria structure, for the task run.
source§impl GetMlTaskRunsInput
impl GetMlTaskRunsInput
sourcepub fn builder() -> GetMlTaskRunsInputBuilder
pub fn builder() -> GetMlTaskRunsInputBuilder
Creates a new builder-style object to manufacture GetMlTaskRunsInput.
Trait Implementations§
source§impl Clone for GetMlTaskRunsInput
impl Clone for GetMlTaskRunsInput
source§fn clone(&self) -> GetMlTaskRunsInput
fn clone(&self) -> GetMlTaskRunsInput
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 GetMlTaskRunsInput
impl Debug for GetMlTaskRunsInput
source§impl PartialEq<GetMlTaskRunsInput> for GetMlTaskRunsInput
impl PartialEq<GetMlTaskRunsInput> for GetMlTaskRunsInput
source§fn eq(&self, other: &GetMlTaskRunsInput) -> bool
fn eq(&self, other: &GetMlTaskRunsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetMlTaskRunsInput
Auto Trait Implementations§
impl RefUnwindSafe for GetMlTaskRunsInput
impl Send for GetMlTaskRunsInput
impl Sync for GetMlTaskRunsInput
impl Unpin for GetMlTaskRunsInput
impl UnwindSafe for GetMlTaskRunsInput
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