Class: Aws::Rekognition::Types::StartProjectVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::StartProjectVersionRequest
- Includes:
- Structure
- Defined in:
- 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.
7242 7243 7244 7245 7246 7247 7248 |
# File 'lib/aws-sdk-rekognition/types.rb', line 7242 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.
Use a higher number to increase the TPS throughput of your model. You are charged for the number of inference units that you use.
7242 7243 7244 7245 7246 7247 7248 |
# File 'lib/aws-sdk-rekognition/types.rb', line 7242 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.
7242 7243 7244 7245 7246 7247 7248 |
# File 'lib/aws-sdk-rekognition/types.rb', line 7242 class StartProjectVersionRequest < Struct.new( :project_version_arn, :min_inference_units, :max_inference_units) SENSITIVE = [] include Aws::Structure end |