Interface CfnInferenceExperiment.RealTimeInferenceConfigProperty

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

@Stability(Stable) public static interface CfnInferenceExperiment.RealTimeInferenceConfigProperty extends software.amazon.jsii.JsiiSerializable
The infrastructure configuration for deploying the model to a real-time inference endpoint.

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.*;
 RealTimeInferenceConfigProperty realTimeInferenceConfigProperty = RealTimeInferenceConfigProperty.builder()
         .instanceCount(123)
         .instanceType("instanceType")
         .build();
 

See Also: