Class: Aws::SageMaker::Types::ProductionVariantManagedInstanceScaling
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProductionVariantManagedInstanceScaling
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Settings that control the range in the number of instances that the endpoint provisions as it scales up or down to accommodate traffic.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_instance_count ⇒ Integer
The maximum number of instances that the endpoint can provision when it scales up to accommodate an increase in traffic.
-
#min_instance_count ⇒ Integer
The minimum number of instances that the endpoint must retain when it scales down to accommodate a decrease in traffic.
-
#status ⇒ String
Indicates whether managed instance scaling is enabled.
Instance Attribute Details
#max_instance_count ⇒ Integer
The maximum number of instances that the endpoint can provision when it scales up to accommodate an increase in traffic.
37532 37533 37534 37535 37536 37537 37538 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 37532 class ProductionVariantManagedInstanceScaling < Struct.new( :status, :min_instance_count, :max_instance_count) SENSITIVE = [] include Aws::Structure end |
#min_instance_count ⇒ Integer
The minimum number of instances that the endpoint must retain when it scales down to accommodate a decrease in traffic.
37532 37533 37534 37535 37536 37537 37538 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 37532 class ProductionVariantManagedInstanceScaling < Struct.new( :status, :min_instance_count, :max_instance_count) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Indicates whether managed instance scaling is enabled.
37532 37533 37534 37535 37536 37537 37538 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 37532 class ProductionVariantManagedInstanceScaling < Struct.new( :status, :min_instance_count, :max_instance_count) SENSITIVE = [] include Aws::Structure end |