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

ProcessingOutput

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

Describes the results of a processing job. The processing output must specify exactly one of either S3Output or FeatureStoreOutput types.

interface ProcessingOutput {
AppManaged?: boolean | null;
FeatureStoreOutput?: ProcessingFeatureStoreOutput | null;
OutputName: string;
S3Output?: ProcessingS3Output | null;
}

§Properties

§
AppManaged?: boolean | null
[src]

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

§
FeatureStoreOutput?: ProcessingFeatureStoreOutput | null
[src]

Configuration for processing job outputs in Amazon SageMaker Feature Store. This processing output type is only supported when AppManaged is specified.

§
OutputName: string
[src]

The name for the processing job output.

§
S3Output?: ProcessingS3Output | null
[src]

Configuration for processing job outputs in Amazon S3.