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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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)


35673
35674
35675
35676
35677
35678
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 35673

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)


35673
35674
35675
35676
35677
35678
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 35673

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