Interface CfnModelPackagePropsMixin.DriftCheckModelDataQualityProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackagePropsMixin.DriftCheckModelDataQualityProperty.Jsii$Proxy
- Enclosing class:
CfnModelPackagePropsMixin
@Stability(Stable)
public static interface CfnModelPackagePropsMixin.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.cfnpropertymixins.services.sagemaker.*;
DriftCheckModelDataQualityProperty driftCheckModelDataQualityProperty = DriftCheckModelDataQualityProperty.builder()
.constraints(MetricsSourceProperty.builder()
.contentDigest("contentDigest")
.contentType("contentType")
.s3Uri("s3Uri")
.build())
.statistics(MetricsSourceProperty.builder()
.contentDigest("contentDigest")
.contentType("contentType")
.s3Uri("s3Uri")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnModelPackagePropsMixin.DriftCheckModelDataQualityProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConstraints
The drift check model data quality constraints.Returns union: either
IResolvableorCfnModelPackagePropsMixin.MetricsSourceProperty- See Also:
-
getStatistics
The drift check model data quality statistics.Returns union: either
IResolvableorCfnModelPackagePropsMixin.MetricsSourceProperty- See Also:
-
builder
@Stability(Stable) static CfnModelPackagePropsMixin.DriftCheckModelDataQualityProperty.Builder builder()
-