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

SideInputInfo

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

Information about a side input of a DoFn or an input of a SeqDoFn.

interface SideInputInfo {
kind?: {
[key: string]: any;
}
;
sources?: Source[];
tag?: string;
}

§Properties

§
kind?: {
[key: string]: any;
}
[src]

How to interpret the source element(s) as a side input value.

§
sources?: Source[]
[src]

The source(s) to read element(s) from to get the value of this side input. If more than one source, then the elements are taken from the sources, in the specified order if order matters. At least one source is required.

§
tag?: string
[src]

The id of the tag the user code will access this side input by; this should correspond to the tag of some MultiOutputInfo.