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.
43709 43710 43711 43712 43713 43714 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 43709 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`.
43709 43710 43711 43712 43713 43714 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 43709 class ProductionVariantServerlessUpdateConfig < Struct.new( :max_concurrency, :provisioned_concurrency) SENSITIVE = [] include Aws::Structure end |