Class: Aws::SageMaker::Types::ProductionVariantServerlessConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProductionVariantServerlessConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Specifies the serverless configuration for an endpoint variant.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_concurrency ⇒ Integer
The maximum number of concurrent invocations your serverless endpoint can process.
-
#memory_size_in_mb ⇒ Integer
The memory size of your serverless endpoint.
-
#provisioned_concurrency ⇒ Integer
The amount of provisioned concurrency to allocate for the serverless endpoint.
Instance Attribute Details
#max_concurrency ⇒ Integer
The maximum number of concurrent invocations your serverless endpoint can process.
37592 37593 37594 37595 37596 37597 37598 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 37592 class ProductionVariantServerlessConfig < Struct.new( :memory_size_in_mb, :max_concurrency, :provisioned_concurrency) SENSITIVE = [] include Aws::Structure end |
#memory_size_in_mb ⇒ Integer
The memory size of your serverless endpoint. Valid values are in 1 GB increments: 1024 MB, 2048 MB, 3072 MB, 4096 MB, 5120 MB, or 6144 MB.
37592 37593 37594 37595 37596 37597 37598 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 37592 class ProductionVariantServerlessConfig < Struct.new( :memory_size_in_mb, :max_concurrency, :provisioned_concurrency) SENSITIVE = [] include Aws::Structure end |
#provisioned_concurrency ⇒ Integer
The amount of provisioned concurrency to allocate for the serverless endpoint. Should be less than or equal to ‘MaxConcurrency`.
<note markdown=“1”> This field is not supported for serverless endpoint recommendations for Inference Recommender jobs. For more information about creating an Inference Recommender job, see [CreateInferenceRecommendationsJobs].
</note>
[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateInferenceRecommendationsJob.html
37592 37593 37594 37595 37596 37597 37598 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 37592 class ProductionVariantServerlessConfig < Struct.new( :memory_size_in_mb, :max_concurrency, :provisioned_concurrency) SENSITIVE = [] include Aws::Structure end |