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 for ListInferenceRecommendationsJobStepsInput
impl PartialEq 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 ==.impl StructuralPartialEq for ListInferenceRecommendationsJobStepsInput
Auto Trait Implementations§
impl Freeze for ListInferenceRecommendationsJobStepsInput
impl RefUnwindSafe for ListInferenceRecommendationsJobStepsInput
impl Send for ListInferenceRecommendationsJobStepsInput
impl Sync for ListInferenceRecommendationsJobStepsInput
impl Unpin for ListInferenceRecommendationsJobStepsInput
impl UnwindSafe for ListInferenceRecommendationsJobStepsInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more