Class: Aws::SageMaker::Types::ModelLatencyThreshold
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ModelLatencyThreshold
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
The model latency threshold.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#percentile ⇒ String
The model latency percentile threshold.
-
#value_in_milliseconds ⇒ Integer
The model latency percentile value in milliseconds.
Instance Attribute Details
#percentile ⇒ String
The model latency percentile threshold. Acceptable values are ‘P95` and `P99`. For custom load tests, specify the value as `P95`.
32904 32905 32906 32907 32908 32909 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 32904 class ModelLatencyThreshold < Struct.new( :percentile, :value_in_milliseconds) SENSITIVE = [] include Aws::Structure end |
#value_in_milliseconds ⇒ Integer
The model latency percentile value in milliseconds.
32904 32905 32906 32907 32908 32909 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 32904 class ModelLatencyThreshold < Struct.new( :percentile, :value_in_milliseconds) SENSITIVE = [] include Aws::Structure end |