@Stability(value=Stable)
public static interface CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
ModelExplainabilityAppSpecificationProperty modelExplainabilityAppSpecificationProperty = ModelExplainabilityAppSpecificationProperty.builder()
.configUri("configUri")
.imageUri("imageUri")
// the properties below are optional
.environment(Map.of(
"environmentKey", "environment"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty.Builder
|
static class |
CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty.Jsii$Proxy
An implementation for
CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty.Builder |
builder() |
String |
getConfigUri()
JSON formatted S3 file that defines explainability parameters.
|
default Object |
getEnvironment()
Sets the environment variables in the Docker container.
|
String |
getImageUri()
The container image to be run by the model explainability job.
|
@Stability(value=Stable) @NotNull String getConfigUri()
For more information on this JSON configuration file, see Configure model explainability parameters .
@Stability(value=Stable) @NotNull String getImageUri()
@Stability(value=Stable) @Nullable default Object getEnvironment()
@Stability(value=Stable) static CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty.Builder builder()
Copyright © 2022. All rights reserved.