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

CreateChannelRequest

import type { CreateChannelRequest } from "https://aws-api.deno.dev/v0.3/services/iotanalytics.ts?docs=full";
interface CreateChannelRequest {
channelName: string;
channelStorage?: ChannelStorage | null;
retentionPeriod?: RetentionPeriod | null;
tags?: Tag[] | null;
}

§Properties

§
channelName: string
[src]

The name of the channel.

§
channelStorage?: 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.

§
retentionPeriod?: RetentionPeriod | null
[src]

How long, in days, message data is kept for the channel. When customerManagedS3 storage is selected, this parameter is ignored.

§
tags?: Tag[] | null
[src]

Metadata which can be used to manage the channel.