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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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)


32841
32842
32843
32844
32845
32846
# File 'lib/aws-sdk-sagemaker/types.rb', line 32841

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)


32841
32842
32843
32844
32845
32846
# File 'lib/aws-sdk-sagemaker/types.rb', line 32841

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