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

Dataset

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

Information about a dataset.

interface Dataset {
actions?: DatasetAction[] | null;
arn?: string | null;
contentDeliveryRules?: DatasetContentDeliveryRule[] | null;
creationTime?: Date | number | null;
lastUpdateTime?: Date | number | null;
lateDataRules?: LateDataRule[] | null;
name?: string | null;
retentionPeriod?: RetentionPeriod | null;
status?: DatasetStatus | null;
triggers?: DatasetTrigger[] | null;
versioningConfiguration?: VersioningConfiguration | null;
}

§Properties

§
actions?: DatasetAction[] | null
[src]

The DatasetAction objects that automatically create the dataset contents.

§
arn?: string | null
[src]

The ARN of the dataset.

§
contentDeliveryRules?: DatasetContentDeliveryRule[] | null
[src]

When dataset contents are created they are delivered to destinations specified here.

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

When the dataset was created.

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

The last time the dataset was updated.

§
lateDataRules?: LateDataRule[] | null
[src]

A list of data rules that send notifications to CloudWatch, when data arrives late. To specify lateDataRules, the dataset must use a DeltaTimer filter.

§
name?: string | null
[src]

The name of the dataset.

§
retentionPeriod?: RetentionPeriod | null
[src]

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

§
status?: DatasetStatus | null
[src]

The status of the dataset.

§
triggers?: DatasetTrigger[] | null
[src]

The DatasetTrigger objects that specify when the dataset is automatically updated.

§
versioningConfiguration?: VersioningConfiguration | null
[src]

Optional. How many versions of dataset contents are kept. If not specified or set to null, only the latest version plus the latest succeeded version (if they are different) are kept for the time period specified by the retentionPeriod parameter. For more information, see Keeping Multiple Versions of IoT Analytics datasets in the IoT Analytics User Guide.