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

S3OutputFormatConfig

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

The configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination.

interface S3OutputFormatConfig {
aggregationConfig?: AggregationConfig | null;
fileType?: FileType | null;
prefixConfig?: PrefixConfig | null;
preserveSourceDataTyping?: boolean | null;
}

§Properties

§
aggregationConfig?: AggregationConfig | null
[src]
§
fileType?: FileType | null
[src]

Indicates the file type that Amazon AppFlow places in the Amazon S3 bucket.

§
prefixConfig?: PrefixConfig | null
[src]

Determines the prefix that Amazon AppFlow applies to the folder name in the Amazon S3 bucket. You can name folders according to the flow frequency and date.

§
preserveSourceDataTyping?: boolean | null
[src]

If your file output format is Parquet, use this parameter to set whether Amazon AppFlow preserves the data types in your source data when it writes the output to Amazon S3.

  • true: Amazon AppFlow preserves the data types when it writes to Amazon S3. For example, an integer or 1 in your source data is still an integer in your output.
  • false: Amazon AppFlow converts all of the source data into strings when it writes to Amazon S3. For example, an integer of 1 in your source data becomes the string "1" in the output.