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

UpdateDatasetRequest

import type { UpdateDatasetRequest } from "https://aws-api.deno.dev/v0.3/services/iotanalytics.ts?docs=full";
interface UpdateDatasetRequest {
actions: DatasetAction[];
contentDeliveryRules?: DatasetContentDeliveryRule[] | null;
datasetName: string;
lateDataRules?: LateDataRule[] | null;
retentionPeriod?: RetentionPeriod | null;
triggers?: DatasetTrigger[] | null;
versioningConfiguration?: VersioningConfiguration | null;
}

§Properties

§

A list of DatasetAction objects.

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

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

§
datasetName: string
[src]

The name of the dataset to update.

§
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.

§
retentionPeriod?: RetentionPeriod | null
[src]

How long, in days, dataset contents are kept for the dataset.

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

A list of DatasetTrigger objects. The list can be empty or can contain up to five DatasetTrigger objects.

§
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.