Interface CfnMonitoringSchedule.BaselineConfigProperty

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

@Stability(Stable) public static interface CfnMonitoringSchedule.BaselineConfigProperty extends software.amazon.jsii.JsiiSerializable
Baseline configuration used to validate that the data conforms to the specified constraints and statistics.

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.*;
 BaselineConfigProperty baselineConfigProperty = BaselineConfigProperty.builder()
         .constraintsResource(ConstraintsResourceProperty.builder()
                 .s3Uri("s3Uri")
                 .build())
         .statisticsResource(StatisticsResourceProperty.builder()
                 .s3Uri("s3Uri")
                 .build())
         .build();