Interface CfnModelExplainabilityJobDefinition.ModelExplainabilityBaselineConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelExplainabilityJobDefinition.ModelExplainabilityBaselineConfigProperty.Jsii$Proxy
- Enclosing class:
CfnModelExplainabilityJobDefinition
@Stability(Stable)
public static interface CfnModelExplainabilityJobDefinition.ModelExplainabilityBaselineConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for a baseline model explainability job.
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.*;
ModelExplainabilityBaselineConfigProperty modelExplainabilityBaselineConfigProperty = ModelExplainabilityBaselineConfigProperty.builder()
.baseliningJobName("baseliningJobName")
.constraintsResource(ConstraintsResourceProperty.builder()
.s3Uri("s3Uri")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnModelExplainabilityJobDefinition.ModelExplainabilityBaselineConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBaseliningJobName
The name of the baseline model explainability job.- See Also:
-
getConstraintsResource
The constraints resource for a model explainability job.Returns union: either
IResolvableorCfnModelExplainabilityJobDefinition.ConstraintsResourceProperty- See Also:
-
builder
@Stability(Stable) static CfnModelExplainabilityJobDefinition.ModelExplainabilityBaselineConfigProperty.Builder builder()
-