aws-cdk-lib.aws_sagemaker.CfnEndpointConfig.ServerlessConfigProperty

interface ServerlessConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnEndpointConfig.ServerlessConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnEndpointConfig_ServerlessConfigProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnEndpointConfig.ServerlessConfigProperty
Pythonaws_cdk.aws_sagemaker.CfnEndpointConfig.ServerlessConfigProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnEndpointConfig » ServerlessConfigProperty

Specifies the serverless configuration for an endpoint variant.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const serverlessConfigProperty: sagemaker.CfnEndpointConfig.ServerlessConfigProperty = {
  maxConcurrency: 123,
  memorySizeInMb: 123,

  // the properties below are optional
  provisionedConcurrency: 123,
};

Properties

NameTypeDescription
maxConcurrencynumberThe maximum number of concurrent invocations your serverless endpoint can process.
memorySizeInMbnumberThe memory size of your serverless endpoint.
provisionedConcurrency?numberCfnEndpointConfig.ServerlessConfigProperty.ProvisionedConcurrency.

maxConcurrency

Type: number

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


memorySizeInMb

Type: number

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.


provisionedConcurrency?

Type: number (optional)

CfnEndpointConfig.ServerlessConfigProperty.ProvisionedConcurrency.