#[non_exhaustive]pub struct RecommendationJobStoppingConditions {
pub max_invocations: i32,
pub model_latency_thresholds: Option<Vec<ModelLatencyThreshold>>,
}
Expand description
Specifies conditions for stopping a job. When a job reaches a stopping condition limit, SageMaker ends the job.
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.max_invocations: i32
The maximum number of requests per minute expected for the endpoint.
model_latency_thresholds: Option<Vec<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.
Implementations
The maximum number of requests per minute expected for the endpoint.
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.
Creates a new builder-style object to manufacture RecommendationJobStoppingConditions
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 RecommendationJobStoppingConditions
impl Sync for RecommendationJobStoppingConditions
impl Unpin for RecommendationJobStoppingConditions
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