interface DriftCheckExplainabilityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPackagePropsMixin.DriftCheckExplainabilityProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPackagePropsMixin_DriftCheckExplainabilityProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPackagePropsMixin.DriftCheckExplainabilityProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPackagePropsMixin.DriftCheckExplainabilityProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPackagePropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const driftCheckExplainabilityProperty: sagemaker_mixins.CfnModelPackagePropsMixin.DriftCheckExplainabilityProperty = {
configFile: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
constraints: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
};
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.

.NET
Go
Java
Python
TypeScript