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

MonitoringAppSpecification

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

Container image configuration object for the monitoring job.

interface MonitoringAppSpecification {
ContainerArguments?: string[] | null;
ContainerEntrypoint?: string[] | null;
ImageUri: string;
PostAnalyticsProcessorSourceUri?: string | null;
RecordPreprocessorSourceUri?: string | null;
}

§Properties

§
ContainerArguments?: string[] | null
[src]

An array of arguments for the container used to run the monitoring job.

§
ContainerEntrypoint?: string[] | null
[src]

Specifies the entrypoint for a container used to run the monitoring job.

§
ImageUri: string
[src]

The container image to be run by the monitoring job.

§
PostAnalyticsProcessorSourceUri?: string | null
[src]

An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.

§
RecordPreprocessorSourceUri?: string | null
[src]

An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.