Interface CfnEndpointConfig.ServerlessConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointConfig.ServerlessConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnEndpointConfig
@Stability(Stable)
public static interface CfnEndpointConfig.ServerlessConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
ServerlessConfigProperty serverlessConfigProperty = ServerlessConfigProperty.builder()
.maxConcurrency(123)
.memorySizeInMb(123)
// the properties below are optional
.provisionedConcurrency(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpointConfig.ServerlessConfigPropertystatic final classAn implementation forCfnEndpointConfig.ServerlessConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxConcurrency
The maximum number of concurrent invocations your serverless endpoint can process. -
getMemorySizeInMb
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.
-
getProvisionedConcurrency
CfnEndpointConfig.ServerlessConfigProperty.ProvisionedConcurrency. -
builder
-