Interface CfnModelPackage.DriftCheckModelDataQualityProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackage.DriftCheckModelDataQualityProperty.Jsii$Proxy
- Enclosing class:
CfnModelPackage
@Stability(Stable)
public static interface CfnModelPackage.DriftCheckModelDataQualityProperty
extends software.amazon.jsii.JsiiSerializable
Represents the drift check data quality 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.*; DriftCheckModelDataQualityProperty driftCheckModelDataQualityProperty = 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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnModelPackage.DriftCheckModelDataQualityProperty
static final class
An implementation forCfnModelPackage.DriftCheckModelDataQualityProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConstraints
The drift check model data quality constraints.- See Also:
-
getStatistics
The drift check model data quality statistics.- See Also:
-
builder
-