interface DriftCheckExplainabilityProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Sagemaker.CfnModelPackage.DriftCheckExplainabilityProperty | 
|  Java | software.amazon.awscdk.services.sagemaker.CfnModelPackage.DriftCheckExplainabilityProperty | 
|  Python | aws_cdk.aws_sagemaker.CfnModelPackage.DriftCheckExplainabilityProperty | 
|  TypeScript | @aws-cdk/aws-sagemaker»CfnModelPackage»DriftCheckExplainabilityProperty | 
Represents the drift check explainability 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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const driftCheckExplainabilityProperty: sagemaker.CfnModelPackage.DriftCheckExplainabilityProperty = {
  configFile: {
    s3Uri: 's3Uri',
    // the properties below are optional
    contentDigest: 'contentDigest',
    contentType: 'contentType',
  },
  constraints: {
    contentType: 'contentType',
    s3Uri: 's3Uri',
    // the properties below are optional
    contentDigest: 'contentDigest',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| config | IResolvable | File | The explainability config file for the model. | 
| constraints? | IResolvable | Metrics | The drift check explainability constraints. | 
configFile?
Type:
IResolvable | File
(optional)
The explainability config file for the model.
constraints?
Type:
IResolvable | Metrics
(optional)
The drift check explainability constraints.
