#[non_exhaustive]pub struct RecommendationJobStoppingConditions { /* private fields */ }
Expand description
Specifies conditions for stopping a job. When a job reaches a stopping condition limit, SageMaker ends the job.
Implementations§
source§impl RecommendationJobStoppingConditions
impl RecommendationJobStoppingConditions
sourcepub fn max_invocations(&self) -> i32
pub fn max_invocations(&self) -> i32
The maximum number of requests per minute expected for the endpoint.
sourcepub fn model_latency_thresholds(&self) -> Option<&[ModelLatencyThreshold]>
pub fn model_latency_thresholds(&self) -> Option<&[ModelLatencyThreshold]>
The interval of time taken by a model to respond as viewed from SageMaker. The interval includes the local communication time taken to send the request and to fetch the response from the container of a model and the time taken to complete the inference in the container.
source§impl RecommendationJobStoppingConditions
impl RecommendationJobStoppingConditions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RecommendationJobStoppingConditions
.
Trait Implementations§
source§impl Clone for RecommendationJobStoppingConditions
impl Clone for RecommendationJobStoppingConditions
source§fn clone(&self) -> RecommendationJobStoppingConditions
fn clone(&self) -> RecommendationJobStoppingConditions
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 PartialEq<RecommendationJobStoppingConditions> for RecommendationJobStoppingConditions
impl PartialEq<RecommendationJobStoppingConditions> for RecommendationJobStoppingConditions
source§fn eq(&self, other: &RecommendationJobStoppingConditions) -> bool
fn eq(&self, other: &RecommendationJobStoppingConditions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.