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

Output

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

Represents options that specify how and where in Amazon S3 DataBrew writes the output generated by recipe jobs or profile jobs.

interface Output {
CompressionFormat?: CompressionFormat | null;
Format?: OutputFormat | null;
FormatOptions?: OutputFormatOptions | null;
Location: S3Location;
MaxOutputFiles?: number | null;
Overwrite?: boolean | null;
PartitionColumns?: string[] | null;
}

§Properties

§
CompressionFormat?: CompressionFormat | null
[src]

The compression algorithm used to compress the output text of the job.

§
Format?: OutputFormat | null
[src]

The data format of the output of the job.

§
FormatOptions?: OutputFormatOptions | null
[src]

Represents options that define how DataBrew formats job output files.

§
Location: S3Location
[src]

The location in Amazon S3 where the job writes its output.

§
MaxOutputFiles?: number | null
[src]

Maximum number of files to be generated by the job and written to the output folder. For output partitioned by column(s), the MaxOutputFiles value is the maximum number of files per partition.

§
Overwrite?: boolean | null
[src]

A value that, if true, means that any data in the location specified for output is overwritten with new output.

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

The names of one or more partition columns for the output of the job.