Class: Aws::SageMaker::Types::ScalingPolicyObjective
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ScalingPolicyObjective
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
An object where you specify the anticipated traffic pattern for an endpoint.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_invocations_per_minute ⇒ Integer
The maximum number of expected requests to your endpoint per minute.
-
#min_invocations_per_minute ⇒ Integer
The minimum number of expected requests to your endpoint per minute.
Instance Attribute Details
#max_invocations_per_minute ⇒ Integer
The maximum number of expected requests to your endpoint per minute.
40239 40240 40241 40242 40243 40244 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 40239 class ScalingPolicyObjective < Struct.new( :min_invocations_per_minute, :max_invocations_per_minute) SENSITIVE = [] include Aws::Structure end |
#min_invocations_per_minute ⇒ Integer
The minimum number of expected requests to your endpoint per minute.
40239 40240 40241 40242 40243 40244 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 40239 class ScalingPolicyObjective < Struct.new( :min_invocations_per_minute, :max_invocations_per_minute) SENSITIVE = [] include Aws::Structure end |