interface ModelQualityBaselineConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelQualityJobDefinition.ModelQualityBaselineConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelQualityJobDefinition_ModelQualityBaselineConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelQualityJobDefinition.ModelQualityBaselineConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnModelQualityJobDefinition.ModelQualityBaselineConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnModelQualityJobDefinition » ModelQualityBaselineConfigProperty |
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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const modelQualityBaselineConfigProperty: sagemaker.CfnModelQualityJobDefinition.ModelQualityBaselineConfigProperty = {
baseliningJobName: 'baseliningJobName',
constraintsResource: {
s3Uri: 's3Uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| baselining | string | The name of the job that performs baselining for the monitoring job. |
| constraints | IResolvable | Constraints | The constraints resource for a monitoring job. |
baseliningJobName?
Type:
string
(optional)
The name of the job that performs baselining for the monitoring job.
constraintsResource?
Type:
IResolvable | Constraints
(optional)
The constraints resource for a monitoring job.

.NET
Go
Java
Python
TypeScript