Interface CfnModelExplainabilityJobDefinitionPropsMixin.ModelExplainabilityAppSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelExplainabilityJobDefinitionPropsMixin.ModelExplainabilityAppSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnModelExplainabilityJobDefinitionPropsMixin
@Stability(Stable)
public static interface CfnModelExplainabilityJobDefinitionPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
ModelExplainabilityAppSpecificationProperty modelExplainabilityAppSpecificationProperty = ModelExplainabilityAppSpecificationProperty.builder()
.configUri("configUri")
.environment(Map.of(
"environmentKey", "environment"))
.imageUri("imageUri")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final class -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnModelExplainabilityJobDefinitionPropsMixin.ModelExplainabilityAppSpecificationProperty.Builderbuilder()default StringJSON formatted Amazon S3 file that defines explainability parameters.default ObjectSets the environment variables in the Docker container.default StringThe container image to be run by the model explainability job.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:
-
getEnvironment
Sets the environment variables in the Docker container.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getImageUri
The container image to be run by the model explainability job.- See Also:
-
builder
@Stability(Stable) static CfnModelExplainabilityJobDefinitionPropsMixin.ModelExplainabilityAppSpecificationProperty.Builder builder()
-