Class: Aws::Rekognition::Types::StartProjectVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::StartProjectVersionRequest
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_inference_units ⇒ Integer
The maximum number of inference units to use for auto-scaling the model.
-
#min_inference_units ⇒ Integer
The minimum number of inference units to use.
-
#project_version_arn ⇒ String
The Amazon Resource Name(ARN) of the model version that you want to start.
Instance Attribute Details
#max_inference_units ⇒ Integer
The maximum number of inference units to use for auto-scaling the model. If you don't specify a value, Amazon Rekognition Custom Labels doesn't auto-scale the model.
5634 5635 5636 5637 5638 5639 5640 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5634 class StartProjectVersionRequest < Struct.new( :project_version_arn, :min_inference_units, :max_inference_units) SENSITIVE = [] include Aws::Structure end |
#min_inference_units ⇒ Integer
The minimum number of inference units to use. A single inference unit represents 1 hour of processing.
For information about the number of transactions per second (TPS) that an inference unit can support, see Running a trained Amazon Rekognition Custom Labels model in the Amazon Rekognition Custom Labels Guide.
Use a higher number to increase the TPS throughput of your model. You are charged for the number of inference units that you use.
5634 5635 5636 5637 5638 5639 5640 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5634 class StartProjectVersionRequest < Struct.new( :project_version_arn, :min_inference_units, :max_inference_units) SENSITIVE = [] include Aws::Structure end |
#project_version_arn ⇒ String
The Amazon Resource Name(ARN) of the model version that you want to start.
5634 5635 5636 5637 5638 5639 5640 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5634 class StartProjectVersionRequest < Struct.new( :project_version_arn, :min_inference_units, :max_inference_units) SENSITIVE = [] include Aws::Structure end |