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

DataViewDestinationTypeParams

import type { DataViewDestinationTypeParams } from "https://aws-api.deno.dev/v0.3/services/finspacedata.ts?docs=full";

Structure for the Dataview destination type parameters.

interface DataViewDestinationTypeParams {
destinationType: string;
s3DestinationExportFileFormat?: ExportFileFormat | null;
s3DestinationExportFileFormatOptions?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
destinationType: string
[src]

Destination type for a Dataview.

  • GLUE_TABLE - Glue table destination type.
  • S3 - S3 destination type.
§
s3DestinationExportFileFormat?: ExportFileFormat | null
[src]

Data view export file format.

  • PARQUET - Parquet export file format.
  • DELIMITED_TEXT - Delimited text export file format.
§
s3DestinationExportFileFormatOptions?: {
[key: string]: string | null | undefined;
}
| null
[src]

Format Options for S3 Destination type.

Here is an example of how you could specify the s3DestinationExportFileFormatOptions

{ "header": "true", "delimiter": ",", "compression": "gzip" }