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

StreamLocation

import type { StreamLocation } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

Describes a stream of data, either as input to be processed or as output of a streaming Dataflow job.

interface StreamLocation {
customSourceLocation?: CustomSourceLocation;
pubsubLocation?: PubsubLocation;
sideInputLocation?: StreamingSideInputLocation;
streamingStageLocation?: StreamingStageLocation;
}

§Properties

§
customSourceLocation?: CustomSourceLocation
[src]

The stream is a custom source.

§
pubsubLocation?: PubsubLocation
[src]

The stream is a pubsub stream.

§

The stream is a streaming side input.

§
streamingStageLocation?: StreamingStageLocation
[src]

The stream is part of another computation within the current streaming Dataflow job.