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

Channel

import type { Channel } from "https://aws-api.deno.dev/v0.3/services/iotanalytics.ts?docs=full";

A collection of data from an MQTT topic. Channels archive the raw, unprocessed messages before publishing the data to a pipeline.

interface Channel {
arn?: string | null;
creationTime?: Date | number | null;
lastMessageArrivalTime?: Date | number | null;
lastUpdateTime?: Date | number | null;
name?: string | null;
retentionPeriod?: RetentionPeriod | null;
status?: ChannelStatus | null;
storage?: ChannelStorage | null;
}

§Properties

§
arn?: string | null
[src]

The ARN of the channel.

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

When the channel was created.

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

The last time when a new message arrived in the channel.

IoT Analytics updates this value at most once per minute for one channel. Hence, the lastMessageArrivalTime value is an approximation.

This feature only applies to messages that arrived in the data store after October 23, 2020.

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

When the channel was last updated.

§
name?: string | null
[src]

The name of the channel.

§
retentionPeriod?: RetentionPeriod | null
[src]

How long, in days, message data is kept for the channel.

§
status?: ChannelStatus | null
[src]

The status of the channel.

§
storage?: ChannelStorage | null
[src]

Where channel data is stored. You can choose one of serviceManagedS3 or customerManagedS3 storage. If not specified, the default is serviceManagedS3. You can't change this storage option after the channel is created.