Interface CfnInferenceExperiment.ModelVariantConfigProperty

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

@Stability(Stable) public static interface CfnInferenceExperiment.ModelVariantConfigProperty extends software.amazon.jsii.JsiiSerializable
Contains information about the deployment options of a model.

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