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

PipeSourceManagedStreamingKafkaParameters

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

The parameters for using an MSK stream as a source.

interface PipeSourceManagedStreamingKafkaParameters {
BatchSize?: number | null;
ConsumerGroupID?: string | null;
Credentials?: MSKAccessCredentials | null;
MaximumBatchingWindowInSeconds?: number | null;
StartingPosition?: MSKStartPosition | null;
TopicName: string;
}

§Properties

§
BatchSize?: number | null
[src]

The maximum number of records to include in each batch.

§
ConsumerGroupID?: string | null
[src]

The name of the destination queue to consume.

§
Credentials?: MSKAccessCredentials | null
[src]

The credentials needed to access the resource.

§
MaximumBatchingWindowInSeconds?: number | null
[src]

The maximum length of a time to wait for events.

§
StartingPosition?: MSKStartPosition | null
[src]

(Streams only) The position in a stream from which to start reading.

§
TopicName: string
[src]

The name of the topic that the pipe will read from.