Interface CfnModelPackage.DriftCheckBaselinesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackage.DriftCheckBaselinesProperty.Jsii$Proxy
- Enclosing class:
CfnModelPackage
@Stability(Stable)
public static interface CfnModelPackage.DriftCheckBaselinesProperty
extends software.amazon.jsii.JsiiSerializable
Represents the drift check 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.*; DriftCheckBaselinesProperty driftCheckBaselinesProperty = DriftCheckBaselinesProperty.builder() .bias(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()) .explainability(DriftCheckExplainabilityProperty.builder() .configFile(FileSourceProperty.builder() .s3Uri("s3Uri") // the properties below are optional .contentDigest("contentDigest") .contentType("contentType") .build()) .constraints(MetricsSourceProperty.builder() .contentType("contentType") .s3Uri("s3Uri") // the properties below are optional .contentDigest("contentDigest") .build()) .build()) .modelDataQuality(DriftCheckModelDataQualityProperty.builder() .constraints(MetricsSourceProperty.builder() .contentType("contentType") .s3Uri("s3Uri") // the properties below are optional .contentDigest("contentDigest") .build()) .statistics(MetricsSourceProperty.builder() .contentType("contentType") .s3Uri("s3Uri") // the properties below are optional .contentDigest("contentDigest") .build()) .build()) .modelQuality(DriftCheckModelQualityProperty.builder() .constraints(MetricsSourceProperty.builder() .contentType("contentType") .s3Uri("s3Uri") // the properties below are optional .contentDigest("contentDigest") .build()) .statistics(MetricsSourceProperty.builder() .contentType("contentType") .s3Uri("s3Uri") // the properties below are optional .contentDigest("contentDigest") .build()) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnModelPackage.DriftCheckBaselinesProperty
static final class
An implementation forCfnModelPackage.DriftCheckBaselinesProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
getBias()
Represents the drift check bias baselines that can be used when the model monitor is set using the model package.default Object
Represents the drift check explainability baselines that can be used when the model monitor is set using the model package.default Object
Represents the drift check model data quality baselines that can be used when the model monitor is set using the model package.default Object
Represents the drift check model quality baselines that can be used when the model monitor is set using the model package.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBias
Represents the drift check bias baselines that can be used when the model monitor is set using the model package.- See Also:
-
getExplainability
Represents the drift check explainability baselines that can be used when the model monitor is set using the model package.- See Also:
-
getModelDataQuality
Represents the drift check model data quality baselines that can be used when the model monitor is set using the model package.- See Also:
-
getModelQuality
Represents the drift check model quality baselines that can be used when the model monitor is set using the model package.- See Also:
-
builder
-