Interface CfnModelPackage.DriftCheckBiasProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackage.DriftCheckBiasProperty.Jsii$Proxy
- Enclosing class:
CfnModelPackage
@Stability(Stable)
public static interface CfnModelPackage.DriftCheckBiasProperty
extends software.amazon.jsii.JsiiSerializable
Represents the drift check bias baselines that can be used when the model monitor is set using the model package.
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.*; DriftCheckBiasProperty driftCheckBiasProperty = DriftCheckBiasProperty.builder() .configFile(FileSourceProperty.builder() .s3Uri("s3Uri") // the properties below are optional .contentDigest("contentDigest") .contentType("contentType") .build()) .postTrainingConstraints(MetricsSourceProperty.builder() .contentType("contentType") .s3Uri("s3Uri") // the properties below are optional .contentDigest("contentDigest") .build()) .preTrainingConstraints(MetricsSourceProperty.builder() .contentType("contentType") .s3Uri("s3Uri") // the properties below are optional .contentDigest("contentDigest") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnModelPackage.DriftCheckBiasProperty
static final class
An implementation forCfnModelPackage.DriftCheckBiasProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigFile
The bias config file for a model.- See Also:
-
getPostTrainingConstraints
The post-training constraints.- See Also:
-
getPreTrainingConstraints
The pre-training constraints.- See Also:
-
builder
-