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

ChannelStorage

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

Where channel data is stored. You may choose one of serviceManagedS3, customerManagedS3 storage. If not specified, the default is serviceManagedS3. This can't be changed after creation of the channel.

interface ChannelStorage {
customerManagedS3?: CustomerManagedChannelS3Storage | null;
serviceManagedS3?: ServiceManagedChannelS3Storage | null;
}

§Properties

§
customerManagedS3?: CustomerManagedChannelS3Storage | null
[src]

Used to store channel data in an S3 bucket that you manage. If customer managed storage is selected, the retentionPeriod parameter is ignored. You can't change the choice of S3 storage after the data store is created.

§
serviceManagedS3?: ServiceManagedChannelS3Storage | null
[src]

Used to store channel data in an S3 bucket managed by IoT Analytics. You can't change the choice of S3 storage after the data store is created.