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)


31303
31304
31305
31306
31307
31308
# File 'lib/aws-sdk-sagemaker/types.rb', line 31303

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)


31303
31304
31305
31306
31307
31308
# File 'lib/aws-sdk-sagemaker/types.rb', line 31303

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