Struct aws_sdk_sagemaker::input::ListAlgorithmsInput [−][src]
#[non_exhaustive]pub struct ListAlgorithmsInput {
pub creation_time_after: Option<DateTime>,
pub creation_time_before: Option<DateTime>,
pub max_results: Option<i32>,
pub name_contains: Option<String>,
pub next_token: Option<String>,
pub sort_by: Option<AlgorithmSortBy>,
pub sort_order: Option<SortOrder>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.creation_time_after: Option<DateTime>
A filter that returns only algorithms created after the specified time (timestamp).
creation_time_before: Option<DateTime>
A filter that returns only algorithms created before the specified time (timestamp).
max_results: Option<i32>
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<AlgorithmSortBy>
The parameter by which to sort the results. The default is
CreationTime
.
sort_order: Option<SortOrder>
The sort order for the results. The default is Ascending
.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAlgorithms, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAlgorithms, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListAlgorithms
>
Creates a new builder-style object to manufacture ListAlgorithmsInput
A filter that returns only algorithms created after the specified time (timestamp).
A filter that returns only algorithms created before the specified time (timestamp).
The maximum number of algorithms to return in the response.
A string in the algorithm name. This filter returns only algorithms whose name contains the specified 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.
The parameter by which to sort the results. The default is
CreationTime
.
The sort order for the results. The default is Ascending
.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListAlgorithmsInput
impl Send for ListAlgorithmsInput
impl Sync for ListAlgorithmsInput
impl Unpin for ListAlgorithmsInput
impl UnwindSafe for ListAlgorithmsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more