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

DataQualityAppSpecification

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

Information about the container that a data quality monitoring job runs.

interface DataQualityAppSpecification {
ContainerArguments?: string[] | null;
ContainerEntrypoint?: string[] | null;
Environment?: {
[key: string]: string | null | undefined;
}
| null;
ImageUri: string;
PostAnalyticsProcessorSourceUri?: string | null;
RecordPreprocessorSourceUri?: string | null;
}

§Properties

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

The arguments to send to the container that the monitoring job runs.

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

The entrypoint for a container used to run a monitoring job.

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

Sets the environment variables in the container that the monitoring job runs.

§
ImageUri: string
[src]

The container image that the data quality monitoring job runs.

§
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.