Struct aws_sdk_sagemaker::operation::list_inference_recommendations_job_steps::ListInferenceRecommendationsJobStepsInput
source · #[non_exhaustive]pub struct ListInferenceRecommendationsJobStepsInput {
pub job_name: Option<String>,
pub status: Option<RecommendationJobStatus>,
pub step_type: Option<RecommendationStepType>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
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.job_name: Option<String>
The name for the Inference Recommender job.
status: Option<RecommendationJobStatus>
A filter to return benchmarks of a specified status. If this field is left empty, then all benchmarks are returned.
step_type: Option<RecommendationStepType>
A filter to return details about the specified type of subtask.
BENCHMARK
: Evaluate the performance of your model on different instance types.
max_results: Option<i32>
The maximum number of results to return.
next_token: Option<String>
A token that you can specify to return more results from the list. Specify this field if you have a token that was returned from a previous request.
Implementations§
source§impl ListInferenceRecommendationsJobStepsInput
impl ListInferenceRecommendationsJobStepsInput
sourcepub fn status(&self) -> Option<&RecommendationJobStatus>
pub fn status(&self) -> Option<&RecommendationJobStatus>
A filter to return benchmarks of a specified status. If this field is left empty, then all benchmarks are returned.
sourcepub fn step_type(&self) -> Option<&RecommendationStepType>
pub fn step_type(&self) -> Option<&RecommendationStepType>
A filter to return details about the specified type of subtask.
BENCHMARK
: Evaluate the performance of your model on different instance types.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token that you can specify to return more results from the list. Specify this field if you have a token that was returned from a previous request.
source§impl ListInferenceRecommendationsJobStepsInput
impl ListInferenceRecommendationsJobStepsInput
sourcepub fn builder() -> ListInferenceRecommendationsJobStepsInputBuilder
pub fn builder() -> ListInferenceRecommendationsJobStepsInputBuilder
Creates a new builder-style object to manufacture ListInferenceRecommendationsJobStepsInput
.
Trait Implementations§
source§impl Clone for ListInferenceRecommendationsJobStepsInput
impl Clone for ListInferenceRecommendationsJobStepsInput
source§fn clone(&self) -> ListInferenceRecommendationsJobStepsInput
fn clone(&self) -> ListInferenceRecommendationsJobStepsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<ListInferenceRecommendationsJobStepsInput> for ListInferenceRecommendationsJobStepsInput
impl PartialEq<ListInferenceRecommendationsJobStepsInput> for ListInferenceRecommendationsJobStepsInput
source§fn eq(&self, other: &ListInferenceRecommendationsJobStepsInput) -> bool
fn eq(&self, other: &ListInferenceRecommendationsJobStepsInput) -> bool
self
and other
values to be equal, and is used
by ==
.