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.
37616 37617 37618 37619 37620 37621 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 37616 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`.
37616 37617 37618 37619 37620 37621 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 37616 class ProductionVariantServerlessUpdateConfig < Struct.new( :max_concurrency, :provisioned_concurrency) SENSITIVE = [] include Aws::Structure end |