interface ModelQualityBaselineConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelQualityJobDefinitionPropsMixin.ModelQualityBaselineConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelQualityJobDefinitionPropsMixin_ModelQualityBaselineConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelQualityJobDefinitionPropsMixin.ModelQualityBaselineConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelQualityJobDefinitionPropsMixin.ModelQualityBaselineConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelQualityJobDefinitionPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const modelQualityBaselineConfigProperty: sagemaker_mixins.CfnModelQualityJobDefinitionPropsMixin.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