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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigUri
JSON formatted Amazon S3 file that defines explainability parameters.For more information on this JSON configuration file, see Configure model explainability parameters .
- See Also:
-
getImageUri
The container image to be run by the model explainability job.- See Also:
-
getEnvironment
Sets the environment variables in the Docker container.- See Also:
-
builder
@Stability(Stable) static CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty.Builder builder()
-