Interface CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty.Jsii$Proxy
- Enclosing class:
- CfnModelExplainabilityJobDefinition
@Stability(Stable)
public static interface CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
Docker container image configuration object for the 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.*;
ModelExplainabilityAppSpecificationProperty modelExplainabilityAppSpecificationProperty = ModelExplainabilityAppSpecificationProperty.builder()
.configUri("configUri")
.imageUri("imageUri")
// the properties below are optional
.environment(Map.of(
"environmentKey", "environment"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigUri
JSON formatted S3 file that defines explainability parameters.For more information on this JSON configuration file, see Configure model explainability parameters .
-
getImageUri
The container image to be run by the model explainability job. -
getEnvironment
Sets the environment variables in the Docker container. -
builder
@Stability(Stable) static CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty.Builder builder()
-