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

ProcessingInput

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

The inputs for a processing job. The processing input must specify exactly one of either S3Input or DatasetDefinition types.

interface ProcessingInput {
AppManaged?: boolean | null;
DatasetDefinition?: DatasetDefinition | null;
InputName: string;
S3Input?: ProcessingS3Input | null;
}

§Properties

§
AppManaged?: boolean | null
[src]

When True, input operations such as data download are managed natively by the processing job application. When False (default), input operations are managed by Amazon SageMaker.

§
DatasetDefinition?: DatasetDefinition | null
[src]

Configuration for a Dataset Definition input.

§
InputName: string
[src]

The name for the processing job input.

§
S3Input?: ProcessingS3Input | null
[src]

Configuration for downloading input data from Amazon S3 into the processing container.