Class: Aws::SageMaker::Types::ModelLatencyThreshold

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

Overview

The model latency threshold.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#percentileString

The model latency percentile threshold. Acceptable values are P95 and P99. For custom load tests, specify the value as P95.

Returns:

  • (String)


31297
31298
31299
31300
31301
31302
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 31297

class ModelLatencyThreshold < Struct.new(
  :percentile,
  :value_in_milliseconds)
  SENSITIVE = []
  include Aws::Structure
end

#value_in_millisecondsInteger

The model latency percentile value in milliseconds.

Returns:

  • (Integer)


31297
31298
31299
31300
31301
31302
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 31297

class ModelLatencyThreshold < Struct.new(
  :percentile,
  :value_in_milliseconds)
  SENSITIVE = []
  include Aws::Structure
end