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

GcsDestinationConfig

import type { GcsDestinationConfig } from "https://googleapis.deno.dev/v1/datastream:v1.ts";

Google Cloud Storage destination configuration

interface GcsDestinationConfig {
avroFileFormat?: AvroFileFormat;
fileRotationInterval?: number;
fileRotationMb?: number;
jsonFileFormat?: JsonFileFormat;
path?: string;
}

§Properties

§
avroFileFormat?: AvroFileFormat
[src]

AVRO file format configuration.

§
fileRotationInterval?: number
[src]

The maximum duration for which new events are added before a file is closed and a new file is created. Values within the range of 15-60 seconds are allowed.

§
fileRotationMb?: number
[src]

The maximum file size to be saved in the bucket.

§
jsonFileFormat?: JsonFileFormat
[src]

JSON file format configuration.

§
path?: string
[src]

Path inside the Cloud Storage bucket to write data to.