Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::SageMaker::Types::RecommendationJobStoppingConditions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

Specifies conditions for stopping a job. When a job reaches a stopping condition limit, SageMaker ends the job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#flat_invocationsString

Stops a load test when the number of invocations (TPS) peaks and flattens, which means that the instance has reached capacity. The default value is Stop. If you want the load test to continue after invocations have flattened, set the value to Continue.

Returns:

  • (String)

41031
41032
41033
41034
41035
41036
41037
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 41031

class RecommendationJobStoppingConditions < Struct.new(
  :max_invocations,
  :model_latency_thresholds,
  :flat_invocations)
  SENSITIVE = []
  include Aws::Structure
end

#max_invocationsInteger

The maximum number of requests per minute expected for the endpoint.

Returns:

  • (Integer)

41031
41032
41033
41034
41035
41036
41037
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 41031

class RecommendationJobStoppingConditions < Struct.new(
  :max_invocations,
  :model_latency_thresholds,
  :flat_invocations)
  SENSITIVE = []
  include Aws::Structure
end

#model_latency_thresholdsArray<Types::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.

Returns:


41031
41032
41033
41034
41035
41036
41037
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 41031

class RecommendationJobStoppingConditions < Struct.new(
  :max_invocations,
  :model_latency_thresholds,
  :flat_invocations)
  SENSITIVE = []
  include Aws::Structure
end