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

ProcessingS3Output

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

Configuration for uploading output data to Amazon S3 from the processing container.

interface ProcessingS3Output {
LocalPath: string;
S3UploadMode: ProcessingS3UploadMode;
S3Uri: string;
}

§Properties

§
LocalPath: string
[src]

The local path of a directory where you want Amazon SageMaker to upload its contents to Amazon S3. LocalPath is an absolute path to a directory containing output files. This directory will be created by the platform and exist when your container's entrypoint is invoked.

§

Whether to upload the results of the processing job continuously or after the job completes.

§
S3Uri: string
[src]

A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.