Class: Aws::SageMaker::Types::ProductionVariantServerlessUpdateConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#max_concurrencyInteger

The updated maximum number of concurrent invocations your serverless endpoint can process.

Returns:

  • (Integer)


35622
35623
35624
35625
35626
35627
# File 'lib/aws-sdk-sagemaker/types.rb', line 35622

class ProductionVariantServerlessUpdateConfig < Struct.new(
  :max_concurrency,
  :provisioned_concurrency)
  SENSITIVE = []
  include Aws::Structure
end

#provisioned_concurrencyInteger

The updated amount of provisioned concurrency to allocate for the serverless endpoint. Should be less than or equal to ‘MaxConcurrency`.

Returns:

  • (Integer)


35622
35623
35624
35625
35626
35627
# File 'lib/aws-sdk-sagemaker/types.rb', line 35622

class ProductionVariantServerlessUpdateConfig < Struct.new(
  :max_concurrency,
  :provisioned_concurrency)
  SENSITIVE = []
  include Aws::Structure
end