Class: Aws::SageMaker::Types::ProductionVariantServerlessUpdateConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProductionVariantServerlessUpdateConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Specifies the serverless update concurrency configuration for an endpoint variant.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_concurrency ⇒ Integer
The updated maximum number of concurrent invocations your serverless endpoint can process.
-
#provisioned_concurrency ⇒ Integer
The updated amount of provisioned concurrency to allocate for the serverless endpoint.
Instance Attribute Details
#max_concurrency ⇒ Integer
The updated maximum number of concurrent invocations your serverless endpoint can process.
39988 39989 39990 39991 39992 39993 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 39988 class ProductionVariantServerlessUpdateConfig < Struct.new( :max_concurrency, :provisioned_concurrency) SENSITIVE = [] include Aws::Structure end |
#provisioned_concurrency ⇒ Integer
The updated amount of provisioned concurrency to allocate for the serverless endpoint. Should be less than or equal to ‘MaxConcurrency`.
39988 39989 39990 39991 39992 39993 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 39988 class ProductionVariantServerlessUpdateConfig < Struct.new( :max_concurrency, :provisioned_concurrency) SENSITIVE = [] include Aws::Structure end |