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

DatastoreStorage

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

Where data in a data store is stored.. You can choose serviceManagedS3 storage, customerManagedS3 storage, or iotSiteWiseMultiLayerStorage storage. The default is serviceManagedS3. You can't change the choice of Amazon S3 storage after your data store is created.

interface DatastoreStorage {
customerManagedS3?: CustomerManagedDatastoreS3Storage | null;
iotSiteWiseMultiLayerStorage?: DatastoreIotSiteWiseMultiLayerStorage | null;
serviceManagedS3?: ServiceManagedDatastoreS3Storage | null;
}

§Properties

§
customerManagedS3?: CustomerManagedDatastoreS3Storage | null
[src]

S3-customer-managed; When you choose customer-managed storage, the retentionPeriod parameter is ignored. You can't change the choice of Amazon S3 storage after your data store is created.

§
iotSiteWiseMultiLayerStorage?: DatastoreIotSiteWiseMultiLayerStorage | null
[src]

Used to store data used by IoT SiteWise in an Amazon S3 bucket that you manage. You can't change the choice of Amazon S3 storage after your data store is created.

§
serviceManagedS3?: ServiceManagedDatastoreS3Storage | null
[src]

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