Interface CfnInferenceExperiment.ModelInfrastructureConfigProperty

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

@Stability(Stable) public static interface CfnInferenceExperiment.ModelInfrastructureConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration for the infrastructure that the model will be deployed to.

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