Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ModelExplainabilityAppSpecification

import type { ModelExplainabilityAppSpecification } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

Docker container image configuration object for the model explainability job.

interface ModelExplainabilityAppSpecification {
ConfigUri: string;
Environment?: {
[key: string]: string | null | undefined;
}
| null;
ImageUri: string;
}

§Properties

§
ConfigUri: string
[src]

JSON formatted S3 file that defines explainability parameters. For more information on this JSON configuration file, see Configure model explainability parameters.

§
Environment?: {
[key: string]: string | null | undefined;
}
| null
[src]

Sets the environment variables in the Docker container.

§
ImageUri: string
[src]

The container image to be run by the model explainability job.