Struct aws_sdk_sagemaker::input::ListHyperParameterTuningJobsInput [−][src]
#[non_exhaustive]pub struct ListHyperParameterTuningJobsInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub sort_by: Option<HyperParameterTuningJobSortByOptions>,
pub sort_order: Option<SortOrder>,
pub name_contains: Option<String>,
pub creation_time_after: Option<Instant>,
pub creation_time_before: Option<Instant>,
pub last_modified_time_after: Option<Instant>,
pub last_modified_time_before: Option<Instant>,
pub status_equals: Option<HyperParameterTuningJobStatus>,
}
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.next_token: Option<String>
If the result of the previous ListHyperParameterTuningJobs
request was
truncated, the response includes a NextToken
. To retrieve the next set of
tuning jobs, use the token in the next request.
max_results: Option<i32>
The maximum number of tuning jobs to return. The default value is 10.
sort_by: Option<HyperParameterTuningJobSortByOptions>
The
field
to sort results by. The default is Name
.
sort_order: Option<SortOrder>
The sort
order
for results. The default is Ascending
.
name_contains: Option<String>
A string in the tuning job name. This filter returns only tuning jobs whose name contains the specified string.
creation_time_after: Option<Instant>
A filter that returns only tuning jobs that were created after the specified time.
creation_time_before: Option<Instant>
A filter that returns only tuning jobs that were created before the specified time.
last_modified_time_after: Option<Instant>
A filter that returns only tuning jobs that were modified after the specified time.
last_modified_time_before: Option<Instant>
A filter that returns only tuning jobs that were modified before the specified time.
status_equals: Option<HyperParameterTuningJobStatus>
A filter that returns only tuning jobs with the specified status.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListHyperParameterTuningJobs, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListHyperParameterTuningJobs, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListHyperParameterTuningJobs
>
Creates a new builder-style object to manufacture ListHyperParameterTuningJobsInput
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 Send for ListHyperParameterTuningJobsInput
impl Sync for ListHyperParameterTuningJobsInput
impl Unpin for ListHyperParameterTuningJobsInput
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