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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMonitoringSchedule.BaselineConfigProperty
static final class
An implementation forCfnMonitoringSchedule.BaselineConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConstraintsResource
The Amazon S3 URI for the constraints resource. -
getStatisticsResource
The baseline statistics file in Amazon S3 that the current monitoring job should be validated against. -
builder
-