aws-cdk-lib.aws_sagemaker.CfnModelPackage.DriftCheckBaselinesProperty

interface DriftCheckBaselinesProperty

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

Represents the drift check 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 driftCheckBaselinesProperty: sagemaker.CfnModelPackage.DriftCheckBaselinesProperty = {
  bias: {
    configFile: {
      s3Uri: 's3Uri',

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

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

      // the properties below are optional
      contentDigest: 'contentDigest',
    },
  },
  explainability: {
    configFile: {
      s3Uri: 's3Uri',

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

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

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

      // the properties below are optional
      contentDigest: 'contentDigest',
    },
  },
  modelQuality: {
    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
bias?IResolvable | DriftCheckBiasPropertyRepresents the drift check bias baselines that can be used when the model monitor is set using the model package.
explainability?IResolvable | DriftCheckExplainabilityPropertyRepresents the drift check explainability baselines that can be used when the model monitor is set using the model package.
modelDataQuality?IResolvable | DriftCheckModelDataQualityPropertyRepresents the drift check model data quality baselines that can be used when the model monitor is set using the model package.
modelQuality?IResolvable | DriftCheckModelQualityPropertyRepresents the drift check model quality baselines that can be used when the model monitor is set using the model package.

bias?

Type: IResolvable | DriftCheckBiasProperty (optional)

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


explainability?

Type: IResolvable | DriftCheckExplainabilityProperty (optional)

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


modelDataQuality?

Type: IResolvable | DriftCheckModelDataQualityProperty (optional)

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


modelQuality?

Type: IResolvable | DriftCheckModelQualityProperty (optional)

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