Interface CfnInferenceExperiment.ShadowModelVariantConfigProperty

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

@Stability(Stable) public static interface CfnInferenceExperiment.ShadowModelVariantConfigProperty extends software.amazon.jsii.JsiiSerializable
The name and sampling percentage of a shadow 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.*;
 ShadowModelVariantConfigProperty shadowModelVariantConfigProperty = ShadowModelVariantConfigProperty.builder()
         .samplingPercentage(123)
         .shadowModelVariantName("shadowModelVariantName")
         .build();