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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPackage.ExplainabilityPropertystatic final classAn implementation forCfnModelPackage.ExplainabilityProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReport
The explainability report for a model. -
builder
-