pub struct ListModelPackagesInput {
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 model packages created after the specified time (timestamp).
creation_time_before: Option<f64>
A filter that returns only model packages created before the specified time (timestamp).
max_results: Option<i64>
The maximum number of model packages to return in the response.
name_contains: Option<String>
A string in the model package name. This filter returns only model packages whose name contains the specified string.
next_token: Option<String>
If the response to a previous ListModelPackages
request was truncated, the response includes a NextToken
. To retrieve the next set of model packages, use the token in the next request.
sort_by: Option<String>
The parameter by which to sort the results. The default is CreationTime
.
sort_order: Option<String>
The sort order for the results. The default is Ascending
.
Trait Implementations§
Source§impl Clone for ListModelPackagesInput
impl Clone for ListModelPackagesInput
Source§fn clone(&self) -> ListModelPackagesInput
fn clone(&self) -> ListModelPackagesInput
Returns a duplicate 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 ListModelPackagesInput
impl Debug for ListModelPackagesInput
Source§impl Default for ListModelPackagesInput
impl Default for ListModelPackagesInput
Source§fn default() -> ListModelPackagesInput
fn default() -> ListModelPackagesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListModelPackagesInput
impl PartialEq for ListModelPackagesInput
Source§impl Serialize for ListModelPackagesInput
impl Serialize for ListModelPackagesInput
impl StructuralPartialEq for ListModelPackagesInput
Auto Trait Implementations§
impl Freeze for ListModelPackagesInput
impl RefUnwindSafe for ListModelPackagesInput
impl Send for ListModelPackagesInput
impl Sync for ListModelPackagesInput
impl Unpin for ListModelPackagesInput
impl UnwindSafe for ListModelPackagesInput
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