Interface CfnEndpointConfigPropsMixin.ServerlessConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpointConfigPropsMixin.ServerlessConfigProperty.Jsii$Proxy
Enclosing class:
CfnEndpointConfigPropsMixin

@Stability(Stable) public static interface CfnEndpointConfigPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
 ServerlessConfigProperty serverlessConfigProperty = ServerlessConfigProperty.builder()
         .maxConcurrency(123)
         .memorySizeInMb(123)
         .provisionedConcurrency(123)
         .build();
 

See Also: