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

StartPipelineReprocessingRequest

import type { StartPipelineReprocessingRequest } from "https://aws-api.deno.dev/v0.3/services/iotanalytics.ts?docs=full";
interface StartPipelineReprocessingRequest {
channelMessages?: ChannelMessages | null;
endTime?: Date | number | null;
pipelineName: string;
startTime?: Date | number | null;
}

§Properties

§
channelMessages?: ChannelMessages | null
[src]

Specifies one or more sets of channel messages that you want to reprocess.

If you use the channelMessages object, you must not specify a value for startTime and endTime.

§
endTime?: Date | number | null
[src]

The end time (exclusive) of raw message data that is reprocessed.

If you specify a value for the endTime parameter, you must not use the channelMessages object.

§
pipelineName: string
[src]

The name of the pipeline on which to start reprocessing.

§
startTime?: Date | number | null
[src]

The start time (inclusive) of raw message data that is reprocessed.

If you specify a value for the startTime parameter, you must not use the channelMessages object.