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

SampleChannelDataRequest

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

§Properties

§
channelName: string
[src]

The name of the channel whose message samples are retrieved.

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

The end of the time window from which sample messages are retrieved.

§
maxMessages?: number | null
[src]

The number of sample messages to be retrieved. The limit is 10. The default is also 10.

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

The start of the time window from which sample messages are retrieved.