aws-cdk-lib.aws_sagemaker.CfnModelPackage.DriftCheckModelQualityProperty

interface DriftCheckModelQualityProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModelPackage.DriftCheckModelQualityProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelPackage_DriftCheckModelQualityProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnModelPackage.DriftCheckModelQualityProperty
Pythonaws_cdk.aws_sagemaker.CfnModelPackage.DriftCheckModelQualityProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnModelPackage » DriftCheckModelQualityProperty

Represents the drift check model quality baselines that can be used when the model monitor is set using the model package.

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 driftCheckModelQualityProperty: sagemaker.CfnModelPackage.DriftCheckModelQualityProperty = {
  constraints: {
    contentType: 'contentType',
    s3Uri: 's3Uri',

    // the properties below are optional
    contentDigest: 'contentDigest',
  },
  statistics: {
    contentType: 'contentType',
    s3Uri: 's3Uri',

    // the properties below are optional
    contentDigest: 'contentDigest',
  },
};

Properties

NameTypeDescription
constraints?IResolvable | MetricsSourcePropertyThe drift check model quality constraints.
statistics?IResolvable | MetricsSourcePropertyThe drift check model quality statistics.

constraints?

Type: IResolvable | MetricsSourceProperty (optional)

The drift check model quality constraints.


statistics?

Type: IResolvable | MetricsSourceProperty (optional)

The drift check model quality statistics.