Interface CfnModelPackage.DriftCheckExplainabilityProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackage.DriftCheckExplainabilityProperty.Jsii$Proxy
- Enclosing class:
CfnModelPackage
@Stability(Stable)
public static interface CfnModelPackage.DriftCheckExplainabilityProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
DriftCheckExplainabilityProperty driftCheckExplainabilityProperty = DriftCheckExplainabilityProperty.builder()
.configFile(FileSourceProperty.builder()
.s3Uri("s3Uri")
// the properties below are optional
.contentDigest("contentDigest")
.contentType("contentType")
.build())
.constraints(MetricsSourceProperty.builder()
.contentType("contentType")
.s3Uri("s3Uri")
// the properties below are optional
.contentDigest("contentDigest")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPackage.DriftCheckExplainabilityPropertystatic final classAn implementation forCfnModelPackage.DriftCheckExplainabilityProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigFile
The explainability config file for the model.Returns union: either
IResolvableorCfnModelPackage.FileSourceProperty- See Also:
-
getConstraints
The drift check explainability constraints.Returns union: either
IResolvableorCfnModelPackage.MetricsSourceProperty- See Also:
-
builder
-