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