Interface CfnModelPackage.ExplainabilityProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelPackage.ExplainabilityProperty.Jsii$Proxy
Enclosing class:
CfnModelPackage

@Stability(Stable) public static interface CfnModelPackage.ExplainabilityProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 ExplainabilityProperty explainabilityProperty = ExplainabilityProperty.builder()
         .report(MetricsSourceProperty.builder()
                 .contentType("contentType")
                 .s3Uri("s3Uri")
                 // the properties below are optional
                 .contentDigest("contentDigest")
                 .build())
         .build();
 

See Also: