pub struct ListModelsInput {
pub creation_time_after: Option<f64>,
pub creation_time_before: Option<f64>,
pub max_results: Option<i64>,
pub name_contains: Option<String>,
pub next_token: Option<String>,
pub sort_by: Option<String>,
pub sort_order: Option<String>,
}
Fields§
§creation_time_after: Option<f64>
A filter that returns only models with a creation time greater than or equal to the specified time (timestamp).
creation_time_before: Option<f64>
A filter that returns only models created before the specified time (timestamp).
max_results: Option<i64>
The maximum number of models to return in the response.
name_contains: Option<String>
A string in the training job name. This filter returns only models in the training job whose name contains the specified string.
next_token: Option<String>
If the response to a previous ListModels
request was truncated, the response includes a NextToken
. To retrieve the next set of models, use the token in the next request.
sort_by: Option<String>
Sorts the list of results. The default is CreationTime
.
sort_order: Option<String>
The sort order for results. The default is Descending
.
Trait Implementations§
Source§impl Clone for ListModelsInput
impl Clone for ListModelsInput
Source§fn clone(&self) -> ListModelsInput
fn clone(&self) -> ListModelsInput
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 ListModelsInput
impl Debug for ListModelsInput
Source§impl Default for ListModelsInput
impl Default for ListModelsInput
Source§fn default() -> ListModelsInput
fn default() -> ListModelsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListModelsInput
impl PartialEq for ListModelsInput
Source§impl Serialize for ListModelsInput
impl Serialize for ListModelsInput
impl StructuralPartialEq for ListModelsInput
Auto Trait Implementations§
impl Freeze for ListModelsInput
impl RefUnwindSafe for ListModelsInput
impl Send for ListModelsInput
impl Sync for ListModelsInput
impl Unpin for ListModelsInput
impl UnwindSafe for ListModelsInput
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