Interface CfnModelQualityJobDefinition.ModelQualityBaselineConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelQualityJobDefinition.ModelQualityBaselineConfigProperty.Jsii$Proxy
Enclosing class:
CfnModelQualityJobDefinition

@Stability(Stable) public static interface CfnModelQualityJobDefinition.ModelQualityBaselineConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration for monitoring constraints and monitoring statistics.

These baseline resources are compared against the results of the current job from the series of jobs scheduled to collect data periodically.

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.*;
 ModelQualityBaselineConfigProperty modelQualityBaselineConfigProperty = ModelQualityBaselineConfigProperty.builder()
         .baseliningJobName("baseliningJobName")
         .constraintsResource(ConstraintsResourceProperty.builder()
                 .s3Uri("s3Uri")
                 .build())
         .build();
 

See Also: