public static interface CfnEndpointConfig.ServerlessConfigProperty
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) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnEndpointConfig.ServerlessConfigProperty.Builder
A builder for
CfnEndpointConfig.ServerlessConfigProperty |
static class |
CfnEndpointConfig.ServerlessConfigProperty.Jsii$Proxy
An implementation for
CfnEndpointConfig.ServerlessConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnEndpointConfig.ServerlessConfigProperty.Builder |
builder() |
java.lang.Number |
getMaxConcurrency()
The maximum number of concurrent invocations your serverless endpoint can process.
|
java.lang.Number |
getMemorySizeInMb()
The memory size of your serverless endpoint.
|
java.lang.Number getMaxConcurrency()
java.lang.Number getMemorySizeInMb()
Valid values are in 1 GB increments: 1024 MB, 2048 MB, 3072 MB, 4096 MB, 5120 MB, or 6144 MB.
static CfnEndpointConfig.ServerlessConfigProperty.Builder builder()