interface BaselineConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnMonitoringSchedulePropsMixin.BaselineConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnMonitoringSchedulePropsMixin_BaselineConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnMonitoringSchedulePropsMixin.BaselineConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnMonitoringSchedulePropsMixin.BaselineConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnMonitoringSchedulePropsMixin » BaselineConfigProperty |
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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const baselineConfigProperty: sagemaker_mixins.CfnMonitoringSchedulePropsMixin.BaselineConfigProperty = {
constraintsResource: {
s3Uri: 's3Uri',
},
statisticsResource: {
s3Uri: 's3Uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| constraints | IResolvable | Constraints | The Amazon S3 URI for the constraints resource. |
| statistics | IResolvable | Statistics | The baseline statistics file in Amazon S3 that the current monitoring job should be validated against. |
constraintsResource?
Type:
IResolvable | Constraints
(optional)
The Amazon S3 URI for the constraints resource.
statisticsResource?
Type:
IResolvable | Statistics
(optional)
The baseline statistics file in Amazon S3 that the current monitoring job should be validated against.

.NET
Go
Java
Python
TypeScript