interface ExplainabilityProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Sagemaker.CfnModelPackage.ExplainabilityProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelPackage_ExplainabilityProperty | 
  Java | software.amazon.awscdk.services.sagemaker.CfnModelPackage.ExplainabilityProperty | 
  Python | aws_cdk.aws_sagemaker.CfnModelPackage.ExplainabilityProperty | 
  TypeScript  | aws-cdk-lib » aws_sagemaker » CfnModelPackage » ExplainabilityProperty | 
Contains explainability metrics for a model.
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 explainabilityProperty: sagemaker.CfnModelPackage.ExplainabilityProperty = {
  report: {
    contentType: 'contentType',
    s3Uri: 's3Uri',
    // the properties below are optional
    contentDigest: 'contentDigest',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| report? | IResolvable | Metrics | The explainability report for a model. | 
report?
Type:
IResolvable | Metrics
(optional)
The explainability report for a model.

 .NET
 Go
 Java
 Python
 TypeScript