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();
 

See Also: