Interface CfnModelPackage.DriftCheckModelQualityProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnModelPackage.DriftCheckModelQualityProperty.Jsii$Proxy
- Enclosing class:
- CfnModelPackage
@Stability(Stable)
public static interface CfnModelPackage.DriftCheckModelQualityProperty
extends software.amazon.jsii.JsiiSerializable
Represents the drift check model 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.*;
 DriftCheckModelQualityProperty driftCheckModelQualityProperty = 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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPackage.DriftCheckModelQualityPropertystatic final classAn implementation forCfnModelPackage.DriftCheckModelQualityProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getConstraintsThe drift check model quality constraints.
- 
getStatisticsThe drift check model quality statistics.
- 
builder
 
-